/* ============================================
   PARIS BETTING ELITE HUB — STYLES PRINCIPAUX
   ============================================ */

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

/* ── Variables ── */
:root {
  --navy:        #0A1628;
  --navy-mid:    #0F2040;
  --navy-light:  #162B52;
  --gold:        #C9A84C;
  --gold-light:  #E8C87A;
  --gold-pale:   #F5E6B8;
  --red-accent:  #D94F3A;
  --green-ok:    #2EAF72;
  --white:       #FFFFFF;
  --off-white:   #F4F6FA;
  --grey-100:    #E8ECF4;
  --grey-300:    #B0BAD0;
  --grey-500:    #6B7A99;
  --grey-700:    #3A4560;

  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;

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

  --shadow-card: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 30px rgba(201,168,76,0.25);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);

  --nav-h:       72px;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

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

.age-gate__box {
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation: fadeScaleIn 0.5s ease forwards;
}
.age-gate__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.age-gate__icon svg { width: 30px; height: 30px; stroke: var(--navy); stroke-width: 2.2; fill: none; }
.age-gate__title {
  font-family: var(--font-head);
  font-size: 1.7rem; font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.age-gate__sub {
  color: var(--grey-300);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.6;
}
.age-gate__actions { display: flex; flex-direction: column; gap: 12px; }
.btn-confirm {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700; font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}
.btn-decline {
  background: transparent;
  border: 1px solid var(--grey-500);
  color: var(--grey-300);
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-decline:hover { border-color: var(--red-accent); color: var(--red-accent); }

.age-gate__denied {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}
.age-gate__denied.visible { display: flex; }
.denied-icon {
  width: 72px; height: 72px;
  background: rgba(217,79,58,0.15);
  border: 2px solid var(--red-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.denied-icon svg { width: 32px; height: 32px; stroke: var(--red-accent); stroke-width: 2; fill: none; }
.age-gate__denied h2 {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 800;
  color: var(--red-accent);
}
.age-gate__denied p { color: var(--grey-300); font-size: 0.9rem; text-align: center; }

/* ============================================
   COOKIE CONSENT
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 8000;
  width: min(680px, calc(100% - 32px));
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: var(--shadow-card);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#cookie-banner.hidden {
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}
.cookie-banner__text { flex: 1; min-width: 200px; font-size: 0.88rem; color: var(--grey-300); }
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  padding: 10px 20px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-cookie-accept:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(201,168,76,0.4); }
.btn-cookie-decline {
  background: transparent; border: 1px solid var(--grey-500);
  color: var(--grey-300); font-size: 0.85rem;
  padding: 10px 16px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-cookie-decline:hover { border-color: var(--grey-300); color: var(--white); }

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 5%;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15), 0 4px 20px rgba(0,0,0,0.3);
}
.nav__inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
}
.nav__logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.nav__logo span { color: var(--white); }
.nav__logo em { color: var(--gold); font-style: normal; }
.nav__links {
  display: flex; align-items: center; gap: 4px;
}
.nav__links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--grey-300);
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav__cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.nav__cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.45) !important;
}
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px; transition: var(--transition);
  display: block;
}
.nav__mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  padding: 16px 5% 24px;
  flex-direction: column; gap: 4px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1rem; font-weight: 500;
  color: var(--grey-300); padding: 12px 16px;
  border-radius: var(--radius-sm); transition: var(--transition);
}
.nav__mobile a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav__mobile .nav__cta {
  margin-top: 8px; text-align: center;
}

/* ============================================
   HERO
   ============================================ */
#accueil {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 5% 80px;
  text-align: center;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #040e1e 0%, #0A1628 40%, #0d1f3d 70%, #0a1428 100%);
}
.hero__particles {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden;
}
.hero__particles::before,
.hero__particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.hero__particles::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: floatOrb 12s ease-in-out infinite;
}
.hero__particles::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1a4a8a 0%, transparent 70%);
  bottom: -80px; left: -80px;
  animation: floatOrb 16s ease-in-out infinite reverse;
}
.hero__grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero__title .accent { color: var(--gold); }
.hero__desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--grey-300);
  max-width: 580px; margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 16px 36px; border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
  transition: var(--transition); display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,76,0.55); }
.btn-secondary {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 15px 28px; border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-secondary:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.hero__stats {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; margin-top: 60px;
  flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--gold);
}
.hero__stat-label { font-size: 0.8rem; color: var(--grey-500); text-transform: uppercase; letter-spacing: 0.05em; }
.hero__stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ============================================
   SECTION GENERALE
   ============================================ */
section { padding: 96px 5%; }
.section__inner { max-width: 1280px; margin: 0 auto; }
.section__header { text-align: center; margin-bottom: 64px; }
.section__tag {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 16px;
}
.section__title .accent { color: var(--gold); }
.section__desc { color: var(--grey-300); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ============================================
   CARDS PLATEFORMES
   ============================================ */
#plateformes { background: linear-gradient(180deg, var(--navy) 0%, #070f1e 100%); }
.platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.platform-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy-mid), var(--navy-light));
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.platform-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.platform-card--top {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.2), var(--shadow-glow);
}
.platform-card--top::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 1;
}

/* Ribbon */
.ribbon {
  position: absolute; top: 20px; left: -4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-head); font-weight: 800; font-size: 0.82rem;
  padding: 6px 18px 6px 12px;
  clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%);
  z-index: 2;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.ribbon--silver { background: linear-gradient(135deg, #7a8fa8, #aabccc); }
.ribbon--bronze { background: linear-gradient(135deg, #9a6840, #c09060); }

/* Card image slot */
.card__img-wrap {
  width: 100%; height: 160px;
  background: linear-gradient(135deg, #060f22 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.card__img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}
.platform-card:hover .card__img-wrap img { transform: scale(1.05); }
.card__img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--grey-700); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.card__img-placeholder svg { width: 36px; height: 36px; stroke: var(--grey-700); fill: none; stroke-width: 1.5; }

/* Card body */
.card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 18px; }
.card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.card__name {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 800;
  color: var(--white);
}
.card__score-wrap { text-align: right; flex-shrink: 0; }
.card__score {
  font-family: var(--font-head); font-size: 1.9rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.card__stars { display: flex; gap: 3px; justify-content: flex-end; margin-top: 4px; }
.card__stars svg { width: 13px; height: 13px; fill: var(--gold); }

/* Bonus tag */
.card__bonus {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.card__bonus-label {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold); margin-bottom: 5px;
}
.card__bonus-text {
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 700;
  color: var(--white); line-height: 1.35;
}

/* Payment icons */
.card__payments { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.card__payments-label { font-size: 0.72rem; color: var(--grey-500); margin-right: 2px; }
.payment-icon {
  height: 26px; padding: 4px 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; color: var(--grey-300);
  letter-spacing: 0.03em;
}

/* CTA */
.card__cta {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 14px 20px; border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
  margin-top: auto; letter-spacing: 0.02em;
}
.card__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.5); }
.card__cta--outline {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  box-shadow: none;
}
.card__cta--outline:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.2);
}

/* ============================================
   POURQUOI NOUS
   ============================================ */
#apropos {
  background: linear-gradient(180deg, #070f1e 0%, var(--navy) 100%);
}
.why__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.why__features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why__feature {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}
.why__feature:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.why__feature-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.why__feature-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.why__feature-title {
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 700;
  margin-bottom: 6px;
}
.why__feature-desc { font-size: 0.84rem; color: var(--grey-300); line-height: 1.55; }
.why__text { display: flex; flex-direction: column; gap: 24px; }
.why__text .section__tag,
.why__text .section__title,
.why__text .section__desc { text-align: left; margin: 0; }
.why__list { display: flex; flex-direction: column; gap: 12px; }
.why__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: var(--grey-300);
}
.check-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check-icon svg { width: 11px; height: 11px; stroke: var(--gold); fill: none; stroke-width: 2.5; }

/* ============================================
   RESPONSIBLE GAMING BANNER
   ============================================ */
#responsible {
  padding: 56px 5%;
  background: linear-gradient(135deg, rgba(217,79,58,0.06) 0%, rgba(10,22,40,0) 100%);
  border-top: 1px solid rgba(217,79,58,0.12);
  border-bottom: 1px solid rgba(217,79,58,0.12);
}
.resp__inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; gap: 36px;
  flex-wrap: wrap;
}
.resp__icon {
  width: 68px; height: 68px; flex-shrink: 0;
  background: rgba(217,79,58,0.1);
  border: 2px solid rgba(217,79,58,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.resp__icon svg { width: 30px; height: 30px; stroke: var(--red-accent); fill: none; stroke-width: 1.8; }
.resp__content { flex: 1; min-width: 260px; }
.resp__title {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.resp__text { font-size: 0.88rem; color: var(--grey-300); line-height: 1.65; }
.resp__text a { color: var(--gold); text-decoration: underline; }
.resp__badge {
  background: rgba(217,79,58,0.1);
  border: 1px solid rgba(217,79,58,0.25);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center; flex-shrink: 0;
}
.resp__badge-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; color: var(--red-accent); }
.resp__badge-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-500); }

/* ============================================
   FAQ
   ============================================ */
#faq { background: var(--navy); }
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color 0.3s ease;
}
.faq__item.open { border-color: rgba(201,168,76,0.3); }
.faq__question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-head); font-size: 0.97rem; font-weight: 600;
  color: var(--white);
  transition: color 0.3s ease;
  gap: 16px;
  user-select: none;
}
.faq__question:hover { color: var(--gold); }
.faq__item.open .faq__question { color: var(--gold); }
.faq__icon {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(201,168,76,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s ease, background 0.3s ease;
}
.faq__item.open .faq__icon { transform: rotate(45deg); background: rgba(201,168,76,0.18); }
.faq__icon svg { width: 14px; height: 14px; stroke: var(--gold); stroke-width: 2.2; fill: none; }
.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 24px;
}
.faq__item.open .faq__answer { max-height: 320px; padding: 0 24px 22px; }
.faq__answer p { font-size: 0.9rem; color: var(--grey-300); line-height: 1.75; }

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: linear-gradient(180deg, #060d1c 0%, #030810 100%);
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 64px 5% 32px;
}
.footer__inner { max-width: 1280px; margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
}
.footer__logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.footer__logo em { color: var(--gold); font-style: normal; }
.footer__about { font-size: 0.85rem; color: var(--grey-500); line-height: 1.65; }
.footer__disclaimer {
  font-size: 0.77rem; color: var(--grey-700);
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  border-left: 2px solid rgba(217,79,58,0.5);
  line-height: 1.55;
}
.footer__col h4 {
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold); margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.86rem; color: var(--grey-500);
  transition: color 0.25s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.footer__col ul li a:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 0.78rem; color: var(--grey-700); }
.footer__legal-bottom { font-size: 0.78rem; color: var(--grey-700); }
.footer__age {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border: 1.5px solid var(--red-accent);
  border-radius: 6px;
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 800;
  color: var(--red-accent);
}

/* ============================================
   SUBPAGES
   ============================================ */
.subpage {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 5% 80px;
}
.subpage__inner { max-width: 860px; margin: 0 auto; }
.btn-back {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
  padding: 10px 20px; border-radius: var(--radius-md);
  margin-bottom: 40px; transition: var(--transition);
}
.btn-back:hover { background: rgba(201,168,76,0.14); transform: translateX(-4px); }
.btn-back svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform 0.2s ease; }
.btn-back:hover svg { transform: translateX(-2px); }
.subpage__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900; margin-bottom: 8px;
}
.subpage__subtitle {
  font-size: 0.88rem; color: var(--grey-500);
  margin-bottom: 48px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.subpage__content { display: flex; flex-direction: column; gap: 40px; }
.subpage__section {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.subpage__section h2 {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  color: var(--gold); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(201,168,76,0.15);
}
.subpage__section h3 {
  font-family: var(--font-head); font-size: 0.97rem; font-weight: 600;
  color: var(--white); margin-bottom: 8px; margin-top: 20px;
}
.subpage__section p {
  font-size: 0.9rem; color: var(--grey-300); line-height: 1.78; margin-bottom: 10px;
}
.subpage__section ul {
  list-style: disc; padding-left: 18px;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 10px;
}
.subpage__section ul li { font-size: 0.9rem; color: var(--grey-300); line-height: 1.65; }
.subpage__section a { color: var(--gold); text-decoration: underline; }
.subpage__alert {
  background: rgba(217,79,58,0.07);
  border: 1px solid rgba(217,79,58,0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.88rem; color: var(--grey-300); line-height: 1.7;
  border-left: 3px solid var(--red-accent);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.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.4s; }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeScaleIn {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(28px, -18px); }
  66%       { transform: translate(-18px, 14px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .platforms__grid { grid-template-columns: 1fr 1fr; }
  .platform-card:last-child { grid-column: span 2; max-width: 520px; margin: 0 auto; width: 100%; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .platforms__grid { grid-template-columns: 1fr; }
  .platform-card:last-child { grid-column: span 1; max-width: 100%; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .why__features { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .resp__inner { flex-direction: column; text-align: center; }
  #cookie-banner { flex-direction: column; text-align: center; }
  .cookie-banner__actions { justify-content: center; }
  section { padding: 64px 5%; }
}
@media (max-width: 480px) {
  .hero__stats { gap: 16px; }
  .hero__stat-divider { display: none; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn-primary,
  .hero__actions .btn-secondary { width: 100%; justify-content: center; }
  .age-gate__box { padding: 36px 24px; }
  .why__features { gap: 14px; }
}
