/* ==============================================
   PRIZE GAMING STORIES — Casino Dark Theme
   Google Ads Safe · Social Gaming Framing
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  /* Casino dark palette */
  --bg-base:     #07090A;
  --bg-surface:  #0C1010;
  --bg-elevated: #111918;
  --bg-card:     rgba(255,255,255,0.04);
  --bg-card-h:   rgba(255,255,255,0.07);

  /* Felt green hints */
  --green:       #1A6B3A;
  --green-light: #24943F;
  --green-glow:  rgba(26,107,58,0.25);
  --green-dim:   rgba(26,107,58,0.08);

  /* Gold — primary accent */
  --gold:        #E8A820;
  --gold-light:  #FFCC55;
  --gold-pale:   #FDE68A;
  --gold-glow:   rgba(232,168,32,0.28);
  --gold-grad:   linear-gradient(135deg,#C8860A,#FFCC55);
  --gold-grad2:  linear-gradient(135deg,#FFCC55,#E8A820);

  /* Borders */
  --border:        rgba(255,255,255,0.07);
  --border-gold:   rgba(232,168,32,0.3);
  --border-green:  rgba(26,107,58,0.3);

  /* Text */
  --text:           #FFFFFF;
  --text-secondary: rgba(255,255,255,0.58);
  --text-muted:     rgba(255,255,255,0.30);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 9999px;

  --container: 1200px;
  --header-h:  70px;
  --font:      'Inter', sans-serif;
  --font-serif:'Playfair Display', Georgia, serif;
  --t:         0.22s ease;
  --t-s:       0.38s ease;
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html  { scroll-behavior:smooth; }
body  {
  font-family: var(--font);
  background:  var(--bg-base);
  color:       var(--text);
  line-height: 1.65;
  overflow-x:  hidden;
  -webkit-font-smoothing: antialiased;
}
img { display:block; max-width:100%; }
a   { text-decoration:none; color:inherit; }
ul  { list-style:none; }
button { cursor:pointer; font-family:var(--font); border:none; background:none; }

/* ─── Typography ────────────────────────────── */
h1,h2,h3,h4 { font-weight:800; line-height:1.15; letter-spacing:-.02em; }
h1 { font-size:clamp(2.4rem,6vw,4.8rem); }
h2 { font-size:clamp(1.8rem,4vw,3rem); }
h3 { font-size:clamp(1.15rem,2.5vw,1.6rem); }
h4 { font-size:clamp(1rem,2vw,1.2rem); }
p  { color:var(--text-secondary); line-height:1.78; }

.serif  { font-family:var(--font-serif); }
.gold-text {
  background:var(--gold-grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.green-text { color:var(--green-light); }

/* ─── Container ─────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.2rem,4vw,2.5rem);
}
section { padding: 90px 0; }

/* ─── Buttons ───────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 32px; border-radius:var(--r-full);
  font-size:.95rem; font-weight:700; letter-spacing:.01em;
  transition:all var(--t); white-space:nowrap;
}
.btn-gold {
  background:var(--gold-grad);
  color:#07090A;
  box-shadow:0 4px 28px var(--gold-glow);
}
.btn-gold:hover { box-shadow:0 6px 44px rgba(232,168,32,0.5); transform:translateY(-2px); }
.btn-outline {
  background:transparent; color:var(--text);
  border:1.5px solid var(--border);
  backdrop-filter:blur(10px);
}
.btn-outline:hover { border-color:var(--border-gold); color:var(--gold-light); transform:translateY(-2px); }
.btn-sm { padding:10px 22px; font-size:.85rem; }
.btn-lg { padding:18px 44px; font-size:1.05rem; }

/* ─── Badge ─────────────────────────────────── */
.badge {
  display:inline-flex; align-items:center; gap:6px;
  padding:5px 14px; border-radius:var(--r-full);
  font-size:.72rem; font-weight:700;
  letter-spacing:.07em; text-transform:uppercase;
}
.badge-gold {
  background:rgba(232,168,32,0.12);
  border:1px solid var(--border-gold);
  color:var(--gold-light);
}
.badge-green {
  background:rgba(26,107,58,0.15);
  border:1px solid var(--border-green);
  color:#4ADE80;
}
.badge-dot::before {
  content:'';width:6px;height:6px;border-radius:50%;
  background:currentColor;animation:pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:.4;transform:scale(.75);}
}

/* ─── Section header ────────────────────────── */
.section-eyebrow {
  font-size:.72rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold-light);
}
.section-header { text-align:center; margin-bottom:clamp(48px,7vw,72px); }
.section-header h2 { margin-bottom:14px; }
.section-header p  { max-width:620px; margin:0 auto; font-size:1.05rem; }

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.header {
  position:fixed; top:0; left:0; right:0;
  height:var(--header-h); z-index:1000;
  transition:background var(--t-s), border-color var(--t-s);
  border-bottom:1px solid transparent;
}
.header.scrolled {
  background:rgba(7,9,10,0.92);
  backdrop-filter:blur(24px);
  border-bottom-color:var(--border);
  box-shadow:0 1px 40px rgba(0,0,0,0.5);
}
.header-inner {
  height:var(--header-h);
  display:flex; align-items:center;
  justify-content:space-between; gap:32px;
}
.logo {
  display:flex; align-items:center; gap:10px;
  font-size:1.1rem; font-weight:800;
  letter-spacing:-.02em; flex-shrink:0;
}
.logo-gem {
  width:34px; height:34px;
  background:var(--gold-grad);
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; box-shadow:0 0 16px var(--gold-glow);
}
.logo em { font-style:normal; color:var(--gold-light); }

.nav { display:flex; align-items:center; gap:2px; }
.nav a {
  padding:8px 14px; font-size:.88rem; font-weight:500;
  color:var(--text-secondary); border-radius:var(--r-sm);
  transition:color var(--t), background var(--t);
}
.nav a:hover { color:var(--text); background:rgba(255,255,255,0.05); }

.header-actions { display:flex; align-items:center; gap:12px; flex-shrink:0; }

.burger {
  display:none; flex-direction:column; gap:5px;
  padding:6px; border-radius:var(--r-sm);
  background:rgba(255,255,255,0.05);
}
.burger span {
  display:block; width:22px; height:2px;
  background:var(--text); border-radius:2px; transition:all var(--t);
}
.burger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.burger.open span:nth-child(2){opacity:0;}
.burger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}

.mobile-nav {
  display:none; position:fixed;
  top:var(--header-h); left:0; right:0; bottom:0;
  background:rgba(7,9,10,0.97);
  backdrop-filter:blur(24px); z-index:999;
  flex-direction:column; padding:28px 20px; gap:8px;
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  padding:15px 18px; font-size:1.05rem; font-weight:600;
  color:var(--text-secondary); border-radius:var(--r-md);
  border:1px solid var(--border); transition:all var(--t);
}
.mobile-nav a:hover { color:var(--gold-light); border-color:var(--border-gold); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center;
  overflow:hidden; padding-top:var(--header-h);
}
#hero-canvas {
  position:absolute; inset:0;
  width:100%; height:100%; z-index:0;
}
.hero-photo {
  position:absolute; inset:0; z-index:0;
}
.hero-photo img {
  width:100%; height:100%; object-fit:cover;
  opacity:.18; display:block;
}
.hero-bg {
  position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(26,107,58,0.20) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 25%, rgba(232,168,32,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 50% 110%, rgba(0,0,0,0.85) 0%, transparent 65%),
    linear-gradient(180deg, rgba(7,9,10,0.3) 0%, rgba(7,9,10,0.1) 50%, rgba(7,9,10,0.8) 100%);
}

/* Floating card silhouettes */
.hero-silhouettes {
  position:absolute; inset:0; z-index:2;
  pointer-events:none; overflow:hidden;
}
.sil {
  position:absolute; opacity:.055;
  animation:float-sil 14s ease-in-out infinite;
}
.sil:nth-child(1){top:12%;right:7%;  width:110px;animation-delay:0s;}
.sil:nth-child(2){top:60%;right:20%; width:75px; animation-delay:-3.5s;}
.sil:nth-child(3){top:20%;left:5%;  width:85px; animation-delay:-7s;}
.sil:nth-child(4){top:70%;left:10%; width:65px; animation-delay:-10s;}
.sil:nth-child(5){top:35%;right:42%;width:55px; animation-delay:-5s;}
.sil:nth-child(6){top:80%;right:8%; width:90px; animation-delay:-2s;}
@keyframes float-sil {
  0%,100%{transform:translateY(0) rotate(0deg);}
  33%{transform:translateY(-20px) rotate(5deg);}
  66%{transform:translateY(12px) rotate(-4deg);}
}

.hero .container { position:relative; z-index:3; }
.hero-content { max-width:820px; padding:60px 0; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:10px; margin-bottom:24px; }
.hero-label {
  font-size:.78rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--gold-light);
}
.hero-title { margin-bottom:22px; line-height:1.1; }
.hero-title em { font-style:normal; }
.hero-desc {
  font-size:clamp(.98rem,2vw,1.18rem);
  max-width:600px; margin-bottom:38px;
  color:rgba(255,255,255,0.62); line-height:1.82;
}
.hero-cta { display:flex; flex-wrap:wrap; gap:14px; align-items:center; margin-bottom:48px; }
.hero-notice {
  font-size:.76rem; color:var(--text-muted);
  display:flex; align-items:center; gap:8px;
}
.hero-notice::before { content:''; width:18px; height:1px; background:var(--text-muted); }

/* Live counter strip */
.hero-counters {
  display:flex; flex-wrap:wrap; gap:28px;
  padding:24px 28px;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border-gold);
  border-radius:var(--r-lg);
  margin-top:16px;
  max-width:580px;
}
.hc-item { display:flex; flex-direction:column; gap:3px; }
.hc-val {
  font-size:1.5rem; font-weight:800;
  background:var(--gold-grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  line-height:1;
}
.hc-label { font-size:.72rem; color:var(--text-muted); font-weight:500; text-transform:uppercase; letter-spacing:.06em; }

/* ═══════════════════════════════════════════════
   INTRO STRIP
   ═══════════════════════════════════════════════ */
.intro-strip {
  background:var(--bg-surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:52px 0;
}
.intro-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:32px;
}
.intro-item { text-align:center; }
.intro-icon { font-size:2rem; margin-bottom:10px; }
.intro-item h4 { font-size:1rem; margin-bottom:6px; }
.intro-item p  { font-size:.85rem; }

/* ═══════════════════════════════════════════════
   STORIES / TESTIMONIALS
   ═══════════════════════════════════════════════ */
.stories-section { background:var(--bg-base); }
.stories-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.story-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  overflow:hidden;
  transition:all var(--t-s);
  display:flex; flex-direction:column;
}
.story-card:hover {
  border-color:var(--border-gold);
  transform:translateY(-5px);
  box-shadow:0 8px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,168,32,0.08);
}
.story-top {
  padding:28px 28px 20px;
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; gap:14px;
}
.story-avatar {
  width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; font-weight:800;
  flex-shrink:0; position:relative;
  overflow:hidden;
  border:2px solid rgba(232,168,32,0.45);
  box-shadow:0 0 18px rgba(232,168,32,0.2);
}
.story-avatar img {
  width:100%; height:100%;
  object-fit:cover; object-position:top center;
  display:block; border-radius:50%;
}
.story-avatar::after {
  content:''; position:absolute;
  inset:0; border-radius:50%;
  border:2px solid rgba(232,168,32,0.3);
  pointer-events:none;
}
.story-meta strong { display:block; font-size:.95rem; font-weight:700; margin-bottom:2px; }
.story-meta span   { font-size:.78rem; color:var(--text-muted); }
.story-win {
  margin-left:auto; flex-shrink:0;
  font-size:1.25rem; font-weight:800;
  background:var(--gold-grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  text-align:right;
}
.story-win small { display:block; font-size:.68rem; color:var(--text-muted); font-weight:500; }

.story-body { padding:22px 28px 28px; flex:1; }
.story-game {
  display:inline-flex; align-items:center; gap:6px;
  font-size:.74rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.07em;
  color:var(--green-light);
  margin-bottom:14px;
  padding:4px 10px;
  background:var(--green-dim);
  border-radius:var(--r-full);
  border:1px solid var(--border-green);
}
.story-text { font-size:.9rem; line-height:1.82; color:rgba(255,255,255,0.65); }
.story-stars { color:var(--gold); font-size:.9rem; margin-top:16px; letter-spacing:2px; }

/* ═══════════════════════════════════════════════
   TOP GAMES
   ═══════════════════════════════════════════════ */
.games-section { background:var(--bg-surface); }
.games-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.game-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:28px;
  transition:all var(--t-s);
  position:relative; overflow:hidden;
}
.game-card::before {
  content:''; position:absolute;
  top:0; left:0; right:0; height:3px;
  background:var(--gold-grad); opacity:0;
  transition:opacity var(--t);
}
.game-card:hover { border-color:var(--border-gold); transform:translateY(-4px); box-shadow:0 0 40px var(--gold-glow); }
.game-card:hover::before { opacity:1; }

.game-rank {
  position:absolute; top:12px; right:12px;
  font-size:.72rem; font-weight:800;
  color:var(--gold-light); letter-spacing:.06em;
  background:rgba(7,9,10,0.75);
  border:1px solid rgba(232,168,32,0.4);
  padding:4px 12px; border-radius:var(--r-full);
  z-index:3; backdrop-filter:blur(8px);
}
.game-img-wrap {
  position:relative; margin:-28px -28px 20px;
  height:180px; overflow:hidden; border-radius:var(--r-lg) var(--r-lg) 0 0;
}
.game-img-wrap img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .5s ease;
  display:block;
}
.game-card:hover .game-img-wrap img { transform:scale(1.06); }
.game-img-overlay {
  position:absolute; inset:0;
  background:linear-gradient(0deg,rgba(7,9,10,0.88) 0%,rgba(7,9,10,0.15) 55%,transparent 100%);
}
.game-img-wrap .game-rank {
  position:absolute; bottom:12px; right:14px; top:auto;
}
.game-icon {
  width:48px; height:48px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; margin-bottom:14px;
  background:rgba(232,168,32,0.1);
  border:1px solid rgba(232,168,32,0.18);
}
.game-name { font-size:1.1rem; font-weight:800; margin-bottom:8px; }
.game-type {
  font-size:.72rem; color:var(--green-light);
  font-weight:700; text-transform:uppercase;
  letter-spacing:.07em; margin-bottom:12px;
}
.game-desc { font-size:.86rem; color:var(--text-secondary); margin-bottom:18px; }
.game-stats {
  display:flex; gap:16px;
  padding-top:16px;
  border-top:1px solid var(--border);
}
.gs-item { display:flex; flex-direction:column; gap:2px; }
.gs-val  { font-size:.92rem; font-weight:700; color:var(--gold-light); }
.gs-lbl  { font-size:.68rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.05em; }
.game-tag {
  display:inline-flex; align-items:center;
  padding:4px 10px; border-radius:var(--r-full);
  font-size:.7rem; font-weight:700;
  background:rgba(232,168,32,0.1);
  border:1px solid var(--border-gold);
  color:var(--gold-light); margin-top:14px;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════ */
.how-section { background:var(--bg-base); }
.how-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  position:relative;
}
.how-grid::before {
  content:''; position:absolute;
  top:36px; left:calc(12.5% + 12px); right:calc(12.5% + 12px);
  height:1px;
  background:linear-gradient(90deg,var(--green-light),var(--gold));
  opacity:.2; z-index:0;
}
.how-step { text-align:center; position:relative; z-index:1; }
.how-num {
  width:52px; height:52px; border-radius:50%;
  background:var(--bg-elevated);
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 18px;
  font-weight:800; font-size:1.05rem;
  color:var(--gold-light);
  transition:all var(--t);
}
.how-step:hover .how-num {
  background:var(--gold-grad); color:#07090A;
  border-color:transparent; box-shadow:0 0 24px var(--gold-glow);
}
.how-step h3 { font-size:1rem; margin-bottom:10px; }
.how-step p  { font-size:.85rem; }

/* ═══════════════════════════════════════════════
   KEYWORDS / SEO SECTION
   (Presented as "Why Players Choose Online Games")
   ═══════════════════════════════════════════════ */
.keys-section { background:var(--bg-surface); }
.keys-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(32px,6vw,80px);
  align-items:center;
}
.keys-text h2 { margin-bottom:20px; }
.keys-text p  { margin-bottom:20px; }
.keys-tags {
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:28px;
}
.key-tag {
  padding:7px 16px; border-radius:var(--r-full);
  font-size:.78rem; font-weight:600;
  background:var(--bg-card);
  border:1px solid var(--border);
  color:var(--text-secondary);
  transition:all var(--t);
}
.key-tag:hover { border-color:var(--border-gold); color:var(--gold-light); }

.keys-cards {
  display:grid; grid-template-columns:1fr 1fr;
  gap:14px;
}
.key-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:20px;
  transition:border-color var(--t);
}
.key-card:hover { border-color:var(--border-gold); }
.kc-icon { font-size:1.6rem; margin-bottom:10px; }
.key-card h4 { font-size:.9rem; margin-bottom:6px; }
.key-card p  { font-size:.8rem; }

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq-section { background:var(--bg-base); }
.faq-list {
  max-width:760px; margin:0 auto;
  display:flex; flex-direction:column; gap:10px;
}
.faq-item {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-md); overflow:hidden; transition:border-color var(--t);
}
.faq-item.open { border-color:var(--border-gold); }
.faq-q {
  display:flex; align-items:center;
  justify-content:space-between; gap:16px;
  padding:20px 24px; cursor:pointer; transition:background var(--t);
}
.faq-q:hover { background:rgba(255,255,255,0.03); }
.faq-q h3 { font-size:.96rem; font-weight:600; flex:1; line-height:1.4; }
.faq-icon {
  width:28px; height:28px; border-radius:50%;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; font-size:1rem;
  color:var(--text-secondary); transition:all var(--t);
}
.faq-item.open .faq-icon {
  background:var(--gold-grad); border-color:transparent;
  color:#07090A; transform:rotate(45deg);
}
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item.open .faq-a { max-height:600px; }
.faq-a p { padding:0 24px 22px; font-size:.9rem; line-height:1.82; }

/* ═══════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════ */
.cta-section {
  background:var(--bg-surface);
  border-top:1px solid var(--border);
}
.cta-card {
  background:var(--bg-elevated);
  border:1px solid var(--border-gold);
  border-radius:var(--r-xl);
  padding:clamp(48px,8vw,88px) clamp(28px,6vw,72px);
  text-align:center; position:relative; overflow:hidden;
}
.cta-card::before {
  content:''; position:absolute;
  top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold-light),transparent);
}
.cta-glow {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:600px; height:300px; border-radius:50%;
  background:radial-gradient(ellipse,rgba(232,168,32,0.1) 0%,transparent 70%);
  pointer-events:none;
}
.cta-card h2 { margin-bottom:16px; }
.cta-card > p { margin-bottom:36px; max-width:520px; margin-left:auto; margin-right:auto; }
.cta-actions { display:flex; justify-content:center; flex-wrap:wrap; gap:14px; }
.cta-foot { margin-top:24px; font-size:.76rem; color:var(--text-muted); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background:var(--bg-surface);
  border-top:1px solid var(--border);
  padding:64px 0 32px;
}
.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:48px; margin-bottom:48px;
}
.footer-brand .logo { margin-bottom:16px; }
.footer-brand p { font-size:.87rem; max-width:300px; margin-bottom:20px; }
.footer-disclaimer {
  font-size:.74rem; color:var(--text-muted);
  line-height:1.7; padding:12px 16px;
  background:rgba(255,255,255,0.03);
  border:1px solid var(--border);
  border-radius:var(--r-sm);
}
.footer-col h4 {
  font-size:.76rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.09em;
  color:var(--text-muted); margin-bottom:16px;
}
.footer-col li { margin-bottom:10px; }
.footer-col a {
  font-size:.88rem; color:var(--text-secondary);
  transition:color var(--t);
}
.footer-col a:hover { color:var(--gold-light); }
.footer-bottom {
  border-top:1px solid var(--border);
  padding-top:24px;
  display:flex; align-items:center;
  justify-content:space-between; flex-wrap:wrap; gap:14px;
}
.footer-bottom p { font-size:.8rem; color:var(--text-muted); }
.footer-badges { display:flex; gap:10px; flex-wrap:wrap; }
.footer-badge {
  padding:4px 12px; border-radius:var(--r-sm);
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);
  font-size:.7rem; font-weight:600;
  text-transform:uppercase; letter-spacing:.05em;
  color:var(--text-muted);
}
.footer-badge.age { color:var(--gold); border-color:rgba(232,168,32,0.2); background:rgba(232,168,32,0.06); }

/* ─── Scroll reveal ──────────────────────────── */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1{transition-delay:.1s;} .reveal-delay-2{transition-delay:.2s;}
.reveal-delay-3{transition-delay:.3s;} .reveal-delay-4{transition-delay:.4s;}
.reveal-delay-5{transition-delay:.5s;} .reveal-delay-6{transition-delay:.6s;}

/* ─── Legal pages ────────────────────────────── */
.page-hero {
  padding-top:calc(var(--header-h) + 56px);
  padding-bottom:52px;
  background:var(--bg-surface);
  border-bottom:1px solid var(--border);
  text-align:center;
}
.page-hero h1 { font-size:clamp(1.8rem,5vw,3rem); margin-bottom:12px; }
.page-meta { font-size:.78rem; color:var(--text-muted); margin-top:14px; display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }
.legal-body {
  max-width:800px; margin:0 auto;
  padding:56px clamp(1.2rem,4vw,2.5rem) 80px;
}
.legal-body h2 { font-size:1.4rem; margin:44px 0 12px; }
.legal-body h3 { font-size:1.05rem; font-weight:600; margin:24px 0 8px; }
.legal-body p, .legal-body li { font-size:.93rem; line-height:1.85; color:var(--text-secondary); margin-bottom:12px; }
.legal-body ul { padding-left:20px; }
.legal-body ul li { list-style:disc; }
.legal-body a { color:var(--gold-light); }
.legal-body a:hover { text-decoration:underline; }

/* ─── Cookie banner ──────────────────────────── */
.cookie-banner {
  position:fixed; bottom:20px; left:50%;
  transform:translateX(-50%);
  z-index:2000;
  background:var(--bg-elevated);
  border:1px solid var(--border-gold);
  border-radius:var(--r-lg);
  padding:18px 24px;
  display:flex; align-items:center; gap:20px;
  max-width:680px; width:calc(100% - 32px);
  box-shadow:0 8px 60px rgba(0,0,0,0.65);
  backdrop-filter:blur(20px);
  transition:all .3s ease;
}
.cookie-banner.hidden { opacity:0; pointer-events:none; transform:translateX(-50%) translateY(20px); }
.cookie-text { flex:1; font-size:.83rem; color:var(--text-secondary); }
.cookie-text a { color:var(--gold-light); }
.cookie-actions { display:flex; gap:10px; flex-shrink:0; }

/* ─── Responsive ─────────────────────────────── */
@media(max-width:1024px){
  .stories-grid  { grid-template-columns:repeat(2,1fr); }
  .games-grid    { grid-template-columns:repeat(2,1fr); }
  .footer-grid   { grid-template-columns:1fr 1fr; }
  .keys-grid     { grid-template-columns:1fr; }
}
@media(max-width:768px){
  :root { --section-py:64px; }
  .nav,.header-actions .btn { display:none; }
  .burger { display:flex; }
  .intro-grid { grid-template-columns:repeat(2,1fr); }
  .stories-grid { grid-template-columns:1fr; }
  .games-grid   { grid-template-columns:1fr; }
  .how-grid     { grid-template-columns:repeat(2,1fr); }
  .how-grid::before { display:none; }
  .footer-grid  { grid-template-columns:1fr; gap:28px; }
  .keys-cards   { grid-template-columns:1fr; }
  .cookie-banner { flex-direction:column; text-align:center; }
  .cookie-actions { width:100%; justify-content:center; }
}
@media(max-width:480px){
  .intro-grid { grid-template-columns:1fr; }
  .how-grid   { grid-template-columns:1fr; }
  .hero-counters { flex-direction:column; gap:16px; }
  .hero-cta { flex-direction:column; }
  .hero-cta .btn { width:100%; }
}
