@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Source+Sans+3:ital,wght@0,400;0,600;0,700;1,400&display=swap");

:root {
  --color-pitch: #073e2e;
  --color-field: #1f7f5c;
  --color-win: #ffce06;
  --color-paper: #eef4ef;
  --color-white: #ffffff;
  --color-ink: #10231b;
  --line-soft: rgb(16 35 27 / 14%);
  --shadow-card: 0 14px 36px rgb(7 62 46 / 12%);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-utility: "Source Sans 3", "Segoe UI", sans-serif;
  --step--1: .75rem;
  --step-0: .9rem;
  --step-1: 1.05rem;
  --step-2: clamp(1.15rem, 1.5vw, 1.3rem);
  --step-3: clamp(1.45rem, 2.2vw, 1.9rem);
  --step-4: clamp(1.9rem, 3.6vw, 3rem);
  --step-5: clamp(2.6rem, 6.4vw, 5rem);
  --space-1: .5rem;
  --space-2: .75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --section-block: clamp(3.5rem, 7vw, 6rem);
  --section-compact: clamp(2.2rem, 4.5vw, 3.5rem);
  --grid-gap: clamp(1rem, 2.2vw, 1.75rem);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --header-height: 64px;
  --maxw: 1240px;
  --pad: clamp(16px, 4vw, 32px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: var(--step-1);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

body.menu-open { overflow: hidden; }

img,
svg { display: block; max-width: 100%; }

img { height: auto; }

a { color: inherit; text-underline-offset: .18em; }

button,
input,
textarea { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--color-win);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .5rem;
  left: .5rem;
  padding: .65rem .9rem;
  color: var(--color-ink);
  background: var(--color-win);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(100%, var(--maxw));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: var(--section-block); }
.section--compact { padding-block: var(--section-compact); }
.section--white { background: var(--color-white); }
.section--paper { background: var(--color-paper); }
.section--dark { color: var(--color-white); background: var(--color-pitch); }

.reading {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.reading > *:first-child,
.section-heading > *:first-child { margin-top: 0; }

.reading > *:last-child,
.section-heading > *:last-child { margin-bottom: 0; }

.section-heading {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  max-width: none;
  width: 100%;
}

.section-heading .lead {
  max-width: none;
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-3);
  max-width: none;
}

h1,
h2,
h3 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 { font-size: var(--step-5); line-height: .95; }
h2 { font-size: var(--step-4); line-height: 1.02; }
h3 { font-size: var(--step-3); line-height: 1.12; text-transform: none; letter-spacing: 0; }

p,
ul,
ol { margin: 0 0 var(--space-4); }

.lead {
  max-width: min(100%, 62rem);
  font-size: var(--step-2);
  line-height: 1.5;
}

.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-3);
  color: var(--color-win);
  font-family: var(--font-utility);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section--white .eyebrow,
.section--paper .eyebrow,
.reading .eyebrow { color: var(--color-field); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  color: var(--color-white);
  background: rgb(7 62 46 / 96%);
  border-bottom: 1px solid rgb(255 255 255 / 13%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: var(--header-height);
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img { width: 164px; height: auto; }

.nav-toggle {
  position: relative;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  color: var(--color-ink);
  background: var(--color-win);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgb(0 0 0 / 22%);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgb(0 0 0 / 28%);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.nav-toggle__box {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}

.nav-toggle__box span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2.5px;
  background: currentColor;
  border-radius: 99px;
  transition: transform .28s ease, opacity .2s ease, top .28s ease;
}

.nav-toggle__box span:nth-child(1) { top: 0; }
.nav-toggle__box span:nth-child(2) { top: 6px; width: 70%; }
.nav-toggle__box span:nth-child(3) { top: 12px; }

.nav-toggle[aria-expanded="true"] {
  background: var(--color-white);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(2) {
  opacity: 0;
  transform: scaleX(.4);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  background: rgb(4 28 20 / 62%);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .28s ease;
}

.nav-backdrop.is-visible {
  display: block;
  opacity: 1;
}

.main-nav {
  position: fixed;
  z-index: 115;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 22rem);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-height) + .75rem) var(--pad) 1.5rem;
  color: var(--color-white);
  background:
    linear-gradient(180deg, #0a513c 0%, var(--color-pitch) 42%, #04261c 100%);
  border-left: 1px solid rgb(255 255 255 / 12%);
  box-shadow: -18px 0 40px rgb(0 0 0 / 28%);
  transform: translateX(104%);
  visibility: hidden;
  transition: transform .32s cubic-bezier(.2, .8, .2, 1), visibility .32s;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.main-nav[data-open="true"] {
  transform: translateX(0);
  visibility: visible;
}

.nav-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.nav-panel__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-panel__locale {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: .25rem .7rem;
  color: var(--color-ink);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: .08em;
  background: var(--color-win);
  border-radius: 999px;
}

.nav-list {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a,
.nav-meta {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: .85rem 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: rgb(255 255 255 / 10%);
  border-color: rgb(255 255 255 / 14%);
}

.nav-list a[aria-current="page"],
.nav-list a[data-current="true"] {
  color: var(--color-ink);
  background: var(--color-win);
  border-color: transparent;
}

.nav-list .nav-play {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.nav-list .nav-play a {
  justify-content: center;
  min-height: 54px;
  color: var(--color-ink);
  background: var(--color-win);
  box-shadow: 0 10px 24px rgb(0 0 0 / 22%);
}

.nav-meta {
  color: rgb(255 255 255 / 78%);
  font-size: var(--step--1);
  letter-spacing: .06em;
  white-space: nowrap;
  min-height: auto;
  padding: 0;
  border: 0;
}

.hero {
  position: relative;
  color: var(--color-white);
  background: var(--color-pitch);
  overflow: hidden;
  isolation: isolate;
}

.hero--bleed {
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
}

.hero-bg {
  position: absolute;
  z-index: 0;
  top: -28px;
  right: -28px;
  bottom: -28px;
  left: -28px;
  width: calc(100% + 56px);
  height: calc(100% + 56px);
  max-width: none;
  object-fit: cover;
  object-position: center right;
  filter: blur(6px) brightness(.72) saturate(.85);
}

.hero--bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgb(4 36 27 / 96%) 0%, rgb(7 62 46 / 90%) 36%, rgb(7 62 46 / 72%) 68%, rgb(7 62 46 / 58%) 100%),
    linear-gradient(0deg, rgb(4 28 20 / 72%) 0%, rgb(7 62 46 / 35%) 42%, transparent 70%),
    rgb(7 62 46 / 28%);
  pointer-events: none;
}

.hero--bleed::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 18px;
  background: linear-gradient(180deg, transparent, var(--color-pitch));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-4);
  align-items: start;
  justify-items: stretch;
  padding-block: clamp(3.5rem, 9vw, 7.5rem);
}

.hero--bleed .hero-inner {
  /* keep .container width/padding */
}

.hero-brand {
  width: min(100%, 220px);
  height: auto;
  margin-bottom: var(--space-1);
  filter: drop-shadow(0 8px 18px rgb(0 0 0 / 35%));
}

.winner-lane {
  width: 76px;
  height: 7px;
  margin-bottom: var(--space-4);
  background: var(--color-win);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.hero h1 {
  max-width: none;
  width: 100%;
  text-transform: none;
  letter-spacing: -.01em;
}

.hero .lead {
  max-width: min(100%, 52rem);
  color: rgb(255 255 255 / 86%);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.25rem;
  color: var(--color-ink);
  background: var(--color-win);
  border: 2px solid var(--color-win);
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

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

.button--quiet {
  color: var(--color-white);
  background: transparent;
  border-color: rgb(255 255 255 / 42%);
}

.button--dark {
  color: var(--color-white);
  background: var(--color-pitch);
  border-color: var(--color-pitch);
}

.hero-media,
.page-hero-media {
  position: relative;
  margin: 0;
  min-width: 0;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  aspect-ratio: 1024 / 248;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgb(255 255 255 / 16%);
  box-shadow: var(--shadow-card);
}

.hero-media figcaption,
.page-hero-media figcaption {
  padding: .7rem .1rem 0;
  color: rgb(255 255 255 / 68%);
  font-size: var(--step--1);
}

.quick-rail {
  background: var(--color-white);
  border-bottom: 1px solid var(--line-soft);
}

.chip-list {
  display: flex;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
}

.chip-list a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  font-size: var(--step-0);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.chip-list a:hover,
.chip-list a[data-current="true"] {
  color: var(--color-field);
  border-bottom-color: var(--color-win);
}

.rail-controls { display: flex; gap: var(--space-1); }

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.game-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 78vw);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: var(--space-3);
  padding: .25rem 2px var(--space-4);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.game-card { scroll-snap-align: start; }

.game-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background: var(--color-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: clip;
}

.game-card__toggle {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  padding: 0;
  color: var(--color-ink);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.game-card__toggle img,
.game-card > a img,
.game-card > img {
  width: 100%;
  aspect-ratio: 301 / 180;
  object-fit: cover;
  background: var(--color-paper);
  flex: 0 0 auto;
}

.game-card__title {
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  flex: 0 0 auto;
  width: 100%;
  height: 5.4rem;
  min-height: 5.4rem;
  max-height: 5.4rem;
  margin: 0;
  padding: .85rem 2.4rem .85rem 1rem;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.2;
}

.game-card__toggle .game-card__title::after {
  content: "+";
  position: absolute;
  top: .75rem;
  right: .9rem;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.game-card__toggle[aria-expanded="true"] .game-card__title::after { content: "−"; }

.game-card__actions {
  margin-top: auto;
  padding: 0 1rem 1rem;
}

.game-card__actions .button { width: auto; }

.game-card__detail {
  padding: 0 1rem 1rem;
  font-size: var(--step-0);
}

.game-card__detail[hidden] { display: none; }
.game-card__detail p { margin-bottom: var(--space-3); }

.banner-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  width: 100%;
  align-items: stretch;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.logo-tile {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: var(--color-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
}

.logo-tile img {
  width: min(100%, 126px);
  height: 42px;
  object-fit: contain;
}

.promo-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  color: var(--color-white);
  background: var(--color-pitch);
  border-radius: var(--radius-lg);
  overflow: clip;
  text-decoration: none;
  box-shadow: var(--shadow-card);
}

.promo-banner img {
  width: 100%;
  flex: 1 1 auto;
  aspect-ratio: 1024 / 180;
  object-fit: cover;
}

.promo-banner__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: .85rem 1rem;
  font-size: var(--step-0);
  font-weight: 800;
}

.promo-banner__label span:last-child { color: var(--color-win); }

.card-grid {
  display: grid;
  gap: var(--grid-gap);
}

.info-card,
.guide-card {
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
}

.info-card h3,
.guide-card h3 { font-size: var(--step-2); }
.info-card p:last-child,
.guide-card p:last-child { margin-bottom: 0; }

.guide-card {
  display: grid;
  gap: var(--space-2);
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  border-color: rgb(31 127 92 / 35%);
  box-shadow: var(--shadow-card);
}

.guide-card span,
.guide-card__link {
  color: var(--color-field);
  font-weight: 800;
  font-size: var(--step-0);
}

.related-guides { margin-top: var(--space-2); }

.stat {
  display: block;
  margin-bottom: .25rem;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 700;
  line-height: 1;
  color: var(--color-field);
}

.responsible-band { border-top: 3px solid var(--color-win); }

.responsible-grid {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

.age-badge {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--color-ink);
  background: var(--color-win);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.table-wrap {
  width: 100%;
  margin-block: var(--space-5);
  overflow: hidden;
  border-radius: var(--radius-md);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border: 1px solid var(--line-soft);
}

th,
td {
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--color-white);
  background: var(--color-pitch);
  font-size: var(--step-0);
}

tr:last-child td { border-bottom: 0; }

.faq-list { display: grid; gap: var(--space-2); }

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 1rem 1.15rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.35rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 1.15rem 1rem; margin: 0; }

.review-layout,
.form-grid {
  display: grid;
  gap: var(--grid-gap);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  align-content: start;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: 1.35rem 1.4rem 1.25rem;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgb(7 62 46 / 8%);
}

.review-card::before {
  content: "“";
  position: absolute;
  top: .55rem;
  right: 1rem;
  color: var(--color-win);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  opacity: .85;
  pointer-events: none;
}

.review-card__text {
  margin: 0;
  padding-right: 1.5rem;
  font-size: var(--step-0);
  line-height: 1.55;
}

.review-card__foot {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.review-card__avatar {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  background: var(--color-win);
  border-radius: 50%;
}

.review-card__name {
  display: block;
  font-size: var(--step-0);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-pitch);
}

.review-card__meta {
  display: block;
  margin-top: .15rem;
  color: rgb(16 35 27 / 62%);
  font-size: var(--step--1);
  font-weight: 600;
}

.review-empty {
  grid-column: 1 / -1;
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: var(--space-5);
  border: 1px dashed rgb(16 35 27 / 28%);
  border-radius: var(--radius-md);
  text-align: center;
}

.review-form {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-pitch);
  color: var(--color-white);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.review-form h3 {
  margin: 0 0 var(--space-3);
  color: var(--color-white);
}

.review-form .form-note,
.review-form .form-note a {
  color: rgb(255 255 255 / 78%);
}

.review-form .field label { color: rgb(255 255 255 / 92%); }

.review-form .field input,
.review-form .field textarea {
  border-color: transparent;
}

.review-form .button--dark {
  color: var(--color-ink);
  background: var(--color-win);
}

.field { display: grid; gap: .4rem; }
.field label { font-size: var(--step-0); font-weight: 800; }

.field input,
.field textarea {
  width: 100%;
  padding: .75rem .85rem;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid rgb(16 35 27 / 36%);
  border-radius: var(--radius-sm);
}

.field textarea { min-height: 130px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; }

.form-note,
.form-status { font-size: var(--step-0); }
.form-status { min-height: 1.5em; margin: 0; font-weight: 700; }
.form-status[data-state="ok"] { color: var(--color-field); }
.form-status[data-state="error"] { color: #8a271b; }
.review-form .form-status[data-state="ok"] { color: #9dffc2; }
.review-form .form-status[data-state="error"] { color: #ffb4a8; }

.lite-toggle {
  min-height: 42px;
  padding: .55rem .9rem;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  font-size: var(--step--1);
  font-weight: 800;
  cursor: pointer;
}

.lite-bar {
  display: flex;
  justify-content: center;
  padding: var(--space-3) var(--pad);
  background: var(--color-paper);
  border-top: 1px solid var(--line-soft);
}

body.is-lite .game-card img,
body.is-lite .promo-banner img,
body.is-lite .hero-bg,
body.is-lite .page-hero-bg,
body.is-lite .page-hero-media img {
  opacity: .12;
  filter: grayscale(1);
}

body.is-lite * {
  animation: none !important;
  transition: none !important;
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: min(48vh, 480px);
  display: grid;
  align-items: center;
  color: var(--color-white);
  background: var(--color-pitch);
  border-bottom: 4px solid var(--color-win);
}

.page-hero-bg {
  position: absolute;
  z-index: 0;
  top: -28px;
  right: -28px;
  bottom: -28px;
  left: -28px;
  width: calc(100% + 56px);
  height: calc(100% + 56px);
  max-width: none;
  object-fit: cover;
  object-position: center right;
  filter: blur(6px) brightness(.7) saturate(.85);
}

.page-hero--casino .page-hero-bg { object-position: 70% center; }
.page-hero--payments .page-hero-bg { object-position: center center; }
.page-hero--wheel .page-hero-bg { object-position: right center; }
.page-hero--apps .page-hero-bg { object-position: 60% center; }
.page-hero--sports .page-hero-bg { object-position: right center; }
.page-hero--brand .page-hero-bg { object-position: 78% center; }

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgb(4 36 27 / 96%) 0%, rgb(7 62 46 / 90%) 34%, rgb(7 62 46 / 74%) 64%, rgb(7 62 46 / 58%) 100%),
    linear-gradient(0deg, rgb(4 28 20 / 70%) 0%, rgb(7 62 46 / 32%) 48%, transparent 72%),
    rgb(7 62 46 / 30%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 20px;
  background: linear-gradient(180deg, transparent, var(--color-pitch));
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-4);
  align-items: start;
  justify-items: stretch;
  width: min(100%, var(--maxw));
  margin-inline: auto;
  padding-inline: var(--pad);
  padding-block: clamp(3.5rem, 8vw, 5.75rem);
}

.page-hero h1 {
  max-width: none;
  width: 100%;
  margin: 0;
  font-size: clamp(2.2rem, 5.2vw, 3.8rem);
  line-height: 1.08;
  text-transform: none;
  letter-spacing: -.01em;
}

.page-hero .lead {
  max-width: min(100%, 52rem);
  color: rgb(255 255 255 / 82%);
}

.page-hero-media {
  display: none;
}

.step-list {
  margin: var(--space-5) 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.step-list li {
  position: relative;
  min-height: 48px;
  margin-bottom: var(--space-3);
  padding: .75rem .8rem .75rem 3.7rem;
  background: var(--color-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  counter-increment: steps;
}

.step-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: .65rem;
  left: .7rem;
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  color: var(--color-ink);
  background: var(--color-win);
  border-radius: var(--radius-sm);
  font-size: var(--step--1);
  font-weight: 800;
}

.notice {
  margin-block: var(--space-5);
  padding: 1.1rem 1.25rem;
  background: rgb(255 206 6 / 18%);
  border-left: 5px solid var(--color-win);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.site-footer {
  color: var(--color-white);
  background: var(--color-pitch);
  border-top: 3px solid var(--color-win);
}

.footer-grid {
  display: grid;
  gap: var(--space-5);
  padding-block: var(--section-compact);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a { color: rgb(255 255 255 / 80%); }
.footer-meta { max-width: none; color: rgb(255 255 255 / 68%); font-size: var(--step-0); }

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease;
}

[data-reveal].is-visible { opacity: 1; transform: none; }

@media (min-width: 700px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .game-rail { grid-auto-columns: minmax(240px, 32vw); }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field--full { grid-column: 1 / -1; }
  .responsible-grid { grid-template-columns: auto minmax(0, 1fr); }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  :root { --header-height: 72px; }
  .nav-toggle,
  .nav-backdrop,
  .nav-panel__top { display: none; }
  .nav-meta { order: 0; }
  .main-nav {
    position: static;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    visibility: visible;
    overflow: visible;
  }
  .nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .15rem;
  }
  .nav-list a {
    min-height: 44px;
    padding-inline: .65rem;
    font-size: var(--step-0);
    border-radius: var(--radius-sm);
  }
  .nav-list .nav-play {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
  .nav-list .nav-play a {
    margin-left: .35rem;
    min-height: 44px;
    color: var(--color-ink);
    background: var(--color-win);
    box-shadow: none;
  }
  .game-rail { grid-auto-columns: minmax(220px, 24%); }
  .banner-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
  .logo-strip { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .hero .lead { max-width: min(100%, 56rem); }
  .card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .review-layout { grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); align-items: start; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: .8fr 1.2fr; }
}

@media (max-width: 699px) {
  :root { --header-height: 56px; }
  .brand img { width: 138px; }
  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  .nav-meta { display: none; }
  .button-row .button { width: 100%; }
  .section-heading--row {
    flex-direction: column;
    align-items: stretch;
  }
  .section-heading--row .rail-controls { align-self: flex-start; }
  .hero h1,
  .page-hero h1 { max-width: none; }
  .hero--bleed {
    min-height: 0;
    align-items: start;
  }
  .hero--bleed .hero-inner {
    justify-items: center;
    text-align: center;
    gap: var(--space-3);
    padding-block: 1.35rem 2rem;
  }
  .hero-brand {
    width: min(100%, 168px);
    margin-bottom: 0;
  }
  .hero--bleed .button-row { justify-content: center; width: 100%; }
  .hero--bleed .lead { margin-inline: auto; }
  .page-hero { min-height: 0; }
  .page-hero-inner {
    justify-items: center;
    text-align: center;
    gap: var(--space-3);
    padding-block: 1.5rem 2rem;
  }
  .page-hero .button-row { justify-content: center; }
  .page-hero .lead { margin-inline: auto; }
  .table-wrap table,
  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap td { display: block; width: 100%; }
  .table-wrap thead { display: none; }
  .table-wrap tr {
    padding: .3rem .9rem;
    border-bottom: 1px solid var(--line-soft);
  }
  .table-wrap tr:last-child { border-bottom: 0; }
  .table-wrap td {
    display: grid;
    grid-template-columns: minmax(94px, 38%) minmax(0, 1fr);
    gap: .75rem;
    padding: .65rem 0;
    border: 0;
  }
  .table-wrap td::before {
    content: attr(data-label);
    font-size: var(--step--1);
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
