/* ============================================================
   PARIS LUCKY ELITE BET CLUB — style.css
   ============================================================ */

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

/* ---------- Custom Properties ---------- */
:root {
  --navy-950: #04070f;
  --navy-900: #070d1a;
  --navy-800: #0b1425;
  --navy-700: #111e35;
  --navy-600: #1a2d4e;
  --gold-300: #f7dfa0;
  --gold-400: #ecc85a;
  --gold-500: #d4a843;
  --gold-600: #b88a28;
  --crimson: #c41230;
  --crimson-light: #e01535;
  --white: #ffffff;
  --gray-100: #eef0f6;
  --gray-200: #d8dce8;
  --gray-400: #8a93a8;
  --gray-500: #606880;
  --text-light: #dde1ed;
  --text-muted: #8a93a8;
  --gradient-gold: linear-gradient(135deg, #d4a843 0%, #f0c96e 50%, #c9902a 100%);
  --gradient-hero: linear-gradient(135deg, #04070f 0%, #0b1a35 50%, #0a1025 100%);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.3);
  --shadow-gold: 0 0 30px rgba(212,168,67,0.25);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy-900);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; font-weight: 700; }

/* ---------- Utility ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.gold-text { color: var(--gold-400); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy-900);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.4);
  filter: brightness(1.08);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold-500);
  color: var(--gold-400);
}
.btn-outline:hover {
  background: rgba(212,168,67,0.1);
  transform: translateY(-2px);
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

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

.age-gate-box {
  background: linear-gradient(160deg, #111e35 0%, #0b1425 100%);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), var(--shadow-gold);
  animation: scaleIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

.age-gate-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--navy-900);
}
.age-gate-box h2 {
  font-size: 1.85rem;
  margin-bottom: 12px;
  color: var(--white);
}
.age-gate-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 30px;
  line-height: 1.7;
}
.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.age-gate-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 0.95rem;
}
.age-gate-disclaimer {
  margin-top: 18px;
  font-size: 0.74rem;
  color: var(--gray-500);
  line-height: 1.55;
}
#access-refused {
  background: linear-gradient(160deg, #1a0a10 0%, #0f0508 100%);
  border-color: rgba(196,18,48,0.4);
}
#access-refused .age-gate-icon {
  background: linear-gradient(135deg, #c41230, #e01535);
  font-size: 2.2rem;
}
#access-refused h2 { color: #ff6b7a; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8888;
  background: linear-gradient(135deg, #111e35 0%, #0b1425 100%);
  border-top: 1px solid rgba(212,168,67,0.2);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner.hidden { display: none; }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong { display: block; color: var(--gold-400); margin-bottom: 3px; font-size: 0.93rem; }
.cookie-text p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.cookie-text a { color: var(--gold-500); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 20px; font-size: 0.83rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(7,13,26,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(212,168,67,0.08);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-900);
}
.nav-logo-icon svg { width: 20px; height: 20px; }
.nav-logo .accent { color: var(--gold-400); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--gray-200);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold-400);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-400); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { padding: 10px 22px; font-size: 0.84rem; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--gold-400); border-radius: 2px; transition: var(--transition); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7,13,26,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1.35rem; font-family: 'Playfair Display', serif; color: var(--text-light); transition: color var(--transition); }
.nav-mobile a:hover { color: var(--gold-400); }
.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2rem;
  color: var(--gray-400);
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  line-height: 1;
}
.nav-mobile-close:hover { color: var(--gold-400); }

/* ============================================================
   HERO
   ============================================================ */
#accueil {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero-orb-1 { width: 650px; height: 650px; background: radial-gradient(circle, #d4a843, transparent); top: -250px; right: -180px; animation-delay: 0s; }
.hero-orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #1a2d4e, transparent); bottom: -120px; left: -120px; opacity: 0.25; animation-delay: -5s; }
.hero-orb-3 { width: 350px; height: 350px; background: radial-gradient(circle, #c41230, transparent); top: 40%; left: 35%; opacity: 0.09; animation-delay: -9s; }

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

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

.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,0.09);
  border: 1px solid rgba(212,168,67,0.28);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 26px;
  animation: fadeSlideDown 0.8s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.6); }
}

.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 22px;
  animation: fadeSlideUp 0.9s 0.15s ease both;
}
.hero h1 em { font-style: normal; color: var(--gold-400); }

.hero-desc {
  font-size: clamp(0.96rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 38px;
  line-height: 1.8;
  animation: fadeSlideUp 0.9s 0.3s ease both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s 0.45s ease both;
}
.hero-actions .btn { font-size: 1rem; padding: 15px 34px; }

.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(212,168,67,0.12);
  animation: fadeSlideUp 0.9s 0.6s ease both;
  flex-wrap: wrap;
}
.hero-stat-value { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 800; color: var(--gold-400); }
.hero-stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; letter-spacing: 0.04em; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  animation: bounceY 2.5s ease-in-out infinite;
  cursor: pointer;
}
.hero-scroll span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-400); }
@keyframes bounceY {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   PLATFORMS
   ============================================================ */
#plateformes { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--white); margin-bottom: 12px; }
.section-header p { font-size: 0.97rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.75; }

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

/* --- Card --- */
.platform-card {
  background: linear-gradient(160deg, #111e35 0%, #0b1425 100%);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-card);
}
.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(212,168,67,0.1);
  border-color: rgba(212,168,67,0.35);
}
.platform-card.card-featured {
  border-color: rgba(212,168,67,0.38);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.card-rank {
  position: absolute;
  top: 16px;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 15px 5px 12px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 50%, calc(100% - 7px) 100%, 0 100%);
}
.rank-1 { background: linear-gradient(90deg, #c9902a, #f0c96e, #d4a843); color: var(--navy-900); }
.rank-2 { background: linear-gradient(90deg, #7a8499, #b0bac9); color: var(--navy-900); }
.rank-3 { background: linear-gradient(90deg, #a0622a, #c9804a); color: #fff; }

.card-featured-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gradient-gold);
  color: var(--navy-900);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 3;
}

.card-image {
  height: 128px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-image-pmu { background: #111111; }
.card-image img { max-height: 76px; max-width: 78%; object-fit: contain; }

.card-body { padding: 20px 20px 18px; }

.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.card-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.stars { display: flex; gap: 3px; }
.star { width: 15px; height: 15px; color: var(--gold-400); }
.rating-score { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 800; color: var(--gold-400); line-height: 1; }
.rating-max { font-size: 0.76rem; color: var(--text-muted); }

.card-bonus {
  background: rgba(212,168,67,0.07);
  border: 1px solid rgba(212,168,67,0.18);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 14px;
}
.card-bonus-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 4px; }
.card-bonus-text { font-size: 0.86rem; color: var(--gold-300); font-weight: 500; line-height: 1.45; }

.card-payments { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.card-payments-label { font-size: 0.7rem; color: var(--text-muted); margin-right: 2px; }

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-200);
}

.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  transition: var(--transition);
  background: var(--gradient-gold);
  color: var(--navy-900);
  text-decoration: none;
}
.card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.4);
  filter: brightness(1.08);
}

.card-disclaimer { text-align: center; font-size: 0.68rem; color: var(--text-muted); margin-top: 9px; line-height: 1.5; }

/* ============================================================
   POURQUOI NOUS
   ============================================================ */
#apropos {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
.apropos-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.apropos-text h2 { font-size: clamp(1.85rem, 3.5vw, 2.5rem); color: var(--white); margin-bottom: 16px; }
.apropos-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 30px; font-size: 0.94rem; }

.apropos-features { display: flex; flex-direction: column; gap: 14px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,168,67,0.1);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background var(--transition);
}
.feature-item:hover { background: rgba(212,168,67,0.05); border-color: rgba(212,168,67,0.25); }
.feature-icon {
  width: 42px; height: 42px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-900);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-content h4 { font-size: 0.92rem; color: var(--white); margin-bottom: 3px; font-family: 'Inter', sans-serif; font-weight: 600; }
.feature-content p { font-size: 0.81rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.apropos-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card {
  background: linear-gradient(135deg, #111e35, #0b1425);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { border-color: rgba(212,168,67,0.35); transform: translateY(-4px); }
.stat-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  line-height: 1;
}
.stat-card-label { font-size: 0.81rem; color: var(--text-muted); line-height: 1.4; }

/* ============================================================
   RESPONSIBLE GAMING
   ============================================================ */
#responsable { padding: 60px 0; }
.responsible-banner {
  background: linear-gradient(135deg, #1a0e05 0%, #100c0a 100%);
  border: 1px solid rgba(212,168,67,0.2);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: flex;
  align-items: flex-start;
  gap: 26px;
}
.responsible-icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}
.responsible-icon svg { width: 26px; height: 26px; }
.responsible-content h3 { font-size: 1.25rem; color: var(--gold-400); margin-bottom: 8px; }
.responsible-content p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; margin-bottom: 14px; }
.responsible-links { display: flex; gap: 12px; flex-wrap: wrap; }
.responsible-links a { font-size: 0.79rem; color: var(--gold-500); text-decoration: underline; transition: color var(--transition); }
.responsible-links a:hover { color: var(--gold-300); }

/* ============================================================
   FAQ
   ============================================================ */
#faq { padding: 100px 0; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: linear-gradient(135deg, #111e35 0%, #0b1425 100%);
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(212,168,67,0.3); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 19px 22px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(212,168,67,0.04); }
.faq-question h4 { font-family: 'Inter', sans-serif; font-size: 0.93rem; font-weight: 600; color: var(--text-light); flex: 1; }
.faq-icon {
  width: 28px; height: 28px;
  background: rgba(212,168,67,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  color: var(--gold-400);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(212,168,67,0.2); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 22px 18px;
  border-top: 1px solid rgba(212,168,67,0.08);
  padding-top: 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
}
.faq-answer-inner a { color: var(--gold-500); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: linear-gradient(180deg, #060c18 0%, #03060a 100%);
  border-top: 1px solid rgba(212,168,67,0.09);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.81rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; max-width: 300px; }
.footer-disclaimer {
  background: rgba(196,18,48,0.07);
  border: 1px solid rgba(196,18,48,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.73rem;
  color: #ff8a8a;
  line-height: 1.6;
}
.footer-col h5 { font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.83rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.05);
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.77rem; color: var(--gray-500); }
.footer-bottom-age {
  background: rgba(196,18,48,0.14);
  border: 1px solid rgba(196,18,48,0.3);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.77rem;
  font-weight: 700;
  color: #ff6b7a;
  white-space: nowrap;
}

/* ============================================================
   SUBPAGES
   ============================================================ */
.subpage-hero {
  padding: 140px 0 64px;
  background: linear-gradient(160deg, #0b1425 0%, #070d1a 100%);
  border-bottom: 1px solid rgba(212,168,67,0.1);
}
.subpage-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--white); margin-bottom: 10px; }
.subpage-hero p { color: var(--text-muted); font-size: 0.92rem; }

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  font-size: 0.85rem;
  color: var(--gold-500);
  background: rgba(212,168,67,0.07);
  border: 1px solid rgba(212,168,67,0.18);
  padding: 8px 18px;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
}
.back-btn:hover { background: rgba(212,168,67,0.14); transform: translateX(-3px); }

.subpage-content { padding: 64px 0 96px; }
.content-box { max-width: 820px; }
.subpage-content h2 { font-size: 1.4rem; color: var(--gold-400); margin-bottom: 10px; margin-top: 34px; }
.subpage-content h2:first-child { margin-top: 0; }
.subpage-content p { color: var(--text-muted); font-size: 0.91rem; line-height: 1.85; margin-bottom: 12px; }
.subpage-content ul { list-style: disc; padding-left: 22px; color: var(--text-muted); font-size: 0.91rem; line-height: 1.85; margin-bottom: 12px; }
.subpage-content ul li { margin-bottom: 5px; }
.subpage-content a { color: var(--gold-500); text-decoration: underline; transition: color var(--transition); }
.subpage-content a:hover { color: var(--gold-300); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .apropos-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-stats { gap: 24px; }
  .hero-stat-value { font-size: 1.6rem; }
  .responsible-banner { flex-direction: column; padding: 26px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .apropos-stats { grid-template-columns: 1fr 1fr; }
  .age-gate-box { padding: 34px 22px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
  #plateformes, #apropos, #faq { padding: 70px 0; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section-header h2 { font-size: 1.8rem; }
  .apropos-stats { grid-template-columns: 1fr; }
}
