/* ===================================
   PARIS GAINS CLUB MAX - style.css
   =================================== */

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

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

/* ---------- TOKENS ---------- */
:root {
  --gold-100: #fff8e7;
  --gold-200: #fcefc4;
  --gold-300: #f8d97a;
  --gold-400: #f4c430;
  --gold-500: #e0a800;
  --gold-600: #b88400;
  --gold-700: #7a5800;

  --navy-900: #080c18;
  --navy-800: #0d1325;
  --navy-700: #131b36;
  --navy-600: #1a2448;
  --navy-500: #233060;

  --slate-400: #8a96b0;
  --slate-300: #b0bac8;
  --slate-200: #d5dae5;

  --green-500: #22c55e;
  --red-500:   #ef4444;

  --accent:      var(--gold-400);
  --accent-dark: var(--gold-600);
  --bg-deep:     var(--navy-900);
  --bg-card:     var(--navy-700);
  --text-primary:   #f0f4ff;
  --text-secondary: var(--slate-300);
  --text-muted:     var(--slate-400);
  --border:        rgba(244,196,48,0.15);
  --border-strong: rgba(244,196,48,0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-card: 0 8px 40px rgba(0,0,0,0.45), 0 1px 0 rgba(244,196,48,0.08) inset;
  --shadow-gold: 0 0 32px rgba(244,196,48,0.22);

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-h: 68px;
  --ease: .3s cubic-bezier(.4,0,.2,1);
}

/* ---------- BASE ---------- */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: .01em; }
h1 { font-size: clamp(2.4rem,6vw,4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem,4vw,3rem);   font-weight: 700; }
h3 { font-size: clamp(1.3rem,2.5vw,1.8rem); font-weight: 700; }
p  { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); }
a  { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold-300); }

.accent { color: var(--accent); }

.section-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(244,196,48,0.1);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: .3em 1em;
  margin-bottom: 1rem;
}

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--navy-800); }
::-webkit-scrollbar-thumb { background: var(--gold-600); border-radius: 4px; }

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

.age-gate-card {
  background: var(--navy-700);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 480px; width: 90%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 60px rgba(244,196,48,0.07);
  animation: fadeScaleIn .45s cubic-bezier(.4,0,.2,1) both;
}
.age-gate-logo { margin-bottom: 1.5rem; }
.age-gate-icon { font-size: 3rem; line-height: 1; }
.age-gate-card h2 { margin-bottom: .6rem; }
.age-gate-card p { margin-bottom: 2rem; font-size: .93rem; }

.age-gate-btns { display: flex; flex-direction: column; gap: .9rem; }
.btn-confirm {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900); font-weight: 700; font-family: var(--font-body);
  border: none; border-radius: var(--radius-md);
  padding: .9rem 1.6rem; font-size: 1rem;
  cursor: pointer; transition: all var(--ease);
  box-shadow: 0 4px 20px rgba(244,196,48,0.3);
}
.btn-confirm:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(244,196,48,0.45); }
.btn-deny {
  background: transparent; color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: .75rem 1.6rem; font-size: .88rem;
  cursor: pointer; font-family: var(--font-body);
  transition: all var(--ease);
}
.btn-deny:hover { border-color: var(--red-500); color: var(--red-500); }

#age-denied {
  position: fixed; inset: 0; z-index: 10000;
  display: none; align-items: center; justify-content: center;
  background: var(--navy-900);
}
#age-denied.visible { display: flex; }
.age-denied-card {
  background: var(--navy-700);
  border: 1px solid rgba(239,68,68,.35);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem; max-width: 400px; width: 90%; text-align: center;
  animation: fadeScaleIn .4s cubic-bezier(.4,0,.2,1) both;
}
.age-denied-card .denied-icon { font-size: 3rem; margin-bottom: 1rem; }
.age-denied-card h3 { color: var(--red-500); margin-bottom: .5rem; font-size: 1.5rem; }
.age-denied-card p { font-size: .9rem; }

/* ===================================
   COOKIE BANNER
   =================================== */
#cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 8000;
  width: min(700px, calc(100% - 2rem));
  background: var(--navy-700);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  box-shadow: 0 16px 60px rgba(0,0,0,0.55);
  transition: transform .5s cubic-bezier(.4,0,.2,1), opacity .5s ease;
}
#cookie-banner.hidden {
  transform: translateX(-50%) translateY(140%);
  opacity: 0; pointer-events: none;
}
.cookie-text { flex: 1; min-width: 200px; font-size: .84rem; color: var(--text-secondary); }
.cookie-text a { font-size: .84rem; }
.cookie-btns { display: flex; gap: .6rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900); font-weight: 700;
  border: none; border-radius: var(--radius-sm);
  padding: .55rem 1.2rem; font-size: .84rem;
  cursor: pointer; font-family: var(--font-body);
  transition: all var(--ease);
}
.btn-cookie-accept:hover { box-shadow: var(--shadow-gold); transform: translateY(-1px); }
.btn-cookie-decline {
  background: transparent; color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: .55rem 1rem; font-size: .84rem;
  cursor: pointer; font-family: var(--font-body);
  transition: all var(--ease);
}
.btn-cookie-decline:hover { border-color: var(--slate-300); color: var(--text-primary); }

/* ===================================
   NAVBAR
   =================================== */
.navbar {
  position: sticky; top: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 5%;
  background: rgba(8,12,24,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.navbar.scrolled { background: rgba(8,12,24,0.96); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto;
}

.nav-logo {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-svg { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo-text { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; line-height: 1; }
.logo-main  { color: var(--text-primary); }
.logo-accent { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-size: .88rem; font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--ease);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  border-radius: 2px; transition: width var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500)) !important;
  color: var(--navy-900) !important; font-weight: 700 !important;
  padding: .45rem 1.1rem !important; border-radius: var(--radius-sm) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(244,196,48,0.35) !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--ease); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(8,12,24,0.98);
  backdrop-filter: blur(20px);
  z-index: 490;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.6rem; font-family: var(--font-head); font-weight: 700;
  color: var(--text-secondary);
}
.nav-mobile a:hover { color: var(--accent); }

/* ---------- BACK BUTTON ---------- */
.back-btn-wrap {
  padding: 1rem 5%;
  background: var(--navy-800);
  border-bottom: 1px solid var(--border);
}
.back-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(244,196,48,0.07); border: 1px solid var(--border-strong);
  color: var(--accent); font-weight: 600; font-size: .88rem;
  padding: .48rem 1.1rem; border-radius: var(--radius-sm);
  transition: all var(--ease);
}
.back-btn:hover { background: rgba(244,196,48,0.16); transform: translateX(-3px); color: var(--accent); }

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative; min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 5rem 5% 4rem;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(244,196,48,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(34,197,94,0.07) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}
.hero-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,196,48,0.6), transparent 70%);
  animation: floatUp linear infinite;
}

.hero-content { position: relative; z-index: 1; max-width: 860px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(244,196,48,0.08); border: 1px solid var(--border-strong);
  border-radius: 100px; padding: .35rem 1rem .35rem .65rem;
  font-size: .78rem; font-weight: 600; color: var(--accent);
  margin-bottom: 1.6rem; letter-spacing: .06em; text-transform: uppercase;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500); flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}

.hero h1 { margin-bottom: 1.3rem; }
.hero h1 .highlight { color: var(--accent); }
.hero-desc {
  font-size: 1.12rem; max-width: 600px; margin: 0 auto 2.5rem;
  color: var(--slate-300);
}

.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900); font-weight: 700; font-family: var(--font-body);
  border: none; border-radius: var(--radius-md);
  padding: .95rem 2rem; font-size: 1.05rem;
  cursor: pointer; text-decoration: none;
  transition: all var(--ease);
  box-shadow: 0 4px 24px rgba(244,196,48,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(244,196,48,0.48); color: var(--navy-900); }
.btn-primary .arrow { transition: transform var(--ease); }
.btn-primary:hover .arrow { transform: translateY(3px); }

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; }
.stat-sep { width: 1px; height: 40px; background: var(--border-strong); }

/* ===================================
   SECTIONS SHARED
   =================================== */
.section { padding: 5rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { max-width: 560px; margin: .75rem auto 0; }

/* ===================================
   PLATFORMS
   =================================== */
#plateformes { background: var(--navy-800); }

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

.platform-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--ease);
  box-shadow: var(--shadow-card);
}
.platform-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), var(--shadow-gold);
}
.platform-card.rank-1 { border-color: rgba(244,196,48,0.4); }

.card-ribbon {
  position: absolute; top: 0; left: 0; z-index: 2;
  padding: .4rem .8rem;
  font-family: var(--font-head); font-size: .88rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  border-bottom-right-radius: var(--radius-sm);
}
.rank-1 .card-ribbon { background: linear-gradient(135deg,#f4c430,#e0a800); color: var(--navy-900); }
.rank-2 .card-ribbon { background: linear-gradient(135deg,#c8c8c8,#909090); color: var(--navy-900); }
.rank-3 .card-ribbon { background: linear-gradient(135deg,#cd7f32,#a05222); color: #fff; }

.card-img-wrap {
  height: 160px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding: 1rem 1.5rem;
}
.card-img-wrap img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; transition: transform .4s ease; display: block; }
.platform-card:hover .card-img-wrap img { transform: scale(1.05); }
.card-img-placeholder { display: flex; align-items: center; gap: .6rem; color: var(--text-muted); font-size: .8rem; opacity: .6; }

.card-body { padding: 1.4rem 1.3rem 1.3rem; }

.card-brand { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--text-primary); margin-bottom: .5rem; }

.card-score { display: flex; align-items: center; gap: .55rem; margin-bottom: .9rem; }
.score-num { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stars { display: flex; gap: 2px; }
.star { color: var(--gold-400); font-size: 1rem; line-height: 1; }

.bonus-label { font-size: .69rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .35rem; }
.card-bonus {
  font-size: .87rem; font-weight: 600; color: var(--green-500);
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-sm); padding: .45rem .7rem;
  margin-bottom: 1rem; line-height: 1.45;
}

.card-payments { display: flex; gap: .5rem; align-items: center; margin-bottom: 1.2rem; flex-wrap: wrap; }
.pay-badge {
  height: 24px; border-radius: 4px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 2px 7px;
}
.pay-badge svg { height: 14px; width: auto; display: block; }
.pay-badge .pay-label { font-size: .64rem; font-weight: 800; color: #1a1a2e; letter-spacing: .02em; }

.btn-cta-card {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900); font-weight: 700; font-family: var(--font-body);
  border: none; border-radius: var(--radius-sm);
  padding: .78rem 1rem; font-size: .93rem;
  cursor: pointer; text-decoration: none;
  transition: all var(--ease);
  box-shadow: 0 4px 16px rgba(244,196,48,0.22);
}
.btn-cta-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,196,48,0.42); color: var(--navy-900); }
.rank-1 .btn-cta-card { font-size: 1rem; padding: .85rem 1rem; }

/* ===================================
   WHY US
   =================================== */
#apropos { background: var(--navy-900); }
.why-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.why-intro-text h2 { margin-bottom: 1rem; }
.why-intro-text p { margin-bottom: .8rem; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.5rem; }
.why-card {
  background: var(--navy-700); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.8rem 1.5rem;
  transition: all var(--ease);
}
.why-card:hover { border-color: var(--border-strong); transform: translateY(-3px); background: var(--navy-600); }
.why-icon {
  width: 50px; height: 50px; border-radius: var(--radius-sm);
  background: rgba(244,196,48,0.1); border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; font-size: 1.4rem;
}
.why-card h4 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: .45rem; color: var(--text-primary); }
.why-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.6; }

/* ===================================
   RESPONSIBLE
   =================================== */
#responsible {
  background: linear-gradient(135deg, rgba(239,68,68,0.07) 0%, var(--navy-800) 60%);
  border-top: 1px solid rgba(239,68,68,0.15);
  border-bottom: 1px solid rgba(239,68,68,0.15);
  padding: 3.5rem 5%;
}
.resp-inner { max-width: 900px; margin: 0 auto; display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.resp-icon-wrap {
  flex-shrink: 0; width: 62px; height: 62px;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,.3);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
}
.resp-body { flex: 1; min-width: 200px; }
.resp-body h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--red-500); margin-bottom: .45rem; }
.resp-body p { font-size: .88rem; margin-bottom: .9rem; }
.resp-links { display: flex; gap: .7rem; flex-wrap: wrap; }
.resp-link {
  font-size: .78rem; font-weight: 600;
  background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,.22);
  color: #fc8181; border-radius: 100px; padding: .32rem .85rem;
  transition: all var(--ease);
}
.resp-link:hover { background: rgba(239,68,68,0.17); color: #fff; }

/* ===================================
   FAQ
   =================================== */
#faq { background: var(--navy-800); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: var(--navy-700); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item.open { border-color: var(--border-strong); }

.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.15rem 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-body); font-size: .98rem; font-weight: 600;
  color: var(--text-primary); transition: color var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  background: rgba(244,196,48,0.1); border: 1px solid var(--border-strong);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--accent);
  transition: transform var(--ease), background var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(244,196,48,0.2); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .42s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 1.4rem 1.3rem; font-size: .9rem; color: var(--text-secondary); line-height: 1.75; }
.faq-a-inner a { font-size: .9rem; }

/* ===================================
   FOOTER
   =================================== */
footer {
  background: var(--navy-900);
  border-top: 1px solid var(--border);
  padding: 4rem 5% 2.5rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-desc { font-size: .84rem; color: var(--text-muted); line-height: 1.75; margin-top: .8rem; max-width: 340px; }
.footer-badge-18 {
  display: inline-block; margin-top: 1rem;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,.3);
  color: var(--red-500); font-size: .72rem; font-weight: 700;
  padding: .28rem .75rem; border-radius: 100px;
}

.footer-col h5 {
  font-family: var(--font-head); font-size: .98rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 1.1rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .83rem; color: var(--text-muted); transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .78rem; color: var(--text-muted); }
.footer-disclaimer { font-size: .74rem; color: var(--text-muted); max-width: 500px; text-align: right; line-height: 1.6; }

/* ===================================
   SUBPAGES
   =================================== */
.subpage-hero {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  border-bottom: 1px solid var(--border);
  padding: 4rem 5% 3rem; text-align: center;
}
.subpage-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: .6rem; }
.subpage-hero p { max-width: 560px; margin: 0 auto; }

.subpage-content { max-width: 800px; margin: 0 auto; padding: 4rem 5%; }
.content-section { margin-bottom: 2.8rem; }
.content-section h2 {
  font-size: clamp(1.2rem,2.5vw,1.5rem); color: var(--accent);
  margin-bottom: .9rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.content-section h3 { font-size: 1.05rem; color: var(--text-primary); margin: 1.1rem 0 .45rem; }
.content-section p  { font-size: .91rem; color: var(--text-secondary); margin-bottom: .75rem; }
.content-section ul, .content-section ol { padding-left: 1.4rem; margin-bottom: .8rem; }
.content-section li { font-size: .91rem; color: var(--text-secondary); margin-bottom: .38rem; line-height: 1.65; }
.content-section a { font-size: .91rem; }

.last-updated {
  display: inline-block; font-size: .77rem; color: var(--text-muted);
  background: rgba(244,196,48,0.06); border: 1px solid var(--border);
  border-radius: 100px; padding: .28rem .85rem; margin-bottom: 2rem;
}

.highlight-box {
  background: rgba(244,196,48,0.06); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .95rem 1.2rem; margin: .9rem 0;
}
.highlight-box p { color: var(--text-secondary); font-size: .89rem; margin: 0; }

.warning-box {
  background: rgba(239,68,68,0.06); border-left: 3px solid var(--red-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .95rem 1.2rem; margin: .9rem 0;
}
.warning-box p { color: var(--text-secondary); font-size: .89rem; margin: 0; }

/* ===================================
   REVEAL ANIMATIONS
   =================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ===================================
   KEYFRAMES
   =================================== */
@keyframes fadeScaleIn {
  from { opacity: 0; transform: scale(.92) translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.45); }
  50%      { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1);   opacity: .7; }
  50%  { transform: translateY(-28px) scale(1.1); opacity: .3; }
  100% { transform: translateY(-56px) scale(.8); opacity: 0; }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .platforms-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-intro { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-desc { max-width: 100%; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .stat-sep { display: none; }
  .resp-inner { gap: 1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .footer-disclaimer { text-align: left; }
}

@media (max-width: 480px) {
  .section  { padding: 3.5rem 4%; }
  .hero     { padding: 3rem 4% 3rem; }
  .age-gate-card { padding: 2rem 1.5rem; }
  .subpage-content { padding: 2.5rem 4%; }
}
