:root {
  --ink: #13211c;
  --muted: #5c6b65;
  --paper: #fbfcf7;
  --line: #dfe7dc;
  --mint: #dff6d6;
  --green: #4fb23f;
  --forest: #163d32;
  --blue: #255a7a;
  --gold: #f1b84b;
  --rose: #cf6f71;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(22, 61, 50, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--forest);
  color: var(--white);
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 252, 247, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #082116;
  border: 2px solid #0f2c22;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #0f2c22;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 750;
  text-decoration: none;
  border-radius: 6px;
}

.nav-links a:hover {
  background: var(--mint);
  color: var(--forest);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 9px 12px;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(223, 246, 214, .96), rgba(255, 255, 255, .7) 45%, rgba(255, 235, 186, .58)),
    radial-gradient(circle at 82% 12%, rgba(37, 90, 122, .22), transparent 32%);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 52px;
  align-items: center;
  padding: 68px 0 48px;
}

.eyebrow,
.label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.1vw, 3rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 700px;
  margin-top: 22px;
  color: #2f423b;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 2px solid #10281f;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--green);
  color: #081b13;
  box-shadow: 5px 5px 0 #10281f;
}

.button.secondary {
  background: var(--white);
  color: var(--forest);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 34px 0 0;
}

.trust-strip div {
  padding: 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

dt {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 850;
  text-transform: uppercase;
}

dd {
  margin: 2px 0 0;
  font-weight: 950;
}

.hero-visual {
  min-height: 440px;
  display: grid;
  place-items: center;
}

.payment-scene {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1 / .9;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(22, 61, 50, .95), rgba(23, 97, 71, .9)),
    url("../assets/hero-texture.png");
  background-size: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .25);
}

.pin-card,
.metric-card,
.casino-chip {
  position: absolute;
  border-radius: 8px;
  border: 2px solid #0d251c;
}

.pin-card {
  left: 8%;
  top: 12%;
  width: 74%;
  padding: 24px;
  background: #7bd96a;
  box-shadow: 9px 9px 0 #0d251c;
}

.pin-card span,
.metric-card span {
  display: block;
  color: #254038;
  font-size: .86rem;
  font-weight: 850;
}

.pin-card strong {
  display: block;
  margin-top: 26px;
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
}

.casino-chip {
  right: 10%;
  bottom: 18%;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #34220a;
  font-size: 3rem;
  font-weight: 950;
  box-shadow: 7px 7px 0 #0d251c;
}

.metric-card {
  left: 9%;
  bottom: 15%;
  width: 150px;
  padding: 16px;
  background: var(--white);
}

.metric-card.alt {
  right: 17%;
  top: 50%;
  left: auto;
  bottom: auto;
  background: #e8f0ff;
}

.notice-band,
.section,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.notice-band {
  margin-top: 22px;
  padding: 14px 18px;
  background: #fff3d7;
  border: 1px solid #efd18d;
  border-radius: 8px;
  color: #4e3815;
}

.section {
  padding: 76px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 38px;
  align-items: start;
}

.intro-grid p,
.article p,
.score-section p,
.responsible p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.03rem;
}

.author-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--forest);
  color: var(--mint);
  border-radius: 8px;
  font-weight: 950;
}

.author-card ul,
.pros-cons ul {
  padding-left: 20px;
  margin: 18px 0 0;
  color: var(--muted);
}

.section-heading,
.score-section,
.responsible {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--forest);
  padding: 9px 12px;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.filter.active {
  background: var(--forest);
  color: var(--white);
}

.casino-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.casino-card {
  display: grid;
  grid-template-columns: 44px 76px minmax(230px, 1fr) minmax(260px, .8fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(22, 61, 50, .08);
}

.casino-card.hidden {
  display: none;
}

.rank {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #edf4e8;
  border-radius: 8px;
  font-weight: 950;
}

.casino-logo {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 8px;
  font-weight: 950;
  font-size: 1.25rem;
}

.emerald { background: #168557; }
.violet { background: #7652b8; }
.blue { background: #236a93; }
.amber { background: #b66f12; }

.casino-main p {
  margin-top: 8px;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tags span {
  padding: 4px 8px;
  background: #eef5ed;
  border-radius: 999px;
  color: var(--forest);
  font-size: .78rem;
  font-weight: 850;
}

.casino-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.casino-stats div {
  min-height: 68px;
  padding: 10px;
  background: #f7faf5;
  border-radius: 8px;
}

.casino-cta {
  white-space: nowrap;
}

.content-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.toc a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.toc a:hover {
  color: var(--forest);
}

.article {
  display: grid;
  gap: 48px;
}

.article section {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  counter-reset: step;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 50px;
  padding: 13px 14px 13px 58px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 11px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--green);
  border-radius: 6px;
  font-weight: 950;
}

.callout {
  margin-top: 20px;
  padding: 18px;
  background: #e8f4f8;
  border-left: 5px solid var(--blue);
  border-radius: 8px;
}

.pros-cons,
.check-grid,
.score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.pros-cons > div,
.check-grid > div,
.score-grid article {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-grid strong,
.check-grid span {
  display: block;
}

.check-grid span {
  margin-top: 6px;
  color: var(--muted);
}

.score-section {
  align-items: stretch;
}

.score-section > div:first-child {
  max-width: 420px;
}

.score-grid {
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.score-grid article span {
  color: var(--green);
  font-size: 2rem;
  font-weight: 950;
}

.responsible {
  padding: 30px;
  background: #13211c;
  color: var(--white);
  border-radius: 8px;
}

.responsible .eyebrow,
.responsible p {
  color: #cfe6d1;
}

.help-links {
  display: grid;
  min-width: 250px;
  gap: 10px;
}

.help-links a {
  padding: 12px 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 950;
}

details p {
  padding: 0 18px 18px;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr;
  gap: 32px;
  padding: 36px 0 46px;
  border-top: 1px solid var(--line);
}

.footer h2 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer p,
.footer a {
  display: block;
  color: var(--muted);
  text-decoration: none;
}

.footer p {
  margin-top: 14px;
}

@media (max-width: 960px) {
  .hero-inner,
  .intro-grid,
  .content-layout,
  .score-section,
  .responsible,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-visual {
    min-height: 340px;
  }

  .section-heading,
  .score-section,
  .responsible {
    display: grid;
  }

  .filters {
    justify-content: flex-start;
  }

  .casino-card {
    grid-template-columns: 42px 70px minmax(0, 1fr);
  }

  .casino-stats,
  .casino-cta {
    grid-column: 1 / -1;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 680px) {
  .nav {
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  h1 {
    font-size: 3.15rem;
  }

  .hero-inner,
  .section {
    padding: 46px 0;
  }

  .trust-strip,
  .pros-cons,
  .check-grid,
  .score-grid,
  .casino-stats {
    grid-template-columns: 1fr;
  }

  .casino-card {
    grid-template-columns: 42px 64px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .casino-logo {
    width: 64px;
    height: 64px;
  }

  .casino-main {
    grid-column: 1 / -1;
  }

  .payment-scene {
    aspect-ratio: 1 / 1.05;
  }

  .pin-card {
    width: 82%;
  }

  .casino-chip {
    width: 88px;
    height: 88px;
    font-size: 2.25rem;
  }

  .metric-card.alt {
    right: 8%;
  }
}
