/* ===========================
   FRANCEFORTUNEEXPERT.COM
   Design System & Styles
   =========================== */

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

/* --- Variables --- */
:root {
  --bg-deep:        #06101A;
  --bg-surface:     #0C1C2E;
  --bg-card:        #102035;
  --bg-card-hover:  #152B45;

  --gold:           #D4A017;
  --gold-light:     #F0C040;
  --gold-glow:      rgba(212, 160, 23, 0.13);
  --teal:           #0E7490;
  --teal-light:     #22B8D4;

  --text-primary:   #F2EDE4;
  --text-secondary: #8FA5BE;
  --text-muted:     #536478;

  --border:         rgba(212, 160, 23, 0.14);
  --border-hover:   rgba(212, 160, 23, 0.38);

  --star-color:     #FFB800;
  --success:        #22C55E;
  --danger:         #EF4444;

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

  --shadow-card:    0 4px 32px rgba(0,0,0,0.35);
  --shadow-hover:   0 8px 48px rgba(212,160,23,0.10);
  --shadow-glow:    0 0 40px rgba(212,160,23,0.12);

  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:0.15s ease;

  --nav-height:     72px;
}

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

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 600; }
p  { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.75; }

/* --- Layout --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 540px; margin: 0 auto; font-size: 1rem; }

.section-label {
  display: inline-block;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.divider {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 14px auto 0;
  border-radius: 2px;
}
.text-gold  { color: var(--gold); }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, #a07610 100%);
  color: #06101a;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(212,160,23,0.22);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.36);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 22px;
  border: 1.5px solid var(--border-hover);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}

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

.age-gate-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation: fadeInScale 0.4s ease;
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}
.age-gate-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: var(--gold-glow);
  border: 1.5px solid var(--border-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-gate-card h2 { font-size: 1.65rem; margin-bottom: 10px; }
.age-gate-card > p { font-size: 0.87rem; margin-bottom: 30px; color: var(--text-secondary); }
.age-gate-actions { display: flex; flex-direction: column; gap: 11px; }
.age-gate-actions .btn-primary { justify-content: center; font-size: 0.94rem; padding: 14px; }
.btn-deny {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 10px;
  transition: color var(--transition-fast);
}
.btn-deny:hover { color: var(--danger); }
.age-gate-disclaimer {
  margin-top: 18px;
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.access-denied h2 { color: var(--danger); margin-bottom: 10px; }
.access-denied p  { font-size: 0.88rem; color: var(--text-secondary); }

/* ===========================
   COOKIE BANNER
   =========================== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  background: rgba(8, 19, 32, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#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: 240px; }
.cookie-text p  { font-size: 0.83rem; color: var(--text-secondary); }
.cookie-text a  { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-cookie-accept {
  background: linear-gradient(135deg, var(--gold), #a07610);
  color: #06101a;
  font-weight: 700;
  font-size: 0.83rem;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition-fast);
}
.btn-cookie-accept:hover { opacity: 0.88; }
.btn-cookie-refuse {
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.btn-cookie-refuse:hover { color: var(--text-primary); border-color: var(--text-muted); }

/* ===========================
   NAVBAR
   =========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
#navbar.scrolled {
  background: rgba(6, 16, 26, 0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
}
.nav-logo .accent { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover             { color: var(--text-primary); }
.nav-links a:hover::after      { width: 100%; }
.nav-cta { margin-left: 6px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(6, 16, 26, 0.97);
  backdrop-filter: blur(20px);
  padding: 20px 24px 28px;
  border-bottom: 1px solid var(--border);
  z-index: 890;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition-fast);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn-primary { margin-top: 14px; justify-content: center; }

/* ===========================
   HERO
   =========================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 65% 40%, rgba(212,160,23,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 15% 70%, rgba(14,116,144,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #06101A 0%, #081525 55%, #06101A 100%);
  z-index: 0;
}
.hero-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.18;
  animation: orbFloat 9s ease-in-out infinite;
}
.orb-1 { width: 520px; height: 520px; background: var(--gold);       top: -140px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: var(--teal);       bottom: 30px; left: -60px;  animation-delay: 3.5s; }
.orb-3 { width: 180px; height: 180px; background: var(--gold-light); top: 45%; left: 42%;        animation-delay: 5.5s; }
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.06); }
}
.hero-stars { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.star-dot {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: 0.15; }
  50%       { opacity: 0.85; }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.09);
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  padding: 6px 16px 6px 10px;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 4px var(--gold); }
  50%       { box-shadow: 0 0 14px var(--gold); }
}
.hero-content h1 { margin-bottom: 18px; }
.hero-content h1 em { font-style: normal; color: var(--gold); }
.hero-content > p {
  font-size: 1.04rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 42px; margin-top: 56px; flex-wrap: wrap; }
.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounceCue 2.5s ease-in-out infinite;
}
@keyframes bounceCue {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 1; }
}

/* ===========================
   PLATFORM CARDS
   =========================== */
#plateformes { background: var(--bg-deep); }
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.platform-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.platform-card.featured {
  border-color: rgba(212,160,23,0.32);
  box-shadow: var(--shadow-card), 0 0 36px rgba(212,160,23,0.07);
  transform: scale(1.025);
}
.platform-card.featured:hover { transform: scale(1.025) translateY(-5px); }

.card-ribbon {
  position: absolute;
  top: 12px; right: 0;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #06101a;
  padding: 4px 12px 4px 9px;
  clip-path: polygon(8px 0%, 100% 0%, 100% 100%, 0% 100%);
}
.rank-1 .card-ribbon { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.rank-2 .card-ribbon { background: linear-gradient(135deg, #B0BEC8, #8A9BAB); color: #102035; }
.rank-3 .card-ribbon { background: linear-gradient(135deg, #D4845A, #A05030); }

.card-img-wrap {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  min-height: 96px;
}
.card-img-wrap img {
  width: 100%;
  max-width: 260px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  display: block;
}

.card-header {
  padding: 16px 22px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.card-title-area h3 { font-size: 1.07rem; margin-bottom: 3px; }
.card-rank-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.rank-1 .card-rank-label { color: var(--gold); }

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

.card-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.stars { display: flex; gap: 2px; }
.star { color: var(--star-color); font-size: 0.88rem; }
.rating-score {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
}
.rating-max { font-size: 0.8rem; color: var(--text-muted); align-self: flex-end; margin-bottom: 2px; }

.card-bonus-box {
  background: rgba(212,160,23,0.05);
  border: 1px solid rgba(212,160,23,0.16);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  margin-bottom: 14px;
}
.card-bonus-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.card-bonus-text {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.45;
}

.card-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.card-feature {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.81rem;
  color: var(--text-secondary);
}
.feature-check { color: var(--success); flex-shrink: 0; font-size: 0.85rem; }

.card-payments { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; flex-wrap: wrap; }
.card-payments-label { font-size: 0.68rem; color: var(--text-muted); margin-right: 2px; }
.pay-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 3px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}
.pay-visa    { color: #1A1F71; background: #fff; }
.pay-mc      { color: #EB001B; background: #fff; }
.pay-paypal  { color: #003087; background: #fff; }
.pay-skrill  { color: #862165; background: #fff; }

.card-cta { width: 100%; justify-content: center; font-size: 0.9rem; padding: 13px; }
.card-disclaimer {
  text-align: center;
  font-size: 0.67rem;
  color: var(--text-muted);
  margin-top: 9px;
  line-height: 1.4;
}

/* ===========================
   POURQUOI NOUS
   =========================== */
#apropos { background: var(--bg-surface); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.why-icon {
  width: 50px; height: 50px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { margin-bottom: 9px; font-size: 1.07rem; }
.why-card p  { font-size: 0.85rem; }

/* ===========================
   RESPONSIBLE BANNER
   =========================== */
#responsible {
  background: linear-gradient(135deg, rgba(14,116,144,0.10) 0%, transparent 60%), var(--bg-deep);
  border-top: 1px solid rgba(14,116,144,0.14);
  border-bottom: 1px solid rgba(14,116,144,0.14);
  padding: 60px 0;
}
.responsible-inner { display: flex; align-items: center; gap: 38px; flex-wrap: wrap; }
.responsible-icon-wrap {
  flex-shrink: 0;
  width: 76px; height: 76px;
  background: rgba(14,116,144,0.14);
  border: 1.5px solid rgba(22,184,212,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.responsible-icon-wrap svg { width: 36px; height: 36px; stroke: var(--teal-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.responsible-text { flex: 1; min-width: 240px; }
.responsible-text h2 { font-size: 1.45rem; margin-bottom: 7px; }
.responsible-text p  { font-size: 0.87rem; }
.responsible-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.responsible-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-light);
  padding: 5px 13px;
  border: 1px solid rgba(22,184,212,0.22);
  border-radius: 50px;
  transition: var(--transition-fast);
}
.responsible-link:hover { background: rgba(22,184,212,0.09); border-color: var(--teal-light); }
.responsible-age { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.age-badge-large {
  width: 62px; height: 62px;
  background: rgba(239,68,68,0.09);
  border: 2px solid rgba(239,68,68,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.25rem;
  color: var(--danger);
}
.responsible-age > span { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===========================
   FAQ
   =========================== */
#faq { background: var(--bg-deep); }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-hover); }
.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-fast);
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-q-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(212,160,23,0.18);
  border-color: var(--gold);
}
.faq-icon svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.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: 16px 22px 20px;
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* ===========================
   FOOTER
   =========================== */
#footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 310px;
}
.footer-disclaimer {
  margin-top: 12px;
  padding: 11px 13px;
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.14);
  border-radius: var(--radius-sm);
  font-size: 0.73rem;
  color: rgba(239,68,68,0.75);
  line-height: 1.55;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 0.77rem; color: var(--text-muted); }
.footer-18 { display: flex; align-items: center; gap: 7px; font-size: 0.77rem; color: var(--text-muted); }
.badge-18 {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border: 1.5px solid rgba(239,68,68,0.45);
  border-radius: 50%;
  color: var(--danger);
  font-size: 0.69rem;
  font-weight: 700;
}

/* ===========================
   SUBPAGES
   =========================== */
.subpage-hero {
  padding: 120px 0 60px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.subpage-hero .section-label { display: block; }
.subpage-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-top: 10px; }
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold);
  padding: 8px 16px;
  background: var(--gold-glow);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), background var(--transition);
  margin-bottom: 28px;
}
.back-btn:hover { background: rgba(212,160,23,0.14); transform: translateX(-3px); }
.back-btn svg { stroke: var(--gold); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.subpage-content { padding: 60px 0 96px; }
.subpage-content .container { max-width: 800px; }

.last-updated {
  display: inline-block;
  font-size: 0.77rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 5px 13px;
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
}
.prose h2 {
  font-size: 1.35rem;
  margin: 34px 0 11px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  padding-bottom: 9px;
}
.prose h3 { font-size: 1.02rem; margin: 22px 0 7px; color: var(--gold); }
.prose p  { font-size: 0.91rem; margin-bottom: 13px; color: var(--text-secondary); }
.prose ul { margin: 8px 0 13px 0; display: flex; flex-direction: column; gap: 5px; }
.prose ul li {
  font-size: 0.91rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.prose a     { color: var(--gold); text-decoration: underline; }
.prose strong{ color: var(--text-primary); font-weight: 600; }
.info-box {
  background: rgba(14,116,144,0.07);
  border: 1px solid rgba(22,184,212,0.18);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 22px 0;
}
.info-box p { color: var(--teal-light); font-size: 0.87rem; margin: 0; }

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

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(212,160,23,0.28); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212,160,23,0.52); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .platforms-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .platform-card.featured { transform: none; }
  .platform-card.featured:hover { transform: translateY(-5px); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-stats { gap: 22px; }
  .why-grid { grid-template-columns: 1fr; }
  .responsible-inner { flex-direction: column; text-align: center; }
  .responsible-links { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
  .age-gate-card { padding: 34px 22px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept,
  .btn-cookie-refuse { flex: 1; text-align: center; }
}
