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

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

:root {
  --bg-0: #04070e;
  --bg-1: #080e1c;
  --bg-2: #0d1628;
  --bg-card: #101d34;
  --bg-card-hover: #152240;
  --gold: #e8a820;
  --gold-light: #f5c040;
  --gold-dark: #b87e10;
  --gold-glow: rgba(232,168,32,0.18);
  --green: #27ae60;
  --green-hover: #1e9651;
  --green-glow: rgba(39,174,96,0.25);
  --text-1: #eef2f8;
  --text-2: #8fa3c0;
  --text-3: #4d637e;
  --border: rgba(232,168,32,0.14);
  --border-soft: rgba(255,255,255,0.07);
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-card: 0 4px 32px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 28px rgba(232,168,32,0.14);
  --font-heading: 'Rajdhani', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-0);
  color: var(--text-1);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ================================================
   TYPOGRAPHY
   ================================================ */

h1,h2,h3,h4 { font-family: var(--font-heading); line-height: 1.15; letter-spacing: 0.01em; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: var(--text-1);
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-2);
  max-width: 580px;
  margin: 0.75rem auto 0;
  line-height: 1.65;
}

/* ================================================
   AGE GATE
   ================================================ */

#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4,7,14,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem;
}

#age-gate.hidden { display: none; }

.age-gate-card {
  background: linear-gradient(145deg, #0d1628, #101d34);
  border: 1px solid rgba(232,168,32,0.25);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 60px rgba(0,0,0,0.6), var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.age-gate-card::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,168,32,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.age-gate-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.9rem;
  position: relative;
}

.age-gate-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  position: relative;
}

.age-gate-card h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--text-1);
  position: relative;
}

.age-gate-card > p {
  font-size: 0.92rem;
  color: var(--text-2);
  margin-bottom: 2rem;
  line-height: 1.6;
  position: relative;
}

.age-gate-actions { display: flex; flex-direction: column; gap: 0.8rem; position: relative; }

.btn-age-confirm {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #04070e;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-age-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,168,32,0.38);
}

.btn-age-deny {
  background: rgba(255,255,255,0.05);
  color: var(--text-2);
  font-size: 0.88rem;
  padding: 0.72rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
}

.btn-age-deny:hover { background: rgba(255,255,255,0.09); color: var(--text-1); }

.age-gate-disclaimer {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 1.5rem;
  line-height: 1.5;
  position: relative;
}

.access-denied-card { text-align: center; padding: 2.5rem 2rem; }

.denied-icon { font-size: 3.5rem; margin-bottom: 1.25rem; display: block; }

.access-denied-card h2 {
  font-size: 1.6rem;
  color: #ef4444;
  margin-bottom: 0.75rem;
}

.access-denied-card p { color: var(--text-2); font-size: 0.92rem; line-height: 1.6; }

/* ================================================
   COOKIE BANNER
   ================================================ */

#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8000;
  width: calc(100% - 3rem);
  max-width: 900px;
  background: linear-gradient(135deg, #0d1628, #101d34);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.55);
  transition: opacity 0.35s, transform 0.35s;
}

#cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.cookie-icon { font-size: 1.7rem; flex-shrink: 0; }

.cookie-text { flex: 1; }

.cookie-text p { font-size: 0.85rem; color: var(--text-2); line-height: 1.55; }

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

.cookie-actions { display: flex; gap: 0.7rem; flex-shrink: 0; }

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #04070e;
  font-weight: 700;
  font-size: 0.83rem;
  padding: 0.58rem 1.2rem;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-cookie-accept:hover { box-shadow: 0 4px 14px rgba(232,168,32,0.35); }

.btn-cookie-decline {
  background: rgba(255,255,255,0.06);
  color: var(--text-2);
  font-size: 0.83rem;
  padding: 0.58rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-cookie-decline:hover { background: rgba(255,255,255,0.1); }

/* ================================================
   NAVBAR
   ================================================ */

#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(4,7,14,0.78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--transition);
}

#navbar.scrolled { background: rgba(4,7,14,0.97); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-1);
}

.nav-logo-icon { width: 34px; height: 34px; flex-shrink: 0; }

.nav-logo .accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  font-size: 0.865rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.42rem 0.82rem;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-1);
  background: rgba(255,255,255,0.07);
}

.nav-cta-link {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: #04070e !important;
  font-weight: 700 !important;
  padding: 0.48rem 1.05rem !important;
}

.nav-cta-link:hover {
  box-shadow: 0 4px 14px rgba(232,168,32,0.35) !important;
  background: rgba(0,0,0,0) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger:hover { background: rgba(255,255,255,0.08); }

.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 66px; left: 0; right: 0;
  background: rgba(4,7,14,0.98);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border-soft);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.4rem;
  z-index: 999;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.72rem 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.nav-mobile a:hover {
  color: var(--text-1);
  background: rgba(255,255,255,0.06);
  border-color: var(--border-soft);
}

/* ================================================
   HERO
   ================================================ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(232,168,32,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 18% 85%, rgba(39,174,96,0.07) 0%, transparent 55%),
    linear-gradient(180deg, #04070e 0%, #060a1a 55%, #04070e 100%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,168,32,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,168,32,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 40%, transparent 100%);
}

.hero-orbs { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,168,32,0.11), transparent 70%);
  top: -120px; left: -100px;
}

.orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(39,174,96,0.09), transparent 70%);
  bottom: -60px; right: -70px;
  animation-delay: -7s;
}

.orb-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(232,168,32,0.07), transparent 70%);
  top: 38%; right: 12%;
  animation-delay: -3.5s;
  animation-duration: 19s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(28px, -22px) scale(1.04); }
  66%       { transform: translate(-18px, 18px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,168,32,0.1);
  border: 1px solid rgba(232,168,32,0.25);
  border-radius: 100px;
  padding: 0.38rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

#hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: var(--text-1);
}

#hero h1 .accent { color: var(--gold); }

.hero-desc {
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  color: var(--text-2);
  max-width: 570px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #04070e;
  font-weight: 700;
  font-size: 0.975rem;
  padding: 0.88rem 1.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,168,32,0.38);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-soft);
  color: var(--text-1);
  font-weight: 600;
  font-size: 0.975rem;
  padding: 0.88rem 1.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.13);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}

.hero-stat-item { text-align: center; }

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.76rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

/* ================================================
   SECTIONS COMMON
   ================================================ */

section { padding: 5.5rem 2rem; }

.container { max-width: 1180px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3.5rem; }

/* ================================================
   PLATFORMS
   ================================================ */

#plateformes { background: var(--bg-1); }

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

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.platform-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232,168,32,0.22);
  box-shadow: var(--shadow-card), 0 0 30px rgba(232,168,32,0.1);
}

.platform-card.rank-1 {
  border-color: rgba(232,168,32,0.28);
  box-shadow: 0 0 40px rgba(232,168,32,0.1);
}

.rank-ribbon {
  position: absolute;
  top: 0; right: 0;
  padding: 0.3rem 0.75rem 0.3rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 2;
}

.rank-ribbon.gold { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); color: #04070e; }
.rank-ribbon.silver { background: linear-gradient(90deg, #6b7280, #9ca3af); color: #04070e; }
.rank-ribbon.bronze { background: linear-gradient(90deg, #92400e, #b45309); color: #f3f4f6; }

.card-image-wrap {
  height: 128px;
  background: linear-gradient(135deg, #111d35, #0d1628);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.card-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,168,32,0.055) 0%, transparent 70%);
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1rem 1.25rem;
  position: relative;
  z-index: 1;
}

.card-platform-placeholder {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  flex: 1;
}

.card-rating { display: flex; align-items: center; gap: 0.75rem; }

.rating-score {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}

.rating-score sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-3);
  vertical-align: baseline;
}

.rating-stars-wrap { display: flex; flex-direction: column; gap: 0.15rem; }

.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.92rem;
}

.rating-count { font-size: 0.7rem; color: var(--text-3); }

.card-bonus {
  background: rgba(232,168,32,0.07);
  border: 1px solid rgba(232,168,32,0.18);
  border-radius: var(--radius);
  padding: 0.88rem 1rem;
}

.bonus-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.bonus-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.45;
}

.card-payments {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.payments-label {
  font-size: 0.68rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 0.1rem;
}

.payment-badge {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 0.28rem 0.52rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-2);
  transition: var(--transition);
}

.payment-badge:hover { border-color: var(--border); color: var(--text-1); }

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--green-hover), var(--green));
  color: #fff;
  font-weight: 700;
  font-size: 0.935rem;
  padding: 0.82rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: auto;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--green-glow);
  background: linear-gradient(135deg, var(--green), #2ed675);
}

.btn-cta-arrow {
  width: 15px; height: 15px;
  transition: transform var(--transition);
}

.btn-cta:hover .btn-cta-arrow { transform: translateX(3px); }

.card-disclaimer {
  font-size: 0.68rem;
  color: var(--text-3);
  text-align: center;
  padding: 0 1.5rem 1.2rem;
  line-height: 1.45;
}

/* ================================================
   POURQUOI NOUS
   ================================================ */

#pourquoi { background: var(--bg-0); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(232,168,32,0.14), rgba(232,168,32,0.04));
  border: 1px solid rgba(232,168,32,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.05rem;
}

.feature-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.45rem;
}

.feature-card p { font-size: 0.865rem; color: var(--text-2); line-height: 1.62; }

/* ================================================
   RESPONSIBLE GAMING
   ================================================ */

#responsible {
  background: linear-gradient(135deg, #070a10, #0e1520);
  padding: 4rem 2rem;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.responsible-banner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
}

.responsible-icon { font-size: 2.5rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }

.responsible-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fca5a5;
  margin-bottom: 0.55rem;
}

.responsible-content p {
  font-size: 0.885rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 0.55rem;
}

.responsible-content p:last-child { margin-bottom: 0; }

.responsible-link { color: var(--gold); text-decoration: underline; }

/* ================================================
   FAQ
   ================================================ */

#faq { background: var(--bg-1); }

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.7rem; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.18rem 1.45rem;
  text-align: left;
  font-size: 0.945rem;
  font-weight: 600;
  color: var(--text-1);
  transition: color var(--transition);
  font-family: var(--font-body);
  cursor: pointer;
}

.faq-question:hover { color: var(--gold); }

.faq-chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}

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

.faq-answer-inner {
  padding: 0 1.45rem 1.35rem;
  font-size: 0.885rem;
  color: var(--text-2);
  line-height: 1.7;
  border-top: 1px solid var(--border-soft);
  padding-top: 1.05rem;
  margin-top: 0;
}

/* ================================================
   FOOTER
   ================================================ */

footer {
  background: #030507;
  border-top: 1px solid var(--border-soft);
  padding: 4rem 2rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto 2.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid var(--border-soft);
}

.footer-brand { display: flex; flex-direction: column; gap: 0.9rem; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-1);
}

.footer-logo .accent { color: var(--gold); }

.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-2);
  line-height: 1.65;
}

.footer-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  background: rgba(239,68,68,0.055);
  border: 1px solid rgba(239,68,68,0.14);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  font-size: 0.77rem;
  color: #fca5a5;
  line-height: 1.5;
  margin-top: 0.4rem;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.05rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }

.footer-col ul li a {
  font-size: 0.845rem;
  color: var(--text-2);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--text-1); }

.help-orgs { display: flex; flex-direction: column; gap: 0.55rem; }

.help-org-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.825rem;
  color: var(--text-2);
  transition: color var(--transition);
}

.help-org-link:hover { color: var(--text-1); }

.help-org-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-bottom p { font-size: 0.78rem; color: var(--text-3); }

.footer-bottom-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-3);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--text-2); }

/* ================================================
   SCROLL REVEAL
   ================================================ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ================================================
   SUBPAGE
   ================================================ */

.subpage-hero {
  padding: 4rem 2rem 3rem;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(232,168,32,0.08);
  border: 1px solid rgba(232,168,32,0.2);
  padding: 0.48rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.75rem;
  transition: var(--transition);
}

.back-btn:hover { background: rgba(232,168,32,0.14); }

.subpage-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.subpage-hero .updated { font-size: 0.78rem; color: var(--text-3); }

.subpage-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
}

.subpage-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-1);
  margin: 2.5rem 0 0.85rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-soft);
}

.subpage-content h2:first-child { border-top: none; margin-top: 0; }

.subpage-content p {
  font-size: 0.915rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 0.95rem;
}

.subpage-content ul,
.subpage-content ol {
  margin: 0.65rem 0 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.subpage-content li {
  font-size: 0.915rem;
  color: var(--text-2);
  line-height: 1.65;
}

.subpage-content a { color: var(--gold); text-decoration: underline; }
.subpage-content a:hover { color: var(--gold-light); }

.info-box {
  background: rgba(232,168,32,0.07);
  border: 1px solid rgba(232,168,32,0.2);
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
  margin: 1.4rem 0;
  font-size: 0.89rem;
  color: var(--text-1);
  line-height: 1.65;
}

.warning-box {
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
  margin: 1.4rem 0;
  font-size: 0.89rem;
  color: #fca5a5;
  line-height: 1.65;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .platforms-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 640px) {
  section { padding: 4rem 1.25rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
  .hero-stats { gap: 1.5rem; }
  .responsible-banner { flex-direction: column; gap: 1rem; }
  .age-gate-card { padding: 2rem 1.5rem; }
}

@media (max-width: 420px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
