@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #07141c;
  --ink-soft: #122433;
  --paper: #eef3f6;
  --surface: #ffffff;
  --brand: #ffce06;
  --brand-hot: #f28a18;
  --teal: #0b6078;
  --teal-soft: #e7f4f8;
  --ok: #137a68;
  --muted: #5a6874;
  --line: rgba(7, 20, 28, 0.12);
  --shadow: 0 18px 40px rgba(7, 20, 28, 0.12);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --maxw: 1180px;
  --pad: clamp(16px, 4vw, 28px);
  --s1: 8px;
  --s2: 12px;
  --s3: 16px;
  --s4: 24px;
  --s5: 32px;
  --s6: 48px;
  --s7: 64px;
  --s8: 96px;
  --radius: 12px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(255, 206, 6, 0.12), transparent 60%),
    radial-gradient(900px 420px at 100% 0%, rgba(11, 96, 120, 0.12), transparent 55%),
    var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-underline-offset: 0.18em; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }

.skip-link {
  position: fixed; inset: 10px auto auto 10px; z-index: 100;
  padding: 10px 14px; background: var(--ink); color: #fff; transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.container { width: min(100%, var(--maxw)); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(48px, 7vw, 88px); }
.section--compact { padding-block: clamp(28px, 5vw, 56px); }
.section--surface { background: var(--surface); }
.section--tint { background: linear-gradient(180deg, var(--teal-soft), #fff); }
.section--dark { background: var(--ink); color: #e8eef2; }
.section--dark a { color: var(--brand); }

.prose { max-width: 70ch; }
.prose > *:first-child, .card > *:first-child { margin-top: 0; }
.prose > *:last-child, .card > *:last-child { margin-bottom: 0; }
p { margin: 0 0 var(--s3); }
.lead { max-width: 58ch; font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.55; color: #31414d; }
.muted { color: var(--muted); }
.eyebrow {
  margin: 0 0 var(--s2);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.utility {
  margin: 0 0 var(--s2);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0 0 var(--s3);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  text-wrap: balance;
  line-height: 1.05;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 800; max-width: 16ch; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.55rem); font-weight: 800; max-width: 22ch; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 700; line-height: 1.2; }

.section-heading { display: grid; gap: var(--s2); margin-bottom: var(--s3); justify-items: start; text-align: left; }
.section-heading > :last-child { margin-bottom: 0; }
.section-heading p { margin: 0; max-width: 62ch; color: var(--muted); }
.section-heading--center { justify-items: center; text-align: center; }
.section-heading--center p { margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 80;
  min-height: var(--header-h);
  background: #07141c;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}
/* overflow:hidden on body breaks sticky — keep header visible while menu is open */
body.menu-open .site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
}
body.menu-open { padding-top: var(--header-h); }
.header-inner {
  position: relative;
  z-index: 2;
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s3);
}
.brand { flex: 0 0 auto; text-decoration: none; display: grid; place-items: center; }
.brand img { width: 156px; height: auto; object-fit: contain; }
.site-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  padding: 12px var(--pad) 32px;
  background: #07141c;
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.site-nav.is-open { display: block; }
.nav-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.nav-list a {
  display: flex; align-items: center; min-height: 48px;
  padding: 12px 4px; color: #fff; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 600; font-size: 1.05rem;
}
.nav-list a[aria-current="page"], .nav-list a.is-active {
  color: var(--brand);
  border-bottom-color: rgba(255, 206, 6, 0.35);
  box-shadow: inset 3px 0 0 var(--brand);
}
.header-actions { display: flex; align-items: center; gap: 8px; }
.lite-toggle, .menu-toggle {
  min-width: 44px; min-height: 44px; padding: 8px 12px;
  color: #fff; background: transparent; border: 1px solid rgba(255,255,255,0.28);
  border-radius: 10px; cursor: pointer; font-weight: 700; font-size: 0.82rem;
}
.lite-toggle[aria-pressed="true"] { background: var(--brand); color: var(--ink); border-color: var(--brand); }
.menu-toggle { font-size: 0; }
.menu-toggle::before { content: "☰"; font-size: 1.35rem; line-height: 1; }
.menu-toggle[aria-expanded="true"]::before { content: "×"; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 20px; border: 1px solid transparent; border-radius: 10px;
  font-size: 0.95rem; font-weight: 800; line-height: 1; text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--brand); color: var(--ink); box-shadow: 0 10px 24px rgba(255, 206, 6, 0.28); }
.button--primary:hover { background: #ffe14d; }
.button--secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.button--ghost { background: #fff; color: var(--ink); border-color: var(--ink); }
.button--small { min-height: 42px; padding: 10px 14px; font-size: 0.88rem; }
.button-row { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s4); }

/* Full-bleed hero */
.hero {
  position: relative;
  min-height: min(420px, 62vh);
  display: grid;
  align-items: start;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: -18px; z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center right;
  filter: blur(8px) saturate(1.05);
  transform: scale(1.04);
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(7,20,28,0.88) 0%, rgba(7,20,28,0.62) 46%, rgba(7,20,28,0.34) 100%),
    linear-gradient(180deg, rgba(7,20,28,0.28) 0%, rgba(7,20,28,0.72) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--maxw));
  margin-inline: auto;
  padding: clamp(28px, 4vw, 48px) var(--pad) clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.hero .eyebrow {
  color: var(--brand);
  margin: 0;
}
.hero h1 {
  max-width: 100%;
  width: auto;
  color: #fff;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.hero .lead {
  color: rgba(255,255,255,0.88);
  max-width: min(100%, 46rem);
  width: 100%;
  margin: 0;
}
.hero .button-row { margin-top: 6px; }
.hero-note {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  max-width: min(100%, 46rem);
  width: 100%;
}
.hero-brand-mark {
  display: inline-flex; align-items: center; gap: 12px; margin: 0;
}
.hero-brand-mark img { width: 180px; height: auto; filter: drop-shadow(0 8px 18px rgba(0,0,0,.35)); }

.quick-nav { background: var(--ink-soft); border-block: 1px solid rgba(255,255,255,0.06); }
.quick-nav .container { padding-block: 14px; }
.quick-nav ul {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px;
  margin: 0; padding: 0; list-style: none;
}
.quick-nav a { color: #fff; text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.quick-nav a:hover { color: var(--brand); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}
.card {
  min-width: 0;
  padding: clamp(18px, 2.4vw, 28px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.feature {
  display: grid; gap: var(--s3);
  padding: 0;
  background: transparent;
  border: 0;
}
.feature-visual {
  overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 16 / 10; background: var(--ink-soft);
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }
.feature h3 { margin-bottom: 4px; }
.text-link { font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.two-column {
  display: grid; gap: clamp(24px, 4vw, 48px); align-items: start;
}
.two-column > .card {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.checklist, .steps { margin: var(--s4) 0 0; padding: 0; list-style: none; counter-reset: item; }
.checklist li, .steps li { position: relative; margin-bottom: var(--s3); padding-left: 36px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 22px; height: 22px;
  border-radius: 50%; background: color-mix(in srgb, var(--ok) 18%, white);
  box-shadow: inset 0 0 0 2px var(--ok);
}
.checklist li::after {
  content: ""; position: absolute; left: 7px; top: 10px; width: 8px; height: 5px;
  border-left: 2px solid var(--ok); border-bottom: 2px solid var(--ok); transform: rotate(-45deg);
}
.steps li { padding: 0 0 var(--s4) 52px; }
.steps li::before {
  counter-increment: item; content: counter(item);
  position: absolute; left: 0; top: 0;
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; background: var(--teal); color: #fff; font-weight: 800; font-size: 0.9rem;
}
.steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 16px; top: 36px; bottom: 0; width: 2px;
  background: rgba(11, 96, 120, 0.2);
}

.media-panel {
  position: relative; overflow: hidden; border-radius: 16px;
  min-height: 260px; background: #07141c; box-shadow: var(--shadow);
  display: grid; align-items: center;
}
.media-panel a { display: block; }
.media-panel img {
  width: 100%; height: auto; min-height: 0; max-height: 420px;
  object-fit: contain; object-position: center; display: block;
}
.media-panel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,20,28,.72) 100%);
  pointer-events: none;
}
.media-copy {
  position: absolute; z-index: 1; left: var(--s4); bottom: var(--s4);
  max-width: 28ch; color: #fff; font-weight: 700;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
}

.brand-strip {
  margin: 0 0 var(--s5);
  border-radius: 16px;
  overflow: hidden;
  background: #07141c;
  box-shadow: var(--shadow);
}
.brand-strip img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 280px;
  object-fit: cover;
  object-position: center;
}

.carousel-shell { position: relative; }
.carousel-shell + .carousel-shell { margin-top: var(--s6); }
.carousel-shell .section-heading {
  grid-template-columns: minmax(0,1fr) auto; align-items: end; display: grid;
}
.carousel-actions { display: flex; gap: 8px; }
.carousel-button {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer;
}
.carousel-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 82vw);
  gap: var(--s3); padding: 4px 4px var(--s3);
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.game-card {
  min-width: 0; overflow: hidden; scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(7,20,28,0.05);
}
.game-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d7dee4;
}
.game-toggle {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: inherit;
}
.game-toggle picture {
  display: block;
  width: 100%;
  height: 100%;
}
.game-toggle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #d7dee4;
  transition: filter .28s ease, transform .28s ease;
}
.game-card.is-open .game-toggle img,
.game-card:has(.game-toggle[aria-expanded="true"]) .game-toggle img {
  filter: blur(6px) brightness(0.38);
  transform: scale(1.08);
}
.game-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding: 28px 14px 12px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(180deg, transparent, rgba(7, 20, 28, 0.88));
  pointer-events: none;
}
.game-title::after { content: "+"; color: #fff; font-size: 1.3rem; line-height: 1; }
.game-toggle[aria-expanded="true"] .game-title::after { content: "−"; }
.game-card.is-open .game-title,
.game-card:has(.game-toggle[aria-expanded="true"]) .game-title { opacity: 0; }
.game-details {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.35;
  background: rgba(7, 20, 28, 0.28);
  box-sizing: border-box;
}
.game-details[hidden] { display: none !important; }
.game-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
  max-width: 28ch;
}
.game-details .button {
  margin-top: 0;
  min-height: 34px;
  padding: 7px 12px;
  font-size: 0.78rem;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.providers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--s3); align-items: stretch;
}
.provider {
  display: grid; place-items: center; min-height: 92px;
  padding: var(--s3); background: #fff; border: 1px solid var(--line); border-radius: 10px;
}
.provider img { width: 120px; height: 46px; object-fit: contain; }

.payments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--s3);
}
.payment {
  display: grid; gap: 10px; justify-items: center; text-align: center;
  padding: 18px 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.payment img { width: 88px; height: 52px; }
.payment strong { font-size: 0.95rem; }

.table-title {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
  max-width: 40ch;
}
.data-table {
  width: 100%; table-layout: fixed; margin: 0 0 var(--s4);
  border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
.data-table caption {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0 0 10px;
  text-align: left;
  font-weight: 800;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  box-sizing: border-box;
}
.data-table th, .data-table td {
  padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); overflow-wrap: anywhere;
}
.data-table th { background: var(--teal-soft); font-size: 0.9rem; }

.faq-list { display: grid; gap: 10px; max-width: 900px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.faq-item summary {
  position: relative; min-height: 56px; padding: 16px 52px 16px 18px;
  list-style: none; cursor: pointer; font-weight: 800;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 18px; top: 16px; color: var(--teal); font-size: 1.35rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 18px 18px; color: #34414d; }

.related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: var(--s3);
}
.related a {
  display: grid; gap: 12px; color: inherit; text-decoration: none;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.related a:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.related-media {
  background: #07141c;
  overflow: hidden;
}
.related-media img {
  width: 100%;
  height: auto;
  display: block;
}
.related-copy { padding: 0 16px 16px; }
.related-copy strong { display: block; margin-bottom: 4px; font-size: 1.05rem; }

.review-layout { display: grid; gap: var(--s5); }
.review-list { display: grid; gap: var(--s3); }
.empty-state {
  padding: var(--s5); text-align: center; color: var(--muted);
  background: #fff; border: 1px dashed var(--line); border-radius: var(--radius);
}
.review { padding: var(--s4); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.review-meta { color: var(--muted); font-size: 0.9rem; }
.form-grid { display: grid; gap: var(--s3); }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; }
.field input, .field textarea {
  width: 100%; min-height: 46px; padding: 11px 12px;
  border: 1px solid #7a8793; border-radius: 10px; background: #fff; color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-error { color: #b42318; font-size: 0.9rem; }
.form-status { min-height: 1.4em; margin: 0; font-weight: 700; }
.hp-field { position: absolute; left: -9999px; }

.breadcrumb { padding-block: 14px; background: #fff; border-bottom: 1px solid var(--line); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; font-size: 0.9rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--muted); }

.page-hero {
  position: relative; overflow: hidden; color: #fff;
  padding-block: clamp(48px, 8vw, 88px);
  background: #0a1c26;
}
.page-hero-bg {
  position: absolute; inset: -16px; z-index: 0;
  width: calc(100% + 32px); height: calc(100% + 32px);
  object-fit: cover; object-position: center right;
  pointer-events: none;
  filter: blur(10px) saturate(1.05);
  transform: scale(1.05);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(7,20,28,0.94) 0%, rgba(7,20,28,0.78) 48%, rgba(7,20,28,0.48) 100%);
  pointer-events: none;
}
.page-hero .container, .page-hero-grid { position: relative; z-index: 2; }
.page-hero-grid { display: grid; gap: var(--s5); align-items: center; }
.page-hero h1 { max-width: 15ch; color: #fff; }
.page-hero .lead { color: rgba(255,255,255,0.88); }
.page-hero .eyebrow { color: var(--brand); }
.status-card {
  padding: var(--s4); background: rgba(255,255,255,0.96); color: var(--ink);
  border-radius: 14px; box-shadow: var(--shadow);
}
.status-card strong { color: var(--ok); }

.toc { background: var(--ink-soft); color: #fff; padding-block: 14px; }
.toc-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0; padding: 0; list-style: none; }
.toc-list a {
  display: inline-flex; align-items: center; min-height: 36px; padding: 6px 12px;
  color: #fff; border: 1px solid rgba(255,255,255,0.25); border-radius: 999px;
  text-decoration: none; font-size: 0.88rem; font-weight: 600;
}
.toc-list a:hover { border-color: var(--brand); color: var(--brand); }

.legal-layout { display: grid; gap: var(--s5); }
.legal-toc { padding: var(--s4); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.legal-toc ol { margin: 0; padding-left: 1.2rem; }
.legal-copy { min-width: 0; overflow-wrap: anywhere; }
.legal-copy h2 { margin-top: var(--s6); }
.legal-copy h2:first-of-type { margin-top: 0; }
.legal-note {
  padding: var(--s3); border-left: 4px solid var(--brand);
  background: #fff8db; border-radius: 0 10px 10px 0;
}

.responsible { background: var(--teal); color: #fff; }
.responsible-inner { display: flex; flex-direction: column; gap: var(--s3); align-items: flex-start; }
.responsible strong { font-size: 1.15rem; }
.responsible p { max-width: 68ch; margin: 0; }

.site-footer { padding-block: var(--s7); background: var(--ink); color: #c9d4dc; }
.footer-grid { display: grid; gap: var(--s5); }
.footer-brand img { width: 150px; height: auto; }
.footer-brand p { max-width: 42ch; margin-top: var(--s3); }
.footer-nav h2 { font-size: 1rem; color: #fff; margin-bottom: 12px; }
.footer-nav ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.footer-nav a { color: #c9d4dc; text-decoration: none; }
.footer-nav a:hover, .footer-nav a[aria-current="page"] { color: var(--brand); }
.footer-bottom {
  margin-top: var(--s5); padding-top: var(--s4);
  border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.9rem;
}

.disclosure {
  margin: 0; padding: 10px 0 0; color: rgba(255,255,255,0.7); font-size: 0.82rem; max-width: 70ch;
}

.js-reveal { opacity: 0; transform: translateY(12px); transition: opacity .4s ease, transform .4s ease; }
.js-reveal.is-visible { opacity: 1; transform: none; }

body.lite-mode .media-panel img,
body.lite-mode .game-toggle img,
body.lite-mode .hero-media img,
body.lite-mode .feature-visual img,
body.lite-mode .related-media img { visibility: hidden; filter: none; transform: none; }
body.lite-mode .page-hero-bg { visibility: hidden; filter: none; transform: none; }
body.lite-mode .hero-media,
body.lite-mode .media-panel,
body.lite-mode .feature-visual,
body.lite-mode .related-media { background: linear-gradient(135deg, #0b6078, #07141c); }
body.lite-mode .page-hero::before { background: linear-gradient(105deg, #07141c, #0b6078); }
body.lite-mode .js-reveal { opacity: 1; transform: none; transition: none; }
body.lite-mode * { scroll-behavior: auto !important; }

@media (max-width: 767px) {
  .button-row .button { width: 100%; }
  .hero {
    min-height: 0;
    align-items: start;
  }
  .hero-media img { object-position: 85% 70%; min-height: 280px; filter: blur(7px) saturate(1.05); }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(7,20,28,0.55) 0%, rgba(7,20,28,0.72) 45%, rgba(7,20,28,0.92) 100%),
      linear-gradient(90deg, rgba(7,20,28,0.62), transparent 75%);
  }
  .hero-inner {
    padding-top: 16px;
    padding-bottom: 20px;
    gap: 8px;
  }
  .hero-brand-mark img { width: 140px; }
  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .hero .button-row { margin-top: 4px; width: 100%; }
  .data-table, .data-table thead, .data-table tbody, .data-table tr, .data-table th, .data-table td { display: block; width: 100%; }
  .data-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .data-table {
    border: 0;
    background: transparent;
    table-layout: auto;
    overflow: visible;
  }
  .data-table caption {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 12px;
    padding: 0;
    font-size: 1.05rem;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .data-table tbody { display: grid; gap: var(--s3); }
  .data-table tr { padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
  .data-table td {
    display: grid; grid-template-columns: minmax(90px, .85fr) minmax(0, 1.15fr);
    gap: 10px; padding: 8px; border-bottom: 1px solid var(--line);
  }
  .data-table td:last-child { border: 0; }
  .data-table td::before { content: attr(data-label); font-weight: 800; color: var(--teal); }
}

@media (max-width: 479px) {
  .header-actions > .button { display: none; }
  .brand img { width: 132px; }
  .lite-toggle { padding-inline: 8px; font-size: 0.75rem; }
}

@media (min-width: 600px) {
  .carousel-track { grid-auto-columns: minmax(250px, calc((100% - 32px) / 3)); }
  .game-details { font-size: 0.84rem; padding: 16px; gap: 12px; }
  .game-details .button { min-height: 38px; padding: 8px 14px; font-size: 0.84rem; }
  .form-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .responsible-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 768px) {
  .page-hero-grid { grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr); }
  .two-column { grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); }
  .review-layout { grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); }
  .legal-layout { grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr); }
  .legal-toc { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
  .footer-grid { grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(150px, 0.7fr)); }
}

@media (min-width: 1024px) {
  :root { --header-h: 76px; }
  .site-nav {
    position: static;
    inset: auto;
    top: auto; left: auto; right: auto; bottom: auto;
    z-index: auto;
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
    overflow: visible;
  }
  .nav-list { display: flex; align-items: center; gap: 18px; }
  .nav-list a {
    min-height: var(--header-h);
    padding: 0;
    border-bottom: 3px solid transparent;
    box-shadow: none;
    font-size: 0.95rem;
  }
  .nav-list a[aria-current="page"], .nav-list a.is-active {
    border-bottom-color: var(--brand);
    box-shadow: none;
  }
  .menu-toggle { display: none; }
  body.menu-open { padding-top: 0; }
  body.menu-open .site-header { position: sticky; }
  .carousel-track { grid-auto-columns: minmax(220px, calc((100% - 80px) / 5)); }
  .game-media { aspect-ratio: 5 / 4; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js-reveal { opacity: 1; transform: none; }
  .hero-media img,
  .page-hero-bg { filter: none; transform: none; }
}

/* content-visibility omitted: caused delayed image decode on long pages */
