/* =========================================================
   France Fortune Center — style.css
   ========================================================= */

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

/* --- Custom Properties --- */
:root {
  --bg:          #07111f;
  --surface:     #0d1e35;
  --surface-2:   #122640;
  --surface-3:   #1a3254;
  --gold:        #c9a227;
  --gold-light:  #f0c642;
  --gold-dark:   #8a6e14;
  --gold-pale:   #f5e8b0;
  --text:        #e8e0d0;
  --text-muted:  #7a90ab;
  --text-light:  #bac9db;
  --border:      #1e3555;
  --border-gold: rgba(201,162,39,0.35);
  --accent:      #e8b84b;
  --success:     #2a9d6f;
  --warning:     #e67e22;
  --error:       #c0392b;
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(201,162,39,0.2);
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --nav-h:       70px;
  --tr:          0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }

/* =========================================================
   AGE GATE
   ========================================================= */
#age-gate {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4,8,20,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem;
}
#age-gate.hidden { display: none; }

.age-gate-box {
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 480px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow), var(--shadow-gold);
  animation: fadeInUp 0.5s ease;
}
.age-gate-logo {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; margin-bottom: 1.5rem;
}
.age-gate-logo svg { width: 36px; height: 36px; }
.age-gate-logo span {
  font-family: var(--font-head); font-size: 1.3rem;
  color: var(--text); font-weight: 700;
}
.age-gate-logo span em { font-style: normal; color: var(--gold); }
.age-badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,162,39,0.12); border: 2px solid var(--gold);
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  color: var(--gold); margin: 0 auto 1.25rem;
}
.age-gate-box h2 { color: var(--gold-light); margin-bottom: 0.75rem; font-size: 1.6rem; }
.age-gate-box > p {
  color: var(--text-light); font-size: 0.925rem;
  margin-bottom: 2rem; line-height: 1.7;
}
.age-gate-buttons { display: flex; gap: 0.75rem; flex-direction: column; }
.btn-age-yes {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #07111f; padding: 0.9rem 2rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
  transition: all var(--tr); box-shadow: 0 4px 15px rgba(201,162,39,0.4);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(201,162,39,0.6); }
.btn-age-no {
  background: transparent; color: var(--text-muted);
  padding: 0.7rem 2rem; border-radius: var(--radius);
  border: 1px solid var(--border); font-size: 0.875rem; transition: all var(--tr);
}
.btn-age-no:hover { border-color: var(--error); color: var(--error); }
.age-gate-note {
  margin-top: 1.5rem; font-size: 0.75rem; color: var(--text-muted);
  border-top: 1px solid var(--border); padding-top: 1rem; line-height: 1.6;
}
.age-gate-refused { text-align: center; }
.age-gate-refused .refused-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.age-gate-refused h3 { color: var(--error); font-size: 1.5rem; margin-bottom: 0.75rem; }
.age-gate-refused p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* =========================================================
   COOKIE CONSENT
   ========================================================= */
#cookie-consent {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: linear-gradient(135deg, var(--surface), #0f2039);
  border-top: 1px solid var(--border-gold);
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.6);
  transform: translateY(100%); transition: transform 0.4s ease;
}
#cookie-consent.visible { transform: translateY(0); }
#cookie-consent.hidden { display: none; }
.cookie-text { flex: 1; min-width: 240px; font-size: 0.875rem; color: var(--text-light); }
.cookie-text strong { color: var(--gold); }
.cookie-text a { color: var(--gold); font-size: 0.85rem; }
.cookie-buttons { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; }
.btn-cookie-accept {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #07111f; padding: 0.6rem 1.4rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.875rem; transition: all var(--tr);
}
.btn-cookie-accept:hover { box-shadow: 0 4px 15px rgba(201,162,39,0.4); transform: translateY(-1px); }
.btn-cookie-decline {
  background: transparent; color: var(--text-muted);
  padding: 0.6rem 1.2rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border); font-size: 0.875rem; transition: all var(--tr);
}
.btn-cookie-decline:hover { color: var(--text); border-color: var(--text-muted); }

/* =========================================================
   NAVBAR
   ========================================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 8000;
  height: var(--nav-h); display: flex; align-items: center;
  padding: 0 2rem; transition: background var(--tr), box-shadow var(--tr);
}
#navbar.scrolled {
  background: rgba(7,17,31,0.94);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  border-bottom: 1px solid var(--border-gold);
}
.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: 0.6rem; text-decoration: none;
}
.nav-logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo-text {
  font-family: var(--font-head); font-size: 1.1rem;
  font-weight: 700; color: var(--text); line-height: 1.2;
}
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--text-light); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.03em; transition: color var(--tr); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--tr); border-radius: 2px;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: #07111f !important; padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-sm) !important; font-weight: 700 !important;
  white-space: nowrap; transition: all var(--tr) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: 0 4px 15px rgba(201,162,39,0.45) !important; transform: translateY(-1px) !important; color: #07111f !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 0.4rem;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all var(--tr);
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(7,17,31,0.97);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-gold);
  padding: 1.5rem 2rem; flex-direction: column; gap: 0.5rem;
  z-index: 7900; animation: slideDown 0.3s ease;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text-light); font-size: 1rem; font-weight: 500;
  padding: 0.7rem 0; border-bottom: 1px solid var(--border);
  transition: color var(--tr);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }

/* =========================================================
   HERO SECTION
   ========================================================= */
#accueil {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, #0f2e52 0%, var(--bg) 65%);
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle 500px at 10% 50%, rgba(201,162,39,0.07) 0%, transparent 70%),
    radial-gradient(circle 400px at 90% 60%, rgba(201,162,39,0.05) 0%, transparent 70%);
}
#hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 860px; padding: 2rem 1.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,162,39,0.12); border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-badge::before { content: '\2605'; }
.hero-content h1 { color: var(--text); margin-bottom: 1.25rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-content h1 .gold { color: var(--gold-light); }
.hero-content > p {
  color: var(--text-light); font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.75;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #07111f; padding: 1rem 2.5rem; border-radius: 50px;
  font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 6px 30px rgba(201,162,39,0.45); transition: all var(--tr);
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(201,162,39,0.65); color: #07111f; }
.btn-hero-arrow { font-size: 1.1rem; transition: transform var(--tr); }
.btn-hero:hover .btn-hero-arrow { transform: translateY(3px); }
.hero-stats {
  display: flex; justify-content: center; gap: 3rem;
  margin-top: 4.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 700;
  color: var(--gold); display: block; line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.35rem; display: block;
}
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; animation: bounce 2.5s ease infinite; z-index: 1;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* =========================================================
   SECTION COMMONS
   ========================================================= */
.section-inner { max-width: 1280px; margin: 0 auto; padding: 6rem 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block; background: rgba(201,162,39,0.1);
  border: 1px solid var(--border-gold); color: var(--gold);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-header h2 { color: var(--text); margin-bottom: 1rem; }
.section-header p { color: var(--text-light); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 3px; margin: 1.25rem auto 0;
}

/* =========================================================
   PLATFORMS / CARDS
   ========================================================= */
#plateformes { background: linear-gradient(180deg, var(--bg) 0%, #091829 100%); }
.platforms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; align-items: start;
}
.platform-card {
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: var(--shadow);
}
.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.6), var(--shadow-gold);
  border-color: var(--border-gold);
}
.platform-card.rank-1 {
  border-color: rgba(201,162,39,0.6);
  box-shadow: var(--shadow), 0 0 40px rgba(201,162,39,0.15);
}
.platform-card.rank-1:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 60px rgba(201,162,39,0.35); }

/* Ribbon */
.card-ribbon {
  position: absolute; top: 18px; left: 0;
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.35rem 1rem 0.35rem 0.9rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  z-index: 2; box-shadow: 2px 2px 8px rgba(0,0,0,0.45);
}
.card-ribbon::after {
  content: ''; position: absolute; left: 0; bottom: -7px;
  border: 4px solid transparent;
}
.rank-1 .card-ribbon { background: linear-gradient(135deg, #8a6e14, var(--gold)); color: #07111f; }
.rank-1 .card-ribbon::after { border-right-color: #5a4a0e; border-top-color: #5a4a0e; }
.rank-2 .card-ribbon { background: linear-gradient(135deg, #5a6270, #8c9baa); color: #07111f; }
.rank-2 .card-ribbon::after { border-right-color: #3d4550; border-top-color: #3d4550; }
.rank-3 .card-ribbon { background: linear-gradient(135deg, #6b4c23, #b8894e); color: #07111f; }
.rank-3 .card-ribbon::after { border-right-color: #4a3418; border-top-color: #4a3418; }

/* Card Image */
.card-image {
  width: 100%; aspect-ratio: 16/7;
  background: var(--surface-3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-bottom: 1px solid var(--border); position: relative;
}
.card-image img { width: 100%; height: 100%; object-fit: contain; padding: 0.5rem; }
/* Card Body */
.card-body { padding: 1.75rem 1.5rem 1.5rem; }
.card-name { font-family: var(--font-head); font-size: 1.4rem; color: var(--text); margin-bottom: 0.6rem; }
.card-rating-row {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}
.stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; }
.rating-score { font-size: 1.6rem; font-weight: 700; color: var(--gold-light); font-family: var(--font-head); }
.rating-max { font-size: 0.78rem; color: var(--text-muted); }
.card-bonus-label {
  font-size: 0.7rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.4rem;
}
.card-bonus-text {
  background: rgba(201,162,39,0.09); border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm); padding: 0.75rem 1rem;
  font-size: 0.875rem; color: var(--text); margin-bottom: 1.25rem;
  line-height: 1.55; font-weight: 500;
}
.card-payments-label {
  font-size: 0.7rem; font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.6rem;
}
.card-payments { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.payment-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--surface-3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.3rem 0.7rem;
  font-size: 0.72rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.04em;
  transition: border-color var(--tr), color var(--tr);
}
.payment-badge:hover { border-color: var(--border-gold); color: var(--gold); }
.btn-cta-card {
  display: block; width: 100%; text-align: center;
  padding: 0.875rem 1.5rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem; transition: all var(--tr); letter-spacing: 0.02em;
}
.rank-1 .btn-cta-card {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #07111f; box-shadow: 0 4px 20px rgba(201,162,39,0.4);
}
.rank-1 .btn-cta-card:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,39,0.6); color: #07111f; }
.rank-2 .btn-cta-card, .rank-3 .btn-cta-card {
  background: transparent; color: var(--gold); border: 2px solid var(--gold);
}
.rank-2 .btn-cta-card:hover, .rank-3 .btn-cta-card:hover {
  background: rgba(201,162,39,0.12); transform: translateY(-2px); color: var(--gold-light);
}
.card-disclaimer {
  font-size: 0.7rem; color: var(--text-muted); text-align: center;
  margin-top: 0.75rem; line-height: 1.5;
}

/* =========================================================
   POURQUOI NOUS
   ========================================================= */
#apropos { background: linear-gradient(180deg, #091829 0%, var(--bg) 100%); }
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.feature-card {
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; display: flex; gap: 1.25rem; align-items: flex-start;
  transition: all var(--tr);
}
.feature-card:hover { border-color: var(--border-gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: rgba(201,162,39,0.1); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.4rem;
}
.feature-content h3 { color: var(--text); font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-content p { color: var(--text-light); font-size: 0.875rem; line-height: 1.7; }

/* =========================================================
   RESPONSIBLE BANNER
   ========================================================= */
#responsable { padding: 0 2rem; }
.responsible-banner {
  max-width: 1280px; margin: 0 auto;
  background: linear-gradient(135deg, #1a0a0a, #2a1111);
  border: 1px solid rgba(192,57,43,0.4); border-radius: var(--radius-lg);
  padding: 2.5rem 3rem; display: flex; align-items: center;
  gap: 2rem; flex-wrap: wrap;
}
.responsible-icon { font-size: 3rem; flex-shrink: 0; }
.responsible-content { flex: 1; min-width: 200px; }
.responsible-content h3 { color: #e74c3c; margin-bottom: 0.5rem; font-size: 1.25rem; }
.responsible-content p { color: var(--text-light); font-size: 0.875rem; line-height: 1.7; }
.responsible-content a { color: var(--gold); }
.btn-responsible {
  background: transparent; border: 2px solid #e74c3c; color: #e74c3c;
  padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.875rem; transition: all var(--tr); flex-shrink: 0;
}
.btn-responsible:hover { background: #e74c3c; color: #fff; transform: translateY(-1px); }

/* =========================================================
   FAQ
   ========================================================= */
#faq { background: var(--bg); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color var(--tr);
}
.faq-item.open { border-color: var(--border-gold); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; cursor: pointer; user-select: none; gap: 1rem;
}
.faq-question h3 {
  font-family: var(--font-body); font-size: 0.975rem;
  font-weight: 600; color: var(--text); flex: 1;
}
.faq-question:hover h3 { color: var(--gold-light); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface-3); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--tr); color: var(--gold);
  font-size: 1.1rem; font-weight: 300; line-height: 1;
}
.faq-item.open .faq-icon { background: rgba(201,162,39,0.15); border-color: var(--border-gold); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; border-top: 1px solid var(--border); }
.faq-answer-inner p { color: var(--text-light); font-size: 0.9rem; line-height: 1.8; padding-top: 1rem; }

/* =========================================================
   FOOTER
   ========================================================= */
footer { background: #040c17; border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}
.footer-brand-logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.25rem; }
.footer-badge-18 {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(192,57,43,0.12); border: 1px solid rgba(192,57,43,0.4);
  color: #e74c3c; padding: 0.35rem 0.85rem; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
}
.footer-col h4 {
  font-family: var(--font-head); font-size: 1rem; color: var(--text);
  margin-bottom: 1.25rem; position: relative; padding-bottom: 0.6rem;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; background: var(--gold); border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: var(--text-muted); font-size: 0.85rem;
  transition: color var(--tr), padding-left var(--tr);
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-orgs { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-orgs a {
  color: var(--text-muted); font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.5rem; transition: color var(--tr);
}
.footer-orgs a::before { content: '\2192'; color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.footer-orgs a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-copyright { color: var(--text-muted); font-size: 0.8rem; line-height: 1.6; }
.footer-copyright strong { color: var(--gold); }
.footer-disclaimer { font-size: 0.75rem; color: var(--text-muted); max-width: 560px; line-height: 1.65; }

/* =========================================================
   SUBPAGES
   ========================================================= */
.subpage-hero {
  min-height: 260px;
  background: linear-gradient(135deg, #091829, #0d2040);
  display: flex; align-items: flex-end;
  padding: calc(var(--nav-h) + 2rem) 2rem 3rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}
.subpage-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 60%, rgba(201,162,39,0.07) 0%, transparent 70%);
}
.subpage-hero-inner { max-width: 1280px; width: 100%; margin: 0 auto; position: relative; z-index: 1; }
.subpage-hero .section-tag { margin-bottom: 0.75rem; }
.subpage-hero h1 { color: var(--text); font-size: clamp(1.8rem, 4vw, 3rem); }
.subpage-hero .hero-meta {
  color: var(--text-muted); font-size: 0.82rem; margin-top: 0.75rem;
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.btn-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,162,39,0.1); border: 1px solid var(--border-gold);
  color: var(--gold); padding: 0.55rem 1.2rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600; transition: all var(--tr);
  margin-bottom: 1.25rem;
}
.btn-back::before { content: '\2190'; }
.btn-back:hover { background: rgba(201,162,39,0.18); color: var(--gold-light); }
.subpage-content { max-width: 860px; margin: 0 auto; padding: 4rem 2rem 6rem; }
.subpage-section { margin-bottom: 2.75rem; }
.subpage-section h2 {
  font-size: 1.35rem; color: var(--gold-light); margin-bottom: 1rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-gold);
}
.subpage-section h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.5rem; margin-top: 1.25rem; }
.subpage-section p, .subpage-section li {
  color: var(--text-light); font-size: 0.925rem; line-height: 1.85; margin-bottom: 0.75rem;
}
.subpage-section ul { list-style: disc; padding-left: 1.5rem; }
.subpage-section li { margin-bottom: 0.4rem; }
.subpage-section a { color: var(--gold); }
.info-box {
  background: rgba(201,162,39,0.07); border: 1px solid var(--border-gold);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.info-box p { margin: 0; font-size: 0.9rem; color: var(--text-light); }
.warn-box {
  background: rgba(192,57,43,0.09); border: 1px solid rgba(192,57,43,0.35);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.warn-box p { margin: 0; font-size: 0.9rem; color: #e98a84; }

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

/* =========================================================
   KEYFRAMES
   ========================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .platforms-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .responsible-banner { flex-direction: column; text-align: center; padding: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .section-inner { padding: 4rem 1.25rem; }
  #cookie-consent { flex-direction: column; align-items: flex-start; }
  .cookie-buttons { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1.25rem; align-items: center; }
  .card-body { padding: 1.5rem 1.1rem 1.1rem; }
  .subpage-content { padding: 3rem 1.25rem 5rem; }
  .responsible-banner { padding: 1.75rem; }
  .age-gate-box { padding: 2.25rem 1.5rem; }
}
