/* ============================================================
   FRANCE CHANCE GAGNANTE — MAIN STYLESHEET
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --bg-base:        #050d1a;
  --bg-surface:     #0a1830;
  --bg-card:        #0e2040;
  --bg-card-hover:  #122650;
  --border-subtle:  rgba(201, 168, 75, 0.15);
  --border-mid:     rgba(201, 168, 75, 0.3);

  --gold-dark:      #8a6d18;
  --gold:           #c9a84b;
  --gold-mid:       #e0bb5f;
  --gold-light:     #f5d880;
  --gold-glow:      rgba(201, 168, 75, 0.25);

  --text-primary:   #f0f4ff;
  --text-secondary: #8aa4c4;
  --text-muted:     #4a6280;

  --success:        #2dd4a0;
  --warning:        #f59e0b;
  --error:          #ef4444;
  --info:           #38bdf8;

  --shadow-sm:      0 2px 8px rgba(0,0,0,.4);
  --shadow-md:      0 8px 32px rgba(0,0,0,.5);
  --shadow-lg:      0 20px 60px rgba(0,0,0,.7);
  --shadow-gold:    0 0 40px rgba(201,168,75,.2);

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      28px;

  --nav-h:          72px;
  --font-head:      'Playfair Display', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;

  --transition:     all .25s cubic-bezier(.4,0,.2,1);
  --ease-out:       cubic-bezier(.0,.0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
body.age-gated { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-mid));
  color: #07111e;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,75,.35);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-light));
  color: #07111e;
  box-shadow: 0 6px 30px rgba(201,168,75,.55);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold-glow);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255,255,255,.07);
  color: var(--text-primary);
  border-color: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  transform: translateY(-2px);
}
.btn--xl { padding: 15px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn--lg { padding: 14px 28px; font-size: .95rem; }
.btn--sm { padding: 8px 16px; font-size: .8rem; border-radius: var(--radius-sm); }
.btn--full { width: 100%; justify-content: center; }

/* ── Section Shared ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,75,.1);
  border: 1px solid var(--border-subtle);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.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; }

/* ── Age Gate ── */
.age-gate {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
}
.age-gate.hidden { display: none; }

.age-gate__backdrop {
  position: absolute; inset: 0;
  background: rgba(3, 8, 18, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.age-gate__card {
  position: relative; z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  animation: slideUp .5s var(--ease-out);
}
.age-gate__icon { margin-bottom: 16px; }
.age-gate__logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.age-gate__logo .logo-star { font-size: 1.2rem; }
.age-gate__title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.age-gate__text {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.age-gate__sub {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.age-gate__legal {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.age-gate__legal a { color: var(--text-muted); text-decoration: underline; }

.age-gate__denied {
  position: relative; z-index: 1;
  text-align: center;
}
.denied-card {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  animation: slideUp .5s var(--ease-out);
}
.denied-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
  color: var(--error);
}
.denied-card h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--error);
  margin-bottom: 16px;
}
.denied-card p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  width: calc(100% - 48px);
  max-width: 900px;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  animation: slideUpFade .4s var(--ease-out);
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
}
.cookie-banner__text { flex: 1; }
.cookie-banner__text strong { font-size: .95rem; color: var(--text-primary); }
.cookie-banner__text p {
  font-size: .82rem;
  color: var(--text-secondary);
  margin-top: 4px;
}
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5, 13, 26, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.2;
}
.logo-accent { color: var(--gold); }
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,.06); }
.nav-link--resp {
  color: var(--gold);
  border: 1px solid var(--border-subtle);
}
.nav-link--resp:hover { background: var(--gold-glow); color: var(--gold-light); }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.navbar__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,75,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,75,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(201,168,75,.4) 0%, rgba(5,13,26,0) 70%);
  animation: orb1 12s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  bottom: -100px; left: -150px;
  background: radial-gradient(circle, rgba(56,189,248,.25) 0%, rgba(5,13,26,0) 70%);
  animation: orb2 15s ease-in-out infinite alternate;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  top: 40%; left: 50%;
  background: radial-gradient(circle, rgba(201,168,75,.15) 0%, rgba(5,13,26,0) 70%);
  animation: orb3 10s ease-in-out infinite alternate;
}
@keyframes orb1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-60px, 40px) scale(1.1); } }
@keyframes orb2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(40px, -50px) scale(1.15); } }
@keyframes orb3 { 0% { transform: translate(-50%,-50%) scale(1); } 100% { transform: translate(-50%,-50%) scale(1.3); } }

.hero__content {
  position: relative; z-index: 1;
  padding: 80px 24px;
  max-width: 800px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,75,.1);
  border: 1px solid var(--border-subtle);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45,212,160,.5); }
  50% { box-shadow: 0 0 0 6px rgba(45,212,160,0); }
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.title-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  width: fit-content;
}
.stat { text-align: center; }
.stat__value {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label {
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ── Platforms ── */
.platforms {
  padding: 100px 0;
  background: var(--bg-base);
}
.platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.platform-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
}
.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: var(--border-mid);
}
.platform-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-md), var(--shadow-gold);
}
.platform-card--featured:hover {
  box-shadow: 0 0 0 1px var(--gold-mid), var(--shadow-lg), 0 0 60px rgba(201,168,75,.3);
}

.card-ribbon {
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px 12px;
  border-bottom-right-radius: var(--radius-md);
  min-width: 64px;
}
.card-ribbon--1 {
  background: linear-gradient(160deg, var(--gold), var(--gold-dark));
  box-shadow: 2px 2px 12px rgba(201,168,75,.4);
}
.card-ribbon--2 {
  background: linear-gradient(160deg, #8eaec8, #5a7a98);
  box-shadow: 2px 2px 12px rgba(90,122,152,.3);
}
.card-ribbon--3 {
  background: linear-gradient(160deg, #c8936a, #8b5c3a);
  box-shadow: 2px 2px 12px rgba(200,147,106,.3);
}
.ribbon-label {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.ribbon-text {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}

.card-image-wrap {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-card-hover));
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 16px;
  display: block;
}

.card-body { padding: 24px; }
.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.card-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.card-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.stars { display: flex; gap: 2px; }
.star { font-size: .9rem; color: var(--text-muted); }
.star--full { color: var(--gold); }
.star--half { color: var(--gold); position: relative; }
.rating-score {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.rating-max { font-size: .75rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 500; }

.card-bonus {
  background: rgba(201,168,75,.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 14px;
}
.bonus-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 5px;
}
.bonus-value {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.tag {
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text-secondary);
}
.tag--green {
  background: rgba(45,212,160,.1);
  border-color: rgba(45,212,160,.25);
  color: var(--success);
}

.card-payments {
  margin-bottom: 20px;
}
.payment-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}
.payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pay-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 5px 9px;
  height: 30px;
}

.card-disclaimer {
  text-align: center;
  font-size: .7rem;
  color: var(--text-muted);
  padding: 12px 16px;
  border-top: 1px solid var(--border-subtle);
}
.card-disclaimer a { color: var(--text-muted); text-decoration: underline; }
.platforms__legal {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  padding: 20px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

/* ── Why Us ── */
.why-us {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 50%, var(--bg-base) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}
.why-card__icon {
  width: 52px; height: 52px;
  background: rgba(201,168,75,.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-card__icon {
  background: rgba(201,168,75,.18);
  border-color: var(--gold);
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.why-card p {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Responsible Banner ── */
.responsible-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(239,68,68,.05) 0%, rgba(201,168,75,.05) 100%);
  border-top: 1px solid rgba(239,68,68,.2);
  border-bottom: 1px solid rgba(239,68,68,.2);
}
.responsible-banner__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--bg-card);
  border: 1px solid rgba(239,68,68,.25);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
}
.resp-icon { color: var(--warning); flex-shrink: 0; }
.resp-content { flex: 1; }
.resp-content h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.resp-content p {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.resp-content a { color: var(--gold); font-weight: 600; }
.resp-content a:hover { color: var(--gold-light); }

/* ── FAQ ── */
.faq {
  padding: 100px 0;
  background: var(--bg-base);
}
.faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open { border-color: var(--border-mid); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); background: rgba(255,255,255,.03); }
.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform .3s var(--ease-out);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out), padding .3s;
}
.faq-answer p {
  padding: 0 24px 22px;
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-answer a { color: var(--gold); }
.faq-answer a:hover { color: var(--gold-light); }

/* ── Footer ── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 72px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer__logo { margin-bottom: 20px; }
.footer__desc {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 440px;
}
.footer__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--error);
  color: #fff;
  font-weight: 900;
  font-size: .8rem;
  border-radius: var(--radius-sm);
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  font-size: .75rem;
  font-weight: 600;
  padding: 7px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  font-size: .875rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer__col a:hover { color: var(--text-primary); padding-left: 4px; }

.footer__disclaimer {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
  margin-bottom: 24px;
}
.footer__disclaimer p {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer__disclaimer p:last-child { margin-bottom: 0; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: .8rem;
  color: var(--text-muted);
}
.footer__hotline { color: var(--text-secondary) !important; }

/* ── Sub-page Layout ── */
.subpage-wrap {
  padding-top: var(--nav-h);
  min-height: 100vh;
}
.subpage-hero {
  padding: 64px 0 48px;
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-base) 100%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,75,.08) 0%, transparent 70%);
  pointer-events: none;
}
.subpage-hero .container { position: relative; }
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  margin-bottom: 24px;
  transition: var(--transition);
  text-decoration: none;
}
.back-btn:hover { color: var(--text-primary); background: rgba(255,255,255,.09); }
.subpage-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.subpage-meta {
  font-size: .85rem;
  color: var(--text-muted);
}
.subpage-content {
  padding: 64px 0;
  max-width: 820px;
  margin: 0 auto;
}
.subpage-content h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 16px;
}
.subpage-content h2:first-child { margin-top: 0; }
.subpage-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin: 28px 0 12px;
}
.subpage-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .95rem;
}
.subpage-content ul, .subpage-content ol {
  color: var(--text-secondary);
  margin: 0 0 16px 0;
  padding-left: 24px;
  font-size: .95rem;
  line-height: 1.8;
}
.subpage-content ul { list-style: disc; }
.subpage-content ol { list-style: decimal; }
.subpage-content li { margin-bottom: 6px; }
.subpage-content a { color: var(--gold); text-decoration: underline; }
.subpage-content a:hover { color: var(--gold-light); }
.subpage-content .highlight-box {
  background: rgba(201,168,75,.08);
  border: 1px solid var(--border-mid);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.subpage-content .highlight-box p { margin-bottom: 0; }
.subpage-content .warn-box {
  background: rgba(239,68,68,.07);
  border: 1px solid rgba(239,68,68,.25);
  border-left: 4px solid var(--error);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.subpage-content .warn-box p { margin-bottom: 0; }
.subpage-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 36px 0;
}

/* ── Keyframes ── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .platforms__grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .navbar__menu {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(5,13,26,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px;
    gap: 4px;
    z-index: 100;
  }
  .navbar__menu.open { display: flex; }
  .navbar__burger { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius-md); }
  .platforms__grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 20px; padding: 20px 24px; width: 100%; }
  .stat-divider { width: 60px; height: 1px; }
  .hero__actions { flex-direction: column; }
  .responsible-banner__inner { flex-direction: column; text-align: center; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cookie-banner__inner { flex-direction: column; gap: 16px; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}

@media (max-width: 480px) {
  .age-gate__card { padding: 36px 24px; }
  .footer__nav { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.2rem; }
}
