/* =====================================================================
   LocoWin Casino DE — brand-focused affiliate / informational site
   Visual direction: dark teal brand sections + light grey body +
   orange CTAs + navy text. Mobile-first.
   (Token discipline borrowed from the bound design system; palette
    follows the explicit teal/orange brief.)
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Hanken+Grotesk:wght@400;500;600;700&family=Baloo+2:wght@600;700;800&display=swap');

:root {
  /* ---------- TEAL BRAND ---------- */
  --teal-900: #1c3a43;   /* deepest header/footer */
  --teal-800: #244853;   /* header */
  --teal-700: #2b5664;   /* hero base */
  --teal-600: #2e5d6c;
  --info-700: #156d7e;   /* teal info table base */
  --info-600: #177e90;   /* teal info / game cards */
  --info-500: #1b8fa3;   /* brighter teal */
  --info-400: #2aa5ba;

  /* ---------- ORANGE ---------- */
  --orange-700: #d65407;
  --orange-600: #ef6a0c;  /* primary CTA */
  --orange-500: #f97316;  /* CTA bright */
  --orange-400: #ff8a3d;  /* hover */
  --orange-link: #e25a0b;

  /* ---------- NEUTRALS / LIGHT ---------- */
  --paper: #eceeef;       /* light body bg */
  --paper-2: #e3e7e9;     /* alt section bg */
  --white: #ffffff;
  --card: #ffffff;
  --navy: #173a44;        /* headings on light */
  --navy-2: #1f4a55;
  --body: #33464c;        /* body text on light */
  --muted: #5e7177;       /* muted text */
  --ivory: #f4f8f9;       /* text on teal */
  --ivory-2: #cfe0e4;     /* muted text on teal */

  /* ---------- LINES ---------- */
  --line: #d4dadc;
  --line-soft: #dfe4e6;
  --line-teal: rgba(255,255,255,0.16);

  /* ---------- RADII ---------- */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* ---------- SPACING (4pt) ---------- */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px;  --sp-6: 24px;  --sp-8: 32px;  --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  /* ---------- SHADOW ---------- */
  --shadow-1: 0 1px 3px rgba(23,58,68,.10);
  --shadow-2: 0 6px 20px rgba(23,58,68,.10);
  --shadow-3: 0 18px 44px rgba(23,58,68,.16);
  --shadow-cta: 0 8px 22px rgba(239,106,12,.32);

  /* ---------- TYPE ---------- */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-logo: 'Baloo 2', system-ui, sans-serif;

  --maxw: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--orange-link); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(30px, 5vw, 48px); font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(24px, 3.4vw, 34px); }
h3 { font-size: clamp(19px, 2.2vw, 23px); }
h4 { font-size: 18px; }
p { margin: 0 0 1em; text-wrap: pretty; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }

/* ===================== LAYOUT ===================== */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }
.section { padding-block: clamp(40px, 6vw, 72px); }
.section--paper { background: var(--paper); }
.section--paper2 { background: var(--paper-2); }
.section--white { background: var(--white); }
.section--teal { background: var(--teal-700); color: var(--ivory); }
.section--teal h1, .section--teal h2, .section--teal h3 { color: #fff; }
.lede { font-size: clamp(17px, 2vw, 19px); color: var(--muted); max-width: 70ch; }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange-600); margin-bottom: 10px;
}
.section--teal .eyebrow { color: var(--orange-400); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* inline icon spans */
.ico { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; flex-shrink: 0; }
.ico svg { width: 100%; height: 100%; display: block; }
.card-link .ico { width: 16px; height: 16px; }

/* hero lobby visual */
.lobby { background: #0f2a31; border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); box-shadow: var(--shadow-3); overflow: hidden; transform: rotate(-1.2deg); }
.lobby-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.08); }
.lb-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); }
.lb-dot:first-child { background: var(--orange-500); }
.lb-url { margin-left: 8px; font-size: 12px; color: var(--ivory-2); font-weight: 600; letter-spacing: .04em; }
.lobby-banner { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 12px; padding: 14px 16px; border-radius: var(--r-md); background: linear-gradient(120deg, var(--orange-600), var(--orange-400)); color: #fff; }
.lb-ey { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .92; }
.lb-amt { font-family: var(--font-head); font-weight: 800; font-size: 22px; line-height: 1.05; }
.lb-amt span { color: #fff3e0; }
.lb-cta { background: #fff; color: var(--orange-700); font-weight: 800; font-size: 13px; padding: 8px 14px; border-radius: var(--r-pill); }
.lobby-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 12px 14px; }
.lobby-tiles .game-art { border-radius: 10px; overflow: hidden; aspect-ratio: 1/1; }
.lobby-tiles .game-art svg { width: 100%; height: 100%; }
.float-chip { position: absolute; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ff8a3d, #ef6a0c); box-shadow: 0 10px 24px rgba(239,106,12,.4), inset 0 0 0 3px rgba(255,255,255,.4), inset 0 0 0 7px rgba(255,255,255,.15); }
.float-chip.fc1 { width: 56px; height: 56px; bottom: -14px; left: -10px; }
.float-chip.fc2 { width: 38px; height: 38px; top: 16px; right: -12px; background: radial-gradient(circle at 35% 30%, #2aa5ba, #156d7e); box-shadow: 0 10px 22px rgba(21,109,126,.5), inset 0 0 0 3px rgba(255,255,255,.4), inset 0 0 0 6px rgba(255,255,255,.15); }
@media (prefers-reduced-motion: no-preference) {
  .float-chip.fc1 { animation: bob 4s ease-in-out infinite; }
  .float-chip.fc2 { animation: bob 5s ease-in-out infinite .5s; }
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ===================== SKIP LINK ===================== */
.skip { position: absolute; left: -999px; top: 0; background: var(--orange-600); color: #fff; padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0; }
.skip:focus { left: 0; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--teal-800);
  border-bottom: 1px solid rgba(0,0,0,.18);
}
.header-inner { display: flex; align-items: center; gap: var(--sp-6); height: 68px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-logo { display: block; height: 40px; width: auto; object-fit: contain; }
.nav-main { display: none; }
.nav-main ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-main a {
  display: block; padding: 8px 12px; color: var(--ivory); font-weight: 600;
  font-size: 14.5px; border-radius: var(--r-sm); letter-spacing: .01em;
}
.nav-main a:hover { background: rgba(255,255,255,.08); text-decoration: none; }
.nav-main a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.13); }
.nav-main a[aria-current="page"]::after { content: ""; display: block; height: 2px; background: var(--orange-500); border-radius: 2px; margin-top: 4px; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }

/* Mehr dropdown */
.has-drop { position: relative; }
.drop-toggle {
  display: inline-flex; align-items: center; gap: 5px; background: none; border: 0;
  cursor: pointer; font-family: var(--font-body); font-size: 14.5px; font-weight: 600;
  color: var(--ivory); padding: 8px 12px; border-radius: var(--r-sm); line-height: 1.1;
}
.drop-toggle:hover { background: rgba(255,255,255,.08); }
.drop-toggle .chev { transition: transform .2s var(--ease); }
.has-drop[data-open="true"] .drop-toggle .chev { transform: rotate(180deg); }
.drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 210px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-3); padding: 6px; display: none; flex-direction: column; gap: 2px;
}
.has-drop[data-open="true"] .drop-menu { display: flex; }
.drop-menu a { color: var(--navy); padding: 9px 12px; border-radius: var(--r-sm); font-size: 14.5px; font-weight: 600; }
.drop-menu a:hover { background: var(--paper); text-decoration: none; color: var(--orange-link); }

/* burger */
.burger { display: inline-flex; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 8px; margin-right: 4px; }
.burger span { width: 22px; height: 2.5px; background: #fff; border-radius: 2px; transition: .2s var(--ease); }
body.menu-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: var(--r-sm); border: 2px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap; text-decoration: none; line-height: 1.1;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--orange-600); color: #fff; box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--orange-500); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline { background: transparent; color: var(--orange-link); border-color: var(--orange-600); }
.btn-outline:hover { background: rgba(239,106,12,.08); }
.btn-lg { padding: 15px 30px; font-size: 16.5px; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; }
.btn .ico { width: 18px; height: 18px; }
.header-actions .btn { padding: 10px 16px; font-size: 14px; }

/* ===================== HERO ===================== */
.hero { position: relative; background: var(--teal-700); color: var(--ivory); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(43,143,163,.45), transparent 60%),
    radial-gradient(700px 500px at 8% 120%, rgba(20,40,48,.6), transparent 60%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; gap: clamp(28px, 4vw, 48px); align-items: center; padding-block: clamp(40px, 6vw, 76px); }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero .hero-sub { color: var(--ivory-2); font-size: clamp(16px, 1.8vw, 19px); max-width: 56ch; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600;
  padding: 7px 13px; border-radius: var(--r-pill); background: rgba(255,255,255,.08);
  border: 1px solid var(--line-teal); color: var(--ivory);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange-400); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual { position: relative; }

/* compact inner-page hero */
.page-hero .wrap { padding-block: clamp(30px, 5vw, 52px); position: relative; }
.page-hero h1 { color: #fff; margin-bottom: .3em; max-width: 20ch; }
.page-hero .hero-sub { margin-bottom: 20px; }
.page-hero .hero-cta { margin-top: 4px; }

/* ===================== CARDS ===================== */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-1); padding: var(--sp-6); }
.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }

/* info / snapshot card */
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-1); padding: var(--sp-6); display: flex; flex-direction: column; gap: 12px; transition: transform .18s var(--ease), box-shadow .2s var(--ease); }
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.info-card .ic-head { display: flex; align-items: center; gap: 12px; }
.info-card h3 { margin: 0; }
.card .ic-head h3 { margin: 0; font-size: clamp(16px, 1.8vw, 20px); }
.ic-title { margin: 0; font-weight: 700; font-size: 16px; font-family: var(--font-head); color: var(--navy); line-height: 1.3; }
.icon-badge { width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--r-md); display: grid; place-items: center; background: linear-gradient(160deg, var(--info-500), var(--teal-700)); color: #fff; }
.icon-badge svg { width: 26px; height: 26px; }
.card-link { font-weight: 700; color: var(--orange-link); display: inline-flex; align-items: center; gap: 5px; margin-top: auto; }
.card-link svg { width: 16px; height: 16px; transition: transform .15s var(--ease); }
.card-link:hover svg { transform: translateX(3px); }

/* nav page cards */
.page-cards { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
.page-card { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); transition: .18s var(--ease); }
.page-card:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: var(--info-400); }
.page-card .icon-badge { width: 42px; height: 42px; }
.page-card .pct { margin: 0 0 3px; color: var(--navy); font-weight: 700; font-size: 16px; font-family: var(--font-head); }
.page-card p { margin: 0; font-size: 14px; color: var(--muted); }

/* ===================== FACTS TABLE ===================== */
.facts {
  width: 100%; border-collapse: separate; border-spacing: 0 6px;
}
.facts-wrap { background: var(--info-600); border-radius: var(--r-lg); padding: 10px clamp(12px,2vw,20px) 16px; box-shadow: var(--shadow-2); overflow: hidden; }
.facts caption { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 18px; text-align: left; padding: 12px 6px; }
.facts th, .facts td { color: #fff; padding: 13px 16px; text-align: left; font-size: 15px; vertical-align: top; }
.facts th { font-weight: 600; width: 42%; border-radius: var(--r-sm) 0 0 var(--r-sm); }
.facts td { font-weight: 600; text-align: right; border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.facts tr { background: rgba(255,255,255,.06); }
.facts tbody tr:hover { background: rgba(255,255,255,.12); }

/* ===================== TABLE OF CONTENTS ===================== */
.toc { background: var(--info-600); color: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-2); overflow: hidden; }
.toc summary { list-style: none; cursor: pointer; padding: 18px 22px; font-family: var(--font-head); font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: space-between; }
.toc summary::-webkit-details-marker { display: none; }
.toc summary .chev { transition: transform .2s var(--ease); }
.toc[open] summary .chev { transform: rotate(180deg); }
.toc-list { padding: 0 22px 20px; columns: 2; column-gap: 28px; }
.toc-list a { color: #fff; display: block; padding: 6px 0; font-size: 14.5px; border-bottom: 1px solid rgba(255,255,255,.12); break-inside: avoid; }
.toc-list a:hover { color: var(--orange-400); text-decoration: none; }
.toc-list a::before { content: "▸ "; color: var(--orange-400); }

/* ===================== STEP CARDS ===================== */
.steps { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; counter-reset: step; }
.step { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--orange-500); border-radius: var(--r-md); padding: 18px 20px; }
.step .step-num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--info-600); color: #fff; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; }
.step h3 { margin: 0 0 3px; color: var(--navy); font-size: 16px; }
.step p { margin: 0; font-size: 15px; color: var(--muted); }

/* compact numbered list (screenshot style) */
.num-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; counter-reset: n; }
.num-list li { display: flex; gap: 12px; align-items: flex-start; counter-increment: n; margin: 0; }
.num-list li::before { content: counter(n); flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--info-600); color: #fff; font-weight: 700; font-size: 13px; display: grid; place-items: center; font-family: var(--font-head); }

/* check list */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin: 0; }
.check-list li::before { content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; background: var(--info-600); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 14px; background-repeat: no-repeat; background-position: center; }

/* pros / cons */
.proscons { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
.pc-card { border-radius: var(--r-lg); padding: var(--sp-6); border: 1px solid var(--line); background: var(--white); }
.pc-card h3 { display: flex; align-items: center; gap: 10px; }
.pc-card.pros { border-top: 4px solid #19a06b; }
.pc-card.cons { border-top: 4px solid var(--orange-600); }
.pc-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pc-card li { display: flex; gap: 10px; align-items: flex-start; margin: 0; font-size: 15.5px; }
.pc-card li::before { content: ""; flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; background-repeat: no-repeat; background-position: center; background-size: 18px; }
.pc-card.pros li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2319a06b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.pc-card.cons li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef6a0c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E"); }

/* ===================== BONUS CARDS ===================== */
.bonus-hero { background: linear-gradient(150deg, var(--info-600), var(--teal-700)); color: #fff; border-radius: var(--r-xl); padding: clamp(24px,4vw,40px); box-shadow: var(--shadow-3); position: relative; overflow: hidden; }
.bonus-hero h3 { color: #fff; }
.bonus-amount { font-family: var(--font-head); font-weight: 800; font-size: clamp(34px, 6vw, 56px); line-height: 1; color: #fff; }
.bonus-amount span { color: var(--orange-400); }
.bonus-tiers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 20px; }
.tier { background: rgba(255,255,255,.1); border: 1px solid var(--line-teal); border-radius: var(--r-md); padding: 12px 8px; text-align: center; }
.tier .t-pct { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--orange-400); }
.tier .t-label { font-size: 12px; color: var(--ivory-2); }

/* ===================== GAME CARDS ===================== */
.game-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
.game-card { background: var(--info-600); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); display: flex; flex-direction: column; transition: transform .18s var(--ease); }
.game-card:hover { transform: translateY(-4px); }
.game-art { aspect-ratio: 16/11; position: relative; display: block; }
.game-art svg { width: 100%; height: 100%; display: block; }
.game-body { padding: 16px 18px 18px; color: #fff; display: flex; flex-direction: column; gap: 10px; }
.game-body .g-prov { font-size: 13px; color: var(--ivory-2); margin: 0; }
.game-body h3 { color: #fff; margin: 0; font-size: 19px; }
.g-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; border-top: 1px solid var(--line-teal); padding-top: 12px; font-size: 13.5px; }
.g-stats .s { color: var(--ivory-2); }
.g-stats .v { color: #fff; font-weight: 700; }
.game-body .btn { margin-top: 4px; }

/* category cards w/ abstract art */
.cat-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
.cat-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-1); transition: .18s var(--ease); }
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.cat-art { aspect-ratio: 5/2; }
.cat-art svg { width: 100%; height: 100%; }
.cat-body { padding: 18px 20px 20px; }
.cat-body h3 { margin: 0 0 6px; }
.cat-body p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ===================== FAQ ===================== */
.faq { display: grid; gap: 10px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 16px 20px; font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--navy); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: var(--orange-600); border-radius: 2px; transition: transform .2s var(--ease); }
.faq summary .plus::before { top: 10px; left: 2px; right: 2px; height: 2.5px; }
.faq summary .plus::after { left: 10px; top: 2px; bottom: 2px; width: 2.5px; }
.faq details[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq .faq-body { padding: 0 20px 18px; color: var(--body); font-size: 15.5px; }
.faq .faq-body p { margin: 0; }

/* ===================== CTA BAND ===================== */
.cta-band { background: linear-gradient(150deg, var(--teal-700), var(--teal-900)); color: #fff; border-radius: var(--r-xl); padding: clamp(28px,4vw,48px); text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-3); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -30%, rgba(43,143,163,.5), transparent 70%); pointer-events: none; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: var(--ivory-2); max-width: 60ch; margin-inline: auto; position: relative; }
.cta-band .hero-cta { justify-content: center; position: relative; margin-top: 22px; }

/* ===================== BREADCRUMBS ===================== */
.crumbs { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 12px 0; font-size: 13.5px; color: var(--muted); }
.crumbs li { margin: 0; display: flex; align-items: center; gap: 6px; }
.crumbs li:not(:last-child)::after { content: "›"; color: var(--muted); }
.crumbs a { color: var(--muted); font-weight: 600; }
.crumbs a:hover { color: var(--orange-link); }
.crumbs li[aria-current] { color: var(--navy); font-weight: 700; }

/* ===================== RG / 18+ NOTE ===================== */
.rg-note { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--info-600); border-radius: var(--r-md); padding: 18px 20px; }
.rg-note .age { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 2.5px solid var(--orange-600); color: var(--orange-700); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 15px; }
.rg-note p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* prose helper */
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.2em; color: var(--navy-2); }
.anchor { scroll-margin-top: 90px; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--teal-900); color: var(--ivory-2); padding-block: clamp(36px,5vw,56px) 0; }
.footer-top { display: grid; gap: 32px; grid-template-columns: 1fr; padding-bottom: 32px; }
.footer-col .ftitle { color: #fff; font-family: var(--font-head); font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-col a { color: var(--ivory-2); font-size: 14.5px; }
.footer-col a:hover { color: var(--orange-400); }
.footer-brand p { font-size: 14px; color: var(--ivory-2); max-width: 38ch; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 16px; }
.age-badge { width: 40px; height: 40px; border-radius: 50%; border: 2.5px solid var(--orange-500); color: var(--orange-400); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 13px; flex-shrink: 0; }
.pay-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.pay-pill { font-size: 11.5px; font-weight: 700; letter-spacing: .03em; color: var(--ivory); background: rgba(255,255,255,.08); border: 1px solid var(--line-teal); border-radius: 6px; padding: 5px 9px; }
.pay-icon { display: inline-flex; border-radius: 5px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.35); transition: transform .15s; cursor: default; }
.pay-icon:hover { transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid var(--line-teal); padding-block: 20px 28px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: 13px; color: var(--ivory-2); }
.footer-bottom .rg-line { max-width: 70ch; }

/* ===================== MOBILE MENU ===================== */
.mobile-menu { position: fixed; inset: 0; z-index: 150; visibility: hidden; }
.mobile-menu .scrim { position: absolute; inset: 0; background: rgba(15,30,36,.6); opacity: 0; transition: opacity .25s var(--ease); }
.mobile-menu .panel { position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px); background: var(--teal-800); box-shadow: -10px 0 40px rgba(0,0,0,.4); transform: translateX(100%); transition: transform .28s var(--ease); display: flex; flex-direction: column; overflow-y: auto; }
body.menu-open .mobile-menu { visibility: visible; }
body.menu-open .mobile-menu .scrim { opacity: 1; }
body.menu-open .mobile-menu .panel { transform: translateX(0); }
.mm-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line-teal); }
.mm-close { background: none; border: 0; color: #fff; cursor: pointer; padding: 6px; }
.mm-nav { list-style: none; margin: 0; padding: 10px; display: grid; gap: 2px; }
.mm-nav a { display: block; color: var(--ivory); font-weight: 600; padding: 13px 14px; border-radius: var(--r-sm); font-size: 16px; }
.mm-nav a:hover, .mm-nav a[aria-current="page"] { background: rgba(255,255,255,.08); color: var(--orange-400); text-decoration: none; }
.mm-cta { padding: 14px 16px 28px; display: grid; gap: 10px; border-top: 1px solid var(--line-teal); margin-top: auto; }

/* mobile split: stacked with gap */
.split { display: flex; flex-direction: column; gap: var(--sp-8); }

/* ===================== RESPONSIVE ===================== */
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .page-cards { grid-template-columns: 1fr 1fr; }
  .proscons { grid-template-columns: 1fr 1fr; }
  .game-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 940px) {
  .nav-main { display: block; }
  .burger { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .page-cards { grid-template-columns: repeat(3, 1fr); }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .steps.steps-2 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; }
  .split { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-10); align-items: start; }
}

@media (max-width: 939px) {
  .bonus-tiers { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .toc-list { columns: 1; }
  .bonus-tiers { grid-template-columns: repeat(2, 1fr); }
  .header-actions .btn-hide-sm { display: none; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}

/* go / interstitial pages */
.go-page { background: var(--teal-dark); min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.go-wrap { width: 100%; padding: var(--sp-6); display: flex; justify-content: center; }
.go-card { background: var(--navy); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: var(--sp-10) var(--sp-8); max-width: 440px; width: 100%; text-align: center; box-shadow: var(--shadow-3); }
.go-card h1 { color: var(--ivory); font-size: clamp(18px, 2.5vw, 22px); margin: var(--sp-4) 0 var(--sp-2); }
.go-card p { color: var(--ivory-2); margin: 0 0 var(--sp-6); }
.go-logo { margin-bottom: var(--sp-5); }
.go-logo img { max-width: 160px; height: auto; }
.go-back { display: block; margin-top: var(--sp-4); color: var(--ivory-2); font-size: 14px; text-decoration: underline; }
.go-back:hover { color: var(--orange); }
.spin { width: 40px; height: 40px; border: 3px solid rgba(255,255,255,.15); border-top-color: var(--orange); border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto var(--sp-3); }
@keyframes spin { to { transform: rotate(360deg); } }
