/* =========================================================
   BonusParisfr — Design System
   ========================================================= */

:root {
  /* Gold / Primary */
  --gold-50:  #FFF9EB;
  --gold-100: #FFF0C2;
  --gold-200: #FFE085;
  --gold-300: #F5C842;
  --gold-400: #E8B84B;
  --gold-500: #D4982A;
  --gold-600: #B8721A;
  --gold-700: #8F5210;
  --gold-800: #6B3A0A;
  --gold-900: #4A2606;

  /* Navy / Dark */
  --navy-900: #0A0D14;
  --navy-800: #0F1420;
  --navy-700: #141A2B;
  --navy-600: #1A2236;
  --navy-500: #202B42;
  --navy-400: #2A3855;
  --navy-300: #3A4F72;
  --navy-200: #5A7099;
  --navy-100: #8A9DBB;
  --navy-50:  #C8D3E8;

  /* Accent Blue */
  --blue-500: #1E6FD9;
  --blue-400: #3B8CF0;
  --blue-300: #6AABF7;

  /* Semantic */
  --success: #2ECC71;
  --warning: #F39C12;
  --error:   #E85444;
  --info:    #3498DB;

  /* Neutrals */
  --white:   #FFFFFF;
  --gray-50: #F8F9FB;
  --gray-100:#F0F2F6;
  --gray-200:#E2E6EF;
  --gray-300:#C8CFDC;
  --gray-400:#9AA5BC;
  --gray-500:#6B7A96;
  --gray-600:#4A5568;
  --gray-700:#2D3748;
  --gray-800:#1A202C;
  --gray-900:#171923;

  /* Typography */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Sora', 'Inter', sans-serif;

  /* Spacing (8px base) */
  --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;

  /* Radii */
  --radius-sm:  6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.1);
  --shadow-md:  0 4px 16px rgba(0,0,0,.2), 0 2px 6px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.28), 0 4px 12px rgba(0,0,0,.16);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.2);
  --shadow-gold: 0 8px 32px rgba(232,184,75,.35);

  /* Transitions */
  --ease-out: cubic-bezier(.25,.46,.45,.94);
  --ease-in-out: cubic-bezier(.45,0,.55,1);
  --dur-fast:   150ms;
  --dur-normal: 280ms;
  --dur-slow:   450ms;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy-50);
  background-color: var(--navy-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  display: block;
  min-width: 320px;
  min-height: 100vh;
  place-items: unset;
}

a {
  color: var(--gold-400);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--gold-300); }

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

ul { list-style: none; }

h1 { font-size: unset; line-height: unset; }

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-normal) var(--ease-out),
              opacity var(--dur-fast);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .01em;
}

.btn:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}

.btn:active { transform: scale(.97); }

/* Sizes */
.btn--sm  { font-size: .8125rem; padding: var(--sp-2) var(--sp-4); }
.btn--md  { font-size: .9375rem; padding: 10px var(--sp-5); }
.btn--lg  { font-size: 1rem;     padding: 13px 28px; }
.btn--xl  { font-size: 1.0625rem; padding: 15px 32px; }
.btn--full { width: 100%; }

/* Variants */
.btn--primary {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 100%);
  box-shadow: 0 10px 40px rgba(232,184,75,.5);
  transform: translateY(-2px);
  color: var(--navy-900);
}

.btn--secondary {
  background: linear-gradient(135deg, var(--navy-400) 0%, var(--navy-600) 100%);
  color: var(--white);
  border: 1px solid var(--navy-300);
}
.btn--secondary:hover {
  background: linear-gradient(135deg, var(--navy-300) 0%, var(--navy-500) 100%);
  transform: translateY(-2px);
  color: var(--white);
}

.btn--bronze {
  background: linear-gradient(135deg, #CD7F32 0%, #8B5513 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(205,127,50,.3);
}
.btn--bronze:hover {
  background: linear-gradient(135deg, #D4915A 0%, #9B6520 100%);
  transform: translateY(-2px);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--gold-400);
  border: 2px solid var(--gold-400);
}
.btn--outline:hover {
  background: rgba(232,184,75,.1);
  color: var(--gold-300);
  border-color: var(--gold-300);
}

.btn--ghost {
  background: transparent;
  color: var(--navy-100);
  border: 1px solid var(--navy-400);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.05);
  color: var(--white);
  border-color: var(--navy-300);
}

.btn--responsible {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn--responsible:hover {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

/* CTA pulse */
.btn--cta { animation: subtle-pulse 3s ease-in-out infinite; }
@keyframes subtle-pulse {
  0%, 100% { box-shadow: var(--shadow-gold); }
  50% { box-shadow: 0 8px 40px rgba(232,184,75,.6); }
}
.btn--cta:hover { animation: none; }

/* =========================================================
   SECTION SHARED
   ========================================================= */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(232,184,75,.1);
  border: 1px solid rgba(232,184,75,.25);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-4);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--navy-100);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

/* =========================================================
   AGE GATE
   ========================================================= */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 18, .92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.age-gate__card {
  position: relative;
  z-index: 1;
  background: var(--navy-700);
  border: 1px solid rgba(232,184,75,.25);
  border-radius: var(--radius-xl);
  padding: var(--sp-12) var(--sp-10);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(232,184,75,.08);
  animation: gate-appear var(--dur-slow) var(--ease-out) both;
}

@keyframes gate-appear {
  from { opacity: 0; transform: scale(.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

.age-gate__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.age-gate__site-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
}

.age-gate__title {
  font-size: 1.625rem;
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.age-gate__text {
  font-size: .9375rem;
  color: var(--navy-100);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}

.age-gate__warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: .8125rem;
  color: var(--gold-400);
  background: rgba(232,184,75,.08);
  border: 1px solid rgba(232,184,75,.18);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-8);
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.age-gate__refused {
  position: relative;
  z-index: 1;
  text-align: center;
  animation: gate-appear var(--dur-slow) var(--ease-out) both;
}
.age-gate__refused h2 {
  color: var(--error);
  font-size: 1.75rem;
  margin: var(--sp-5) 0 var(--sp-3);
}
.age-gate__refused p {
  color: var(--navy-100);
  font-size: .9375rem;
  max-width: 380px;
}
.age-gate__refused a { color: var(--gold-400); text-decoration: underline; }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: var(--sp-4) var(--sp-6);
  background: var(--navy-700);
  border-top: 1px solid rgba(232,184,75,.2);
  backdrop-filter: blur(12px);
  animation: slide-up var(--dur-slow) var(--ease-out) both;
}
@keyframes slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner__inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  flex: 1;
  min-width: 240px;
}

.cookie-banner__text p {
  font-size: .875rem;
  color: var(--navy-100);
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--gold-400);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,13,20,.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background var(--dur-normal) var(--ease-out),
              box-shadow var(--dur-normal) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(10,13,20,.95);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.navbar__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.navbar__brand--accent { color: var(--gold-400); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy-100);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.06);
}

.nav-link--responsible {
  color: var(--gold-400);
  border: 1px solid rgba(232,184,75,.3);
}

.nav-link--responsible:hover {
  background: rgba(232,184,75,.1);
  color: var(--gold-300);
}

/* Mobile toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  border-radius: var(--radius-sm);
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur-normal), opacity var(--dur-normal);
}

.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,184,75,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,184,75,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 8s ease-in-out infinite alternate;
}

.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,184,75,.22) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-duration: 10s;
}

.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,111,217,.18) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  animation-duration: 12s;
  animation-delay: -3s;
}

.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,184,75,.12) 0%, transparent 70%);
  top: 40%; left: 55%;
  animation-duration: 9s;
  animation-delay: -5s;
}

@keyframes orb-float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 40px) scale(1.1); }
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-24);
  text-align: center;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(232,184,75,.1);
  border: 1px solid rgba(232,184,75,.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-6);
}

.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
  letter-spacing: -.02em;
}

.hero__title--accent {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  color: var(--navy-100);
  line-height: 1.7;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}

.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-6);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-4) var(--sp-8);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero__stat strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-400);
}

.hero__stat span {
  font-size: .8125rem;
  color: var(--navy-200);
  white-space: nowrap;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-dot {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}

.hero__scroll-dot::before {
  content: '';
  display: block;
  width: 4px; height: 8px;
  background: var(--gold-400);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: .3; }
}

/* =========================================================
   PLATFORMS SECTION
   ========================================================= */
.platforms-section {
  padding-block: var(--sp-24);
  background: var(--navy-800);
  position: relative;
}

.platforms-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,184,75,.3), transparent);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
  align-items: start;
}

/* Platform Card */
.platform-card {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-normal) var(--ease-out),
              box-shadow var(--dur-normal) var(--ease-out),
              border-color var(--dur-normal);
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(232,184,75,.3);
}

.platform-card--top {
  border-color: rgba(232,184,75,.3);
  box-shadow: 0 0 0 1px rgba(232,184,75,.15), var(--shadow-lg);
  transform: translateY(-8px);
}

.platform-card--top:hover {
  transform: translateY(-14px);
  box-shadow: 0 0 0 1px rgba(232,184,75,.4), var(--shadow-xl), 0 0 60px rgba(232,184,75,.12);
}

/* Ribbon */
.platform-card__ribbon {
  position: absolute;
  top: 0; right: 0;
  padding: 6px 18px 6px 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 2;
}

.rank-1 { background: linear-gradient(135deg, var(--gold-300), var(--gold-600)); color: var(--navy-900); }
.rank-2 { background: linear-gradient(135deg, #C0C0C0, #808080); color: var(--white); }
.rank-3 { background: linear-gradient(135deg, #CD7F32, #7B4A1A); color: var(--white); }

/* Rank Badge */
.platform-card__rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.rank-badge--gold   { background: rgba(232,184,75,.15); color: var(--gold-400); border: 1px solid rgba(232,184,75,.3); }
.rank-badge--silver { background: rgba(192,192,192,.12); color: #C0C0C0; border: 1px solid rgba(192,192,192,.3); }
.rank-badge--bronze { background: rgba(205,127,50,.12); color: #CD7F32; border: 1px solid rgba(205,127,50,.3); }

.platform-card__header {
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* Image wrapper */
.platform-card__img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 110px;
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
}

.platform-card__img {
  max-width: 80%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.platform-card__body {
  padding: var(--sp-5);
}

.platform-card__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-3);
}

/* Rating */
.platform-card__rating {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.stars { display: flex; gap: 2px; }

.star {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1;
}

.star.filled { color: var(--gold-400); }
.star.half   { color: var(--gold-500); }

.rating-score {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold-400);
}

.rating-label {
  font-size: .875rem;
  color: var(--navy-200);
}

/* Bonus */
.platform-card__bonus {
  background: rgba(232,184,75,.06);
  border: 1px solid rgba(232,184,75,.18);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-4);
}

.bonus-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 4px;
}

.bonus-value {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

/* Features */
.platform-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .875rem;
  color: var(--navy-100);
}

/* Payments */
.platform-card__payments {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}

.payment-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--navy-200);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.platform-card__disclaimer {
  text-align: center;
  font-size: .7rem;
  color: var(--navy-300);
  margin-top: var(--sp-3);
}

/* Disclaimer banner */
.platforms-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  background: rgba(232,184,75,.05);
  border: 1px solid rgba(232,184,75,.15);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  margin-top: var(--sp-8);
  max-width: 860px;
  margin-inline: auto;
}

.platforms-disclaimer p {
  font-size: .875rem;
  color: var(--navy-200);
  line-height: 1.6;
  flex: 1;
}

/* =========================================================
   WHY SECTION
   ========================================================= */
.why-section {
  padding-block: var(--sp-24);
  background: var(--navy-900);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
}

.why-card {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: transform var(--dur-normal) var(--ease-out),
              border-color var(--dur-normal),
              box-shadow var(--dur-normal);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,184,75,.25);
  box-shadow: var(--shadow-lg);
}

.why-card__icon {
  width: 52px; height: 52px;
  background: rgba(232,184,75,.1);
  border: 1px solid rgba(232,184,75,.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: var(--sp-4);
  transition: background var(--dur-normal), transform var(--dur-fast);
}

.why-card:hover .why-card__icon {
  background: rgba(232,184,75,.18);
  transform: scale(1.08);
}

.why-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.why-card p {
  font-size: .9rem;
  color: var(--navy-100);
  line-height: 1.65;
}

/* =========================================================
   RESPONSIBLE SECTION
   ========================================================= */
.responsible-section {
  padding-block: var(--sp-10);
}

.responsible-banner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  background: linear-gradient(135deg, rgba(30,111,217,.15) 0%, rgba(10,13,20,.8) 100%);
  border: 1px solid rgba(30,111,217,.3);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  flex-wrap: wrap;
}

.responsible-banner__icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: rgba(30,111,217,.2);
  border: 1px solid rgba(30,111,217,.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-300);
}

.responsible-banner__content {
  flex: 1;
  min-width: 200px;
}

.responsible-banner__content h3 {
  font-size: 1.1875rem;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.responsible-banner__content p {
  font-size: .9rem;
  color: var(--navy-100);
  line-height: 1.65;
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section {
  padding-block: var(--sp-24);
  background: var(--navy-800);
}

.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-normal), box-shadow var(--dur-normal);
}

.faq-item.open {
  border-color: rgba(232,184,75,.3);
  box-shadow: 0 4px 20px rgba(232,184,75,.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: background var(--dur-fast);
}

.faq-question:hover { background: rgba(255,255,255,.03); }

.faq-icon {
  flex-shrink: 0;
  color: var(--gold-400);
  transition: transform var(--dur-normal) var(--ease-in-out);
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-in-out);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer__inner {
  padding: 0 var(--sp-6) var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: var(--sp-4);
}

.faq-answer p {
  font-size: .9375rem;
  color: var(--navy-100);
  line-height: 1.7;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,.07);
  padding-block: var(--sp-16) var(--sp-8);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-10);
}

.footer__logo { margin-bottom: var(--sp-4); }

.footer__desc {
  font-size: .9rem;
  color: var(--navy-200);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
  max-width: 340px;
}

.footer__badges {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.footer__badge {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(232,184,75,.1);
  border: 1px solid rgba(232,184,75,.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.footer__nav-col h4 {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--sp-4);
}

.footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer__nav-col a {
  font-size: .875rem;
  color: var(--navy-200);
  text-decoration: none;
  transition: color var(--dur-fast);
}

.footer__nav-col a:hover { color: var(--white); }

.footer__middle {
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding-block: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.footer__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  max-width: 860px;
  margin-inline: auto;
}

.footer__disclaimer p {
  font-size: .8125rem;
  color: var(--navy-300);
  line-height: 1.6;
  flex: 1;
}

.footer__bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer__bottom p {
  font-size: .8125rem;
  color: var(--navy-300);
}

/* =========================================================
   SUBPAGE STYLES
   ========================================================= */
.subpage-hero {
  padding-block: var(--sp-16) var(--sp-12);
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(232,184,75,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 90% 20%, rgba(30,111,217,.06) 0%, transparent 70%);
  pointer-events: none;
}

.subpage-hero__inner {
  position: relative;
  z-index: 1;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold-400);
  text-decoration: none;
  margin-bottom: var(--sp-5);
  transition: gap var(--dur-fast), color var(--dur-fast);
}
.back-link:hover { gap: var(--sp-3); color: var(--gold-300); }

.subpage-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.subpage-hero p {
  font-size: 1.0625rem;
  color: var(--navy-100);
  max-width: 600px;
  line-height: 1.7;
}

.subpage-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: var(--sp-5);
}

.subpage-meta span {
  font-size: .8125rem;
  color: var(--navy-200);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.subpage-content {
  padding-block: var(--sp-16);
}

.content-wrapper {
  max-width: 780px;
  margin-inline: auto;
}

.content-wrapper h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.content-wrapper h3 {
  font-size: 1.125rem;
  color: var(--gold-400);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}

.content-wrapper p {
  font-size: .9375rem;
  color: var(--navy-100);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

.content-wrapper ul, .content-wrapper ol {
  margin-left: var(--sp-5);
  margin-bottom: var(--sp-4);
}

.content-wrapper ul { list-style: disc; }
.content-wrapper ol { list-style: decimal; }

.content-wrapper li {
  font-size: .9375rem;
  color: var(--navy-100);
  line-height: 1.7;
  margin-bottom: var(--sp-2);
}

.content-wrapper a {
  color: var(--gold-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-block {
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-5);
}

.content-block--warning {
  border-color: rgba(243,156,18,.25);
  background: rgba(243,156,18,.05);
}

.content-block--info {
  border-color: rgba(30,111,217,.25);
  background: rgba(30,111,217,.05);
}

.content-block--success {
  border-color: rgba(46,204,113,.25);
  background: rgba(46,204,113,.05);
}

.content-block__title {
  font-weight: 700;
  font-size: .9375rem;
  color: var(--white);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* Help boxes for responsible page */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
}

.help-card {
  background: var(--navy-600);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: transform var(--dur-normal), border-color var(--dur-normal);
}

.help-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,184,75,.25);
}

.help-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.help-card p {
  font-size: .875rem;
  color: var(--navy-200);
  margin-bottom: var(--sp-3);
}

.help-card a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold-400);
}

/* Self-exclusion tools */
.exclusion-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.06);
  margin-bottom: var(--sp-3);
}

.exclusion-item strong {
  color: var(--white);
  font-size: .9375rem;
  display: block;
  margin-bottom: 2px;
}

.exclusion-item span {
  font-size: .8125rem;
  color: var(--navy-200);
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.platforms-grid .reveal:nth-child(2) { transition-delay: 120ms; }
.platforms-grid .reveal:nth-child(3) { transition-delay: 240ms; }
.why-grid .reveal:nth-child(2) { transition-delay: 60ms; }
.why-grid .reveal:nth-child(3) { transition-delay: 120ms; }
.why-grid .reveal:nth-child(4) { transition-delay: 180ms; }
.why-grid .reveal:nth-child(5) { transition-delay: 240ms; }
.why-grid .reveal:nth-child(6) { transition-delay: 300ms; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .footer__desc { max-width: 100%; }
}

@media (max-width: 768px) {
  .navbar__toggle { display: flex; }

  .navbar__links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy-800);
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-direction: column;
    align-items: stretch;
    padding: var(--sp-4);
    gap: var(--sp-1);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--dur-normal) var(--ease-out),
                opacity var(--dur-normal);
    pointer-events: none;
  }

  .navbar__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link { padding: var(--sp-3) var(--sp-4); border-radius: var(--radius-md); }

  .hero__stats { gap: var(--sp-4); padding: var(--sp-4); }
  .hero__stat-divider { display: none; }

  .platforms-grid { grid-template-columns: 1fr; }
  .platform-card--top { transform: none; }

  .footer__nav { grid-template-columns: repeat(2, 1fr); }

  .responsible-banner { flex-direction: column; text-align: center; }
  .responsible-banner__icon { margin-inline: auto; }

  .age-gate__card { padding: var(--sp-8) var(--sp-6); }
  .age-gate__actions { flex-direction: column; }

  .cookie-banner__inner { flex-direction: column; gap: var(--sp-3); }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--sp-4); }
  .footer__nav { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .btn--xl { width: 100%; justify-content: center; }
  .subpage-hero h1 { font-size: 1.75rem; }
}

/* =========================================================
   SCROLLBAR
   ========================================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--navy-400); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-600); }

/* =========================================================
   SELECTION
   ========================================================= */
::selection {
  background: rgba(232,184,75,.3);
  color: var(--white);
}
