/* ============================================================
   parisfortunegagnerclub.com — Design System
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:           #050E1E;
  --bg-2:         #0A1730;
  --bg-3:         #0D1E38;
  --card:         #0F2040;
  --border:       #1A3055;
  --gold:         #C8A951;
  --gold-light:   #E5C876;
  --gold-dark:    #9A7A30;
  --gold-glow:    rgba(200,169,81,.15);
  --text:         #EDE6D6;
  --text-2:       #A8BAD0;
  --text-3:       #6A80A0;
  --red:          #C0392B;
  --green:        #27AE60;
  --green-light:  #2ECC71;
  --white:        #FFFFFF;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,.45);
  --shadow-gold:  0 0 32px rgba(200,169,81,.22);
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ── 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(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: .95rem; border: 2px solid transparent; transition: var(--transition);
  letter-spacing: .04em; white-space: nowrap; cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg); border-color: var(--gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: var(--shadow-gold); transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold-glow); transform: translateY(-2px); }

/* ── Age Gate ───────────────────────────────────────────────── */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5,14,30,.93); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
#age-gate.hidden { display: none; }
.age-gate-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 52px 44px;
  max-width: 500px; width: 90%; text-align: center;
  box-shadow: var(--shadow), var(--shadow-gold);
  animation: fadeInScale .4s var(--transition);
}
.age-gate-logo {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 30px;
}
.age-gate-badge-18 {
  background: var(--red); color: #fff; font-weight: 800;
  font-size: 1.3rem; width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid rgba(255,255,255,.15); flex-shrink: 0;
}
.age-gate-site-name {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--gold);
  text-align: left; line-height: 1.2;
}
.age-gate-card h2 {
  font-family: var(--font-head); font-size: 1.75rem; color: var(--text);
  margin-bottom: 14px; line-height: 1.3;
}
.age-gate-card h2 span { color: var(--gold); }
.age-gate-card p { color: var(--text-2); font-size: .93rem; margin-bottom: 34px; line-height: 1.75; }
.age-gate-buttons { display: flex; flex-direction: column; gap: 14px; }
.age-gate-buttons .btn { width: 100%; justify-content: center; font-size: 1rem; }
.age-denied-card { text-align: center; padding: 16px 0; }
.age-denied-card .denied-icon {
  font-size: 3rem; margin-bottom: 16px; display: block; color: var(--red);
}
.age-denied-card h3 { font-family: var(--font-head); color: var(--red); font-size: 1.5rem; margin-bottom: 10px; }
.age-denied-card p { color: var(--text-2); font-size: .9rem; }

/* ── Cookie Consent ─────────────────────────────────────────── */
#cookie-consent {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8888;
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding: 18px 24px; transform: translateY(110%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
#cookie-consent.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-icon { font-size: 1.5rem; flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 260px; font-size: .875rem; color: var(--text-2); line-height: 1.6; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 22px; border-radius: 50px; font-weight: 600;
  font-size: .85rem; border: 1px solid; cursor: pointer;
  transition: var(--transition); font-family: inherit;
}
.cookie-btn-accept { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-decline { background: transparent; color: var(--text-2); border-color: var(--border); }
.cookie-btn-decline:hover { border-color: var(--text-2); color: var(--text); }

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 18px 0; transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(5,14,30,.88); backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px); border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo-icon { width: 44px; height: 44px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-main {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--gold);
}
.nav-logo-sub {
  font-size: .68rem; color: var(--text-3); letter-spacing: .1em; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 9px 17px; border-radius: 50px; font-size: .875rem; font-weight: 500;
  color: var(--text-2); transition: var(--transition); white-space: nowrap;
}
.nav-link:hover { color: var(--gold); background: var(--gold-glow); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg) !important; font-weight: 700 !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { box-shadow: var(--shadow-gold); transform: translateY(-1px); background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  background: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--transition);
}
.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 18px; background: rgba(5,14,30,.96);
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { padding: 12px 16px; }

/* ── Hero Section ───────────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  background: radial-gradient(ellipse at 25% 40%, #0D2545 0%, var(--bg) 65%),
              linear-gradient(160deg, #0A1E3D 0%, var(--bg) 100%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-particle {
  position: absolute; border-radius: 50%;
  background: var(--gold); animation: floatParticle linear infinite;
}
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,169,81,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,81,.035) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow-1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,81,.1) 0%, transparent 70%);
  top: -250px; right: -150px; animation: pulse 7s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,37,69,.5) 0%, transparent 70%);
  bottom: -100px; left: -100px; animation: pulse 9s ease-in-out infinite reverse;
}
.hero-content {
  position: relative; z-index: 2; padding: 130px 0 60px;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(200,169,81,.1); border: 1px solid rgba(200,169,81,.28);
  border-radius: 50px; padding: 8px 18px; font-size: .78rem;
  color: var(--gold-light); font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light);
  animation: blink 2.2s ease-in-out infinite; flex-shrink: 0;
}
.hero-content h1 {
  font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.9rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: var(--text);
}
.hero-content h1 em { color: var(--gold); font-style: normal; }
.hero-content > p {
  font-size: 1.1rem; color: var(--text-2); margin-bottom: 42px;
  max-width: 580px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  position: relative; z-index: 2; display: flex; gap: 48px; flex-wrap: wrap;
  padding: 28px 0 80px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.hero-stat-label { font-size: .78rem; color: var(--text-3); margin-top: 5px; text-transform: uppercase; letter-spacing: .07em; }
.hero-scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 8px; color: var(--text-3); font-size: .73rem; letter-spacing: .1em;
  text-transform: uppercase; animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll-arrow {
  width: 22px; height: 22px; border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold); transform: rotate(45deg); margin-top: 4px;
}

/* ── Section Commons ────────────────────────────────────────── */
section { padding: 96px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px;
}
.section-label::before, .section-label::after {
  content: ''; display: block; height: 1px; width: 26px; background: var(--gold);
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--text); margin-bottom: 14px; line-height: 1.25;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-desc { color: var(--text-2); font-size: 1.05rem; max-width: 600px; line-height: 1.8; }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ── Platform Cards ─────────────────────────────────────────── */
#platforms { background: var(--bg-2); }
.platforms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.platform-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.platform-card:hover {
  border-color: var(--gold-dark); box-shadow: var(--shadow), 0 0 45px rgba(200,169,81,.14);
  transform: translateY(-4px);
}
.platform-card.rank-1 { border-color: rgba(200,169,81,.5); }
.platform-card.rank-1:hover { box-shadow: var(--shadow), 0 0 55px rgba(200,169,81,.25); border-color: var(--gold); }
.platform-card.rank-2 { border-color: rgba(156,163,175,.35); }
.platform-card.rank-3 { border-color: rgba(205,127,50,.35); }

.platform-rank-badge {
  position: absolute; top: 10px; left: 12px; z-index: 10;
  font-family: var(--font-head); font-weight: 800; font-size: .85rem;
  color: var(--gold); letter-spacing: .04em;
}

.platform-ribbon-wrap {
  position: absolute; top: 0; left: 0; z-index: 5;
  overflow: hidden; width: 90px; height: 90px;
}
.platform-ribbon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg); font-weight: 800; font-size: .75rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 0; width: 120px; text-align: center;
  position: absolute; top: 22px; left: -30px;
  transform: rotate(-45deg); box-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.platform-card.rank-2 .platform-ribbon {
  background: linear-gradient(135deg, #A8B4C0 0%, #8A9AAA 100%); color: #1a1a2e;
}
.platform-card.rank-3 .platform-ribbon {
  background: linear-gradient(135deg, #CD7F32 0%, #9B5F22 100%);
}

.platform-img-wrap {
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  height: 100px; padding: 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.platform-img-wrap--netbet  { background: #ffffff; }
.platform-img-wrap--pmu     { background: #0a0a0a; }
.platform-img-wrap--winamax { background: #f5f5f5; }

.platform-img-wrap img {
  display: block !important;
  width: auto !important;
  height: 48px !important;
  max-width: 140px !important;
  max-height: 48px !important;
  object-fit: contain !important;
  transition: transform .4s ease;
}
.platform-card:hover .platform-img-wrap img { transform: scale(1.06); }
.platform-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,14,30,.5) 0%, rgba(5,14,30,.2) 50%, rgba(5,14,30,.7) 100%);
}
.platform-img-name {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
  background: linear-gradient(0deg, rgba(5,14,30,.9) 0%, transparent 100%);
}
.platform-img-logo {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--gold);
}

.platform-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.platform-top-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.platform-name { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--text); }
.platform-category { font-size: .78rem; color: var(--text-3); margin-top: 3px; letter-spacing: .06em; }
.platform-rating { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
.platform-score { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.platform-score-max { font-size: .9rem; color: var(--text-3); font-family: var(--font-head); }
.platform-stars { display: flex; gap: 3px; margin-top: 5px; }
.star { color: var(--gold); font-size: .95rem; }

.platform-bonus {
  background: linear-gradient(135deg, rgba(200,169,81,.08) 0%, rgba(200,169,81,.04) 100%);
  border: 1px solid rgba(200,169,81,.22); border-radius: 10px; padding: 14px 18px;
}
.platform-bonus-label {
  font-size: .7rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px;
}
.platform-bonus-text { font-size: 1rem; font-weight: 600; color: var(--text); line-height: 1.45; }

.platform-payments { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.payments-label { font-size: .75rem; color: var(--text-3); margin-right: 4px; flex-shrink: 0; }
.payment-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 11px; font-size: .72rem; font-weight: 600;
  color: var(--text-2); letter-spacing: .04em;
}

.platform-features { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 2px; }
.platform-feature {
  display: flex; align-items: center; gap: 5px;
  font-size: .78rem; color: var(--text-3);
}
.feature-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }

.platform-cta-row { margin-top: auto; }
.btn-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #27AE60 0%, #1e8449 100%);
  color: #fff; border: 2px solid rgba(39,174,96,.4); font-size: .95rem;
  padding: 15px 24px; border-radius: 50px; width: 100%;
  font-weight: 700; letter-spacing: .04em;
  box-shadow: 0 4px 18px rgba(39,174,96,.28); transition: var(--transition);
  text-decoration: none; font-family: var(--font-body);
}
.btn-cta:hover {
  background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  box-shadow: 0 6px 28px rgba(39,174,96,.45); transform: translateY(-2px);
}
.btn-cta-arrow { font-size: 1.1rem; }

/* ── Pourquoi nous ──────────────────────────────────────────── */
#apropos { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.why-card {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 26px; transition: transform var(--transition), border-color var(--transition);
}
.why-card:hover { border-color: var(--gold-dark); transform: translateY(-5px); }
.why-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(200,169,81,.1); border: 1px solid rgba(200,169,81,.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.6rem;
}
.why-card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.why-card p { font-size: .875rem; color: var(--text-2); line-height: 1.75; }

/* ── Responsible Banner ─────────────────────────────────────── */
#responsible {
  background: linear-gradient(135deg, #160808 0%, #240E0E 100%);
  border-top: 1px solid rgba(192,57,43,.25); border-bottom: 1px solid rgba(192,57,43,.25);
  padding: 72px 0;
}
.responsible-inner {
  display: grid; grid-template-columns: 1fr 260px; gap: 48px; align-items: center;
}
.responsible-badge-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(192,57,43,.18); border: 1px solid rgba(192,57,43,.35);
  border-radius: 50px; padding: 6px 16px; font-size: .76rem;
  color: #E74C3C; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; margin-bottom: 18px;
}
.responsible-inner h2 {
  font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text); margin-bottom: 16px; line-height: 1.3;
}
.responsible-inner > div > p {
  color: var(--text-2); font-size: .95rem; line-height: 1.8;
  margin-bottom: 20px;
}
.responsible-resources { display: flex; flex-direction: column; gap: 10px; }
.responsible-resource {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 12px 16px; font-size: .83rem; color: var(--text-2);
  transition: var(--transition); text-decoration: none;
}
.responsible-resource:hover { border-color: var(--gold-dark); color: var(--gold); background: var(--gold-glow); }
.responsible-resource-dot { width: 8px; height: 8px; border-radius: 50%; background: #E74C3C; flex-shrink: 0; }

/* ── FAQ ────────────────────────────────────────────────────── */
#faq { background: var(--bg-2); }
.faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold-dark); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; background: none; border: none; color: var(--text);
  font-family: inherit; font-size: 1rem; font-weight: 600; text-align: left; gap: 16px;
  cursor: pointer; transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.2rem; line-height: 1; color: var(--text-2);
  transition: transform var(--transition), border-color var(--transition), color var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); color: var(--gold); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
  padding: 0 24px; color: var(--text-2); font-size: .93rem; line-height: 1.8;
}
.faq-answer.open { max-height: 500px; padding: 0 24px 22px; }
.faq-answer a { color: var(--gold); text-decoration: underline; }

/* ── Footer ─────────────────────────────────────────────────── */
#site-footer {
  background: var(--bg); border-top: 1px solid var(--border); padding: 72px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; margin-bottom: 52px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; text-decoration: none; }
.footer-logo-icon { width: 42px; height: 42px; }
.footer-logo-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--gold); }
.footer-desc {
  color: var(--text-2); font-size: .875rem; line-height: 1.8; margin-bottom: 20px;
}
.footer-disclaimer {
  background: rgba(192,57,43,.09); border: 1px solid rgba(192,57,43,.22);
  border-radius: 8px; padding: 12px 16px; font-size: .78rem; color: #E74C3C; line-height: 1.65;
}
.footer-col h4 {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 18px;
}
.footer-col > ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col > ul li a {
  font-size: .875rem; color: var(--text-2); transition: color var(--transition);
}
.footer-col > ul li a:hover { color: var(--gold); }
.footer-help-list { display: flex; flex-direction: column; gap: 8px; }
.footer-help-link {
  display: flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--text-2);
  transition: color var(--transition); text-decoration: none; padding: 4px 0;
}
.footer-help-link:hover { color: var(--gold); }
.footer-help-link::before { content: '→'; color: var(--gold); font-size: .85rem; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: .8rem; color: var(--text-3); }
.footer-age-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(192,57,43,.14); border: 1px solid rgba(192,57,43,.28);
  border-radius: 50px; padding: 7px 16px; font-size: .78rem; color: #E74C3C; font-weight: 700;
}

/* ── Subpages ───────────────────────────────────────────────── */
body.subpage { padding-top: 80px; }
.subpage-hero {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border); padding: 56px 0 48px;
}
.subpage-hero-inner { display: flex; flex-direction: column; gap: 14px; }
.btn-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: .875rem; font-weight: 600;
  background: rgba(200,169,81,.08); border: 1px solid rgba(200,169,81,.22);
  border-radius: 50px; padding: 8px 18px; transition: var(--transition);
  width: fit-content; text-decoration: none;
}
.btn-back:hover { background: rgba(200,169,81,.16); transform: translateX(-2px); }
.btn-back-arrow { font-size: 1rem; }
.subpage-title {
  font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800; color: var(--text); line-height: 1.2;
}
.subpage-updated { font-size: .82rem; color: var(--text-3); }
.subpage-main-content { padding: 64px 0 80px; }
.prose {
  max-width: 860px;
}
.prose h2 {
  font-family: var(--font-head); font-size: 1.5rem; color: var(--gold);
  margin: 44px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--text); margin: 26px 0 10px; }
.prose p { color: var(--text-2); font-size: .95rem; line-height: 1.85; margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose ul li, .prose ol li {
  color: var(--text-2); font-size: .95rem; line-height: 1.8; margin-bottom: 7px;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose a { color: var(--gold); text-decoration: underline; transition: color var(--transition); }
.prose a:hover { color: var(--gold-light); }
.info-box {
  background: var(--bg-3); border: 1px solid var(--border); border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 22px 0;
}
.info-box p { margin: 0; }
.warn-box {
  background: rgba(192,57,43,.07); border: 1px solid rgba(192,57,43,.22);
  border-left: 3px solid var(--red); border-radius: 0 10px 10px 0;
  padding: 18px 22px; margin: 22px 0;
}
.warn-box p { color: #E87568 !important; margin: 0; }
.toc-box {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 28px; margin-bottom: 44px;
}
.toc-box h4 {
  color: var(--gold); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px;
}
.toc-box ol { padding-left: 20px; margin: 0; }
.toc-box ol li { color: var(--text-2); font-size: .875rem; margin-bottom: 6px; }
.toc-box ol li a { color: var(--text-2); transition: color var(--transition); text-decoration: none; }
.toc-box ol li a:hover { color: var(--gold); }

/* ── Reveal Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.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; }

/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(.93) translateY(18px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  12%  { opacity: .5; }
  88%  { opacity: .15; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1.8); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.07); opacity: .75; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .2; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .platforms-grid { grid-template-columns: 1fr; }
  .platform-img-wrap { height: 90px; }
  .responsible-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 28px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .platform-body { padding: 20px; gap: 14px; }
  .platform-top-row { flex-wrap: wrap; }
  .platform-rating { align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .age-gate-card { padding: 32px 22px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; justify-content: center; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
