/* =========================================================
   FranceParis VIP — style.css
   ========================================================= */

/* ----- TOKENS ----- */
:root {
  --gold-100: #FDF6E3;
  --gold-200: #F5E4A8;
  --gold-300: #E8C84A;
  --gold-400: #C9A84C;
  --gold-500: #A8893A;
  --gold-600: #7C6428;

  --navy-900: #060C1A;
  --navy-800: #0C1628;
  --navy-700: #111E36;
  --navy-600: #162340;
  --navy-500: #1E3058;

  --slate-100: #F0F4FA;
  --slate-200: #D8E0EE;
  --slate-300: #A8B4CC;
  --slate-400: #6E7D99;
  --slate-500: #4A5570;

  --success-400: #22C55E;
  --warning-400: #F59E0B;
  --error-400: #EF4444;

  --white: #FFFFFF;
  --black: #000000;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

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

  --shadow-sm: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.28), 0 4px 16px rgba(0,0,0,.16);
  --shadow-gold: 0 0 24px rgba(201,168,76,.35);

  --transition-fast: 150ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 480ms ease;

  --nav-height: 72px;
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--slate-200);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }

/* ----- CONTAINER ----- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   AGE GATE
   ========================================================= */
.age-gate-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6, 12, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px;
}
.age-gate-overlay.hidden { display: none; }

.age-gate-card {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  animation: age-gate-in 0.4s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes age-gate-in {
  from { opacity: 0; transform: translateY(24px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.age-gate-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 900;
  margin: 0 auto 24px;
  box-shadow: 0 0 32px rgba(201,168,76,.5);
}
.age-gate-title {
  font-size: 1.75rem; color: var(--white); margin-bottom: 16px;
}
.age-gate-text {
  color: var(--slate-300); line-height: 1.65; margin-bottom: 32px; font-size: .95rem;
}
.age-gate-actions {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px;
}
.age-gate-btn {
  padding: 16px 24px; border-radius: var(--radius-md);
  font-weight: 600; font-size: 1rem;
  transition: all var(--transition-base);
  letter-spacing: .01em;
}
.age-gate-btn--confirm {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900);
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
}
.age-gate-btn--confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.5);
}
.age-gate-btn--deny {
  background: transparent;
  border: 1px solid var(--slate-400);
  color: var(--slate-300);
}
.age-gate-btn--deny:hover {
  border-color: var(--error-400);
  color: var(--error-400);
}
.age-gate-disclaimer {
  font-size: .78rem; color: var(--slate-400); line-height: 1.5;
}
.age-gate-disclaimer a { color: var(--gold-400); text-decoration: underline; }

/* ACCESS DENIED */
.access-denied-overlay {
  position: fixed; inset: 0; z-index: 9998;
  display: none; align-items: center; justify-content: center;
  background: var(--navy-900);
  padding: 24px;
}
.access-denied-overlay.visible { display: flex; }
.access-denied-card {
  text-align: center; max-width: 400px;
}
.access-denied-icon {
  font-size: 4rem; color: var(--error-400); margin-bottom: 24px;
}
.access-denied-card h2 {
  font-size: 2rem; color: var(--white); margin-bottom: 12px;
}
.access-denied-card p { color: var(--slate-300); }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(17, 30, 54, 0.97);
  border-top: 1px solid rgba(201,168,76,.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.22,.61,.36,1);
  padding: 16px 0;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hidden { display: none; }

.cookie-banner-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1; font-size: .875rem; color: var(--slate-200); min-width: 240px;
}
.cookie-banner-text a { color: var(--gold-400); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 22px; border-radius: var(--radius-md);
  font-size: .875rem; font-weight: 600;
  transition: all var(--transition-fast);
}
.cookie-btn--accept {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900);
}
.cookie-btn--accept:hover { opacity: .9; }
.cookie-btn--decline {
  background: transparent; border: 1px solid var(--slate-400);
  color: var(--slate-300);
}
.cookie-btn--decline:hover { border-color: var(--slate-200); color: var(--white); }

/* =========================================================
   NAVBAR
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}
.site-header.scrolled {
  background: rgba(6, 12, 26, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,168,76,.15);
}

.navbar {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
}

.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.navbar-logo-icon { flex-shrink: 0; }
.navbar-brand-text {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.navbar-brand-accent { color: var(--gold-400); }

.navbar-menu {
  display: flex; align-items: center; gap: 8px;
}
.nav-link {
  padding: 8px 16px; border-radius: var(--radius-md);
  font-size: .9rem; font-weight: 500; color: var(--slate-200);
  transition: all var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--gold-400); border-radius: 1px;
  transition: all var(--transition-base);
}
.nav-link:hover { color: var(--gold-300); }
.nav-link:hover::after { left: 16px; right: 16px; }

.navbar-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.navbar-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--slate-200); border-radius: 2px;
  transition: all var(--transition-base);
}
.navbar-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy-900);
  padding-top: var(--nav-height);
}

.hero-bg-anim {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .15;
  animation: orb-float 12s ease-in-out infinite;
}
.hero-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold-400), transparent 70%);
  top: -150px; right: -100px;
  animation-duration: 14s;
}
.hero-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1E6BE6, transparent 70%);
  bottom: -100px; left: -80px;
  animation-duration: 10s; animation-delay: -4s;
}
.hero-orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--gold-500), transparent 70%);
  top: 40%; left: 40%;
  animation-duration: 18s; animation-delay: -8s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(30px, -40px); }
  66%       { transform: translate(-20px, 30px); }
}

.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-content {
  position: relative; z-index: 1;
  padding: 80px 24px;
  display: flex; flex-direction: column; gap: 28px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-400);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 999px; padding: 6px 16px;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.15;
}
.hero-title-accent {
  background: linear-gradient(90deg, var(--gold-300), var(--gold-400), var(--gold-300));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%; animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  max-width: 600px; font-size: 1.1rem; color: var(--slate-300); line-height: 1.7;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900); font-weight: 700; font-size: 1rem;
  padding: 18px 36px; border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(201,168,76,.4);
  width: fit-content;
  transition: all var(--transition-base);
  position: relative; overflow: hidden;
}
.hero-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0; transition: opacity var(--transition-fast);
}
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,76,.5); }
.hero-cta:hover::before { opacity: 1; }
.hero-cta:active { transform: translateY(-1px); }

.hero-stats {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 20px 28px; width: fit-content;
}
.hero-stat {
  display: flex; flex-direction: column; gap: 2px;
  padding: 0 24px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { padding-right: 0; }
.hero-stat strong {
  font-size: 1.6rem; font-weight: 700; color: var(--gold-400);
  font-family: var(--font-display);
}
.hero-stat span { font-size: .8rem; color: var(--slate-300); white-space: nowrap; }
.hero-stat-divider {
  width: 1px; height: 40px; background: rgba(255,255,255,.1); flex-shrink: 0;
}

/* =========================================================
   SECTION SHARED
   ========================================================= */
.section-header {
  text-align: center; margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-400);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white); margin-bottom: 16px;
}
.section-title-accent {
  color: var(--gold-400);
}
.section-desc {
  max-width: 640px; margin: 0 auto;
  color: var(--slate-300); font-size: 1rem; line-height: 1.7;
}

/* =========================================================
   PLATFORMS SECTION
   ========================================================= */
.platforms-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-900) 100%);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.platform-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
}
.platform-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,.35);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(201,168,76,.15);
}
.platform-card--top {
  border-color: rgba(201,168,76,.3);
  box-shadow: 0 0 30px rgba(201,168,76,.12);
  transform: translateY(-8px);
}
.platform-card--top:hover { transform: translateY(-16px); }

.platform-ribbon {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 10px 20px 12px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 1;
}
.platform-ribbon--1 {
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
}
.platform-ribbon--2 {
  background: linear-gradient(90deg, var(--slate-500), var(--slate-400));
  color: var(--white);
}
.platform-ribbon--3 {
  background: linear-gradient(90deg, #7C4A2A, #A86040);
  color: var(--white);
}
.platform-ribbon span:first-child {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 900;
}
.ribbon-label { font-size: .75rem; font-weight: 600; letter-spacing: .05em; opacity: .9; }

.platform-card-body {
  padding: 56px 24px 28px;
  display: flex; flex-direction: column; gap: 16px;
}

.platform-logo-wrap {
  min-height: 80px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); border-radius: var(--radius-md);
  padding: 12px;
}
.platform-logo-img {
  max-width: 100%; height: auto; object-fit: contain;
}

.platform-name {
  font-size: 1.4rem; font-weight: 700; color: var(--white); text-align: center;
}

.platform-rating {
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.platform-score {
  font-size: 2rem; font-weight: 900; color: var(--gold-400);
  font-family: var(--font-display);
}
.platform-stars { display: flex; gap: 2px; }
.star { font-size: 1rem; }
.star--full { color: var(--gold-400); }

.platform-bonus-badge {
  display: inline-flex; align-items: center; gap: 6px; justify-content: center;
  font-size: .75rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gold-400);
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2);
  border-radius: 999px; padding: 4px 14px;
  margin: 0 auto; width: fit-content;
}

.platform-bonus-text {
  text-align: center; font-size: .95rem; color: var(--white);
  font-weight: 500; line-height: 1.5;
  background: rgba(201,168,76,.06); border-radius: var(--radius-md);
  padding: 12px 16px;
}

.platform-payments {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.pay-icon {
  border-radius: 3px;
  transition: transform var(--transition-fast);
}
.pay-icon:hover { transform: scale(1.1); }

.platform-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 20px; border-radius: var(--radius-md);
  font-weight: 700; font-size: .95rem;
  transition: all var(--transition-base);
  width: 100%;
}
.platform-cta--primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900);
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
}
.platform-cta--primary:hover {
  box-shadow: 0 8px 24px rgba(201,168,76,.5);
  transform: translateY(-2px);
}
.platform-cta--secondary {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-300);
}
.platform-cta--secondary:hover {
  background: rgba(201,168,76,.18);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.platform-terms {
  font-size: .72rem; color: var(--slate-400); text-align: center; line-height: 1.5;
}

/* =========================================================
   WHY SECTION
   ========================================================= */
.why-section {
  padding: 100px 0;
  background: var(--navy-800);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: linear-gradient(160deg, var(--navy-700) 0%, rgba(17,30,54,.8) 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: all var(--transition-slow);
}
.why-card:hover {
  border-color: rgba(201,168,76,.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 60px; height: 60px; border-radius: var(--radius-md);
  background: rgba(201,168,76,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 1.15rem; color: var(--white); margin-bottom: 10px; font-weight: 700;
}
.why-card p { font-size: .9rem; color: var(--slate-300); line-height: 1.7; }

/* =========================================================
   RESPONSIBLE SECTION
   ========================================================= */
.responsible-section {
  padding: 60px 0;
  background: var(--navy-900);
}
.responsible-banner {
  background: linear-gradient(135deg, rgba(239,68,68,.12) 0%, rgba(245,158,11,.08) 100%);
  border: 1px solid rgba(239,68,68,.25);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex; align-items: center; gap: 32px;
}
.responsible-icon {
  flex-shrink: 0; color: var(--warning-400);
  width: 56px; height: 56px;
  background: rgba(245,158,11,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.responsible-content { flex: 1; }
.responsible-content h2 {
  font-size: 1.3rem; color: var(--white); margin-bottom: 8px;
}
.responsible-content p {
  font-size: .9rem; color: var(--slate-300); line-height: 1.65;
}
.responsible-link {
  display: inline-block; margin-top: 12px;
  font-size: .875rem; color: var(--gold-400); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--transition-fast);
}
.responsible-link:hover { color: var(--gold-300); }
.responsible-badge {
  flex-shrink: 0;
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--error-400); color: var(--error-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; font-family: var(--font-display);
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}

.faq-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}

.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(--transition-base);
}
.faq-item:hover { border-color: rgba(201,168,76,.2); }
.faq-item.open {
  border-color: rgba(201,168,76,.3);
  box-shadow: 0 4px 20px rgba(201,168,76,.08);
}

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 24px;
  text-align: left; font-size: .975rem; font-weight: 600;
  color: var(--white); background: none; border: none;
  transition: color var(--transition-fast);
}
.faq-item.open .faq-question { color: var(--gold-300); }
.faq-question:hover { color: var(--gold-300); }

.faq-chevron {
  flex-shrink: 0; color: var(--gold-400);
  transition: transform var(--transition-base);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height var(--transition-slow) cubic-bezier(.22,.61,.36,1),
              padding var(--transition-base);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 0 24px 24px;
  font-size: .9rem; color: var(--slate-300); line-height: 1.75;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(201,168,76,.15);
  padding: 64px 0 0;
}

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.footer-brand-text {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white);
}
.footer-brand-accent { color: var(--gold-400); }
.footer-about {
  font-size: .875rem; color: var(--slate-300); line-height: 1.7; margin-bottom: 20px;
}
.footer-age-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.25);
  border-radius: var(--radius-md); padding: 8px 16px;
  font-size: .8rem; color: var(--error-400); font-weight: 600;
}
.footer-age-badge span {
  font-size: 1rem; font-weight: 900; font-family: var(--font-display);
}

.footer-nav-title {
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-400);
  margin-bottom: 16px; font-family: var(--font-body);
}
.footer-nav-list li, .footer-help-list li { margin-bottom: 10px; }
.footer-nav-list a, .footer-help-list a {
  font-size: .875rem; color: var(--slate-300);
  transition: color var(--transition-fast);
}
.footer-nav-list a:hover, .footer-help-list a:hover { color: var(--gold-300); }

.footer-help-text {
  font-size: .8rem; color: var(--slate-400); line-height: 1.6;
  margin-bottom: 12px;
}

.footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.04);
  margin-top: 0;
}
.footer-disclaimer p {
  font-size: .78rem; color: var(--slate-400); line-height: 1.65;
  max-width: 900px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-copyright {
  font-size: .78rem; color: var(--slate-500); text-align: center;
}

/* =========================================================
   SUBPAGE SHARED
   ========================================================= */
.subpage-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.subpage-hero .back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-400); font-size: .875rem; font-weight: 600;
  margin-bottom: 24px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.subpage-hero .back-btn:hover { gap: 12px; color: var(--gold-300); }
.subpage-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: 12px;
}
.subpage-hero .subpage-date {
  font-size: .825rem; color: var(--slate-400);
}

.subpage-content {
  padding: 64px 0 80px;
  background: var(--navy-800);
}
.prose {
  max-width: 780px;
}
.prose h2 {
  font-size: 1.5rem; color: var(--white); margin: 40px 0 14px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(201,168,76,.2);
}
.prose h3 { font-size: 1.15rem; color: var(--gold-300); margin: 28px 0 10px; }
.prose p { font-size: .95rem; color: var(--slate-200); line-height: 1.8; margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 20px; list-style: disc; }
.prose ul li {
  font-size: .95rem; color: var(--slate-200); line-height: 1.8; margin-bottom: 6px;
}
.prose a { color: var(--gold-400); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-300); }
.prose strong { color: var(--white); font-weight: 600; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal-item {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-item.revealed { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .platforms-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .platform-card--top { transform: translateY(0); }
  .platform-card--top:hover { transform: translateY(-8px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .navbar-menu {
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: rgba(6,12,26,.97);
    backdrop-filter: blur(16px);
    flex-direction: column; gap: 4px;
    padding: 16px 24px 24px;
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform var(--transition-base), opacity var(--transition-base);
    border-bottom: 1px solid rgba(201,168,76,.15);
  }
  .navbar-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { width: 100%; padding: 14px 16px; border-radius: var(--radius-md); }
  .navbar-toggle { display: flex; }

  .hero-stats {
    flex-direction: column; gap: 16px; padding: 20px;
  }
  .hero-stat { align-items: center; padding: 0; }
  .hero-stat-divider { width: 40px; height: 1px; }

  .responsible-banner {
    flex-direction: column; text-align: center; padding: 32px 24px;
  }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  .age-gate-card { padding: 36px 24px; }

  .subpage-content .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero-cta { width: 100%; justify-content: center; }
  .platforms-grid { max-width: 100%; }
}
