/* ============================================================
   PARIS FORTUNE GAGNANTE — Global Styles
   ============================================================ */

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

:root {
  --bg-deep:        #06091280;
  --bg-base:        #060912;
  --bg-surface:     #0A0F1E;
  --bg-card:        #0F1628;
  --bg-card-hover:  #141D35;
  --gold:           #E8A020;
  --gold-light:     #F5C255;
  --gold-dark:      #B07A10;
  --red:            #C8102E;
  --red-light:      #E8203E;
  --text-primary:   #F0F2F7;
  --text-secondary: #B8C4D4;
  --text-muted:     #5E6E84;
  --border:         #182040;
  --border-light:   #1E2B4A;
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      22px;
  --radius-xl:      32px;
  --shadow-card:    0 8px 32px rgba(0,0,0,0.45);
  --shadow-glow:    0 0 60px rgba(232,160,32,0.12);
  --transition:     0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --max-w:          1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

.age-gate-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation: fadeScaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.age-gate-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate-icon svg { width: 36px; height: 36px; fill: var(--bg-base); }

.age-gate-card h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.age-gate-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 36px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-age-confirm {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-base);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232,160,32,0.3);
}

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

.btn-age-quit {
  padding: 14px 32px;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-age-quit:hover {
  border-color: var(--red);
  color: var(--red-light);
}

.age-gate-disclaimer {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.age-refused-card {
  text-align: center;
}

.age-refused-card .refused-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #7a0a0a, var(--red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-refused-card .refused-icon svg { width: 40px; height: 40px; fill: white; }

.age-refused-card h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--red-light);
  margin-bottom: 12px;
}

.age-refused-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(10, 15, 30, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-base);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.btn-cookie-accept:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-cookie-decline {
  padding: 10px 20px;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  transition: var(--transition);
}

.btn-cookie-decline:hover { border-color: var(--text-muted); color: var(--text-secondary); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(6, 9, 18, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

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

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-base) !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition) !important;
  box-shadow: 0 4px 14px rgba(232,160,32,0.25);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,160,32,0.4) !important;
  color: var(--bg-base) !important;
}

.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

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

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(6, 9, 18, 0.97);
  backdrop-filter: blur(16px);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}

.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1rem; color: var(--text-secondary); padding: 8px 0; }
.nav-mobile a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(232,160,32,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(200,16,46,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 70%, rgba(232,160,32,0.06) 0%, transparent 60%),
    var(--bg-base);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
  background: rgba(232,160,32,0.08);
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: -60px;
  background: rgba(200,16,46,0.07);
  animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(232,160,32,0.05);
  animation: orbFloat3 10s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 100px;
  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-in-out infinite;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-base);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(232,160,32,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232,160,32,0.45);
}

.btn-primary svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateY(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

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

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

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
section { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================================
   PLATFORM CARDS
   ============================================================ */
#plateformes {
  background: var(--bg-surface);
  position: relative;
}

#plateformes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.platforms-header {
  text-align: center;
  margin-bottom: 64px;
}

.platforms-header .section-desc { margin: 0 auto; }

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.platform-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 40px rgba(232,160,32,0.08);
}

.platform-card.rank-1 {
  border-color: var(--gold-dark);
  box-shadow: 0 8px 32px rgba(232,160,32,0.12);
}

.platform-card.rank-1:hover {
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), 0 0 60px rgba(232,160,32,0.15);
}

/* Ribbon */
.card-ribbon {
  position: absolute;
  top: 18px;
  right: -30px;
  width: 110px;
  text-align: center;
  padding: 6px 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(42deg);
  z-index: 2;
}

.rank-1 .card-ribbon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-base);
}

.rank-2 .card-ribbon {
  background: linear-gradient(135deg, #5a6a7a, #8fa0b0);
  color: var(--bg-base);
}

.rank-3 .card-ribbon {
  background: linear-gradient(135deg, #7a5025, #b07040);
  color: var(--bg-base);
}

/* Card image */
.card-image {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-card-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
}

.card-image-placeholder {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.rank-1 .card-image {
  background: linear-gradient(135deg, #1a1500 0%, #2a1f00 50%, #1a1500 100%);
}

.rank-2 .card-image {
  background: linear-gradient(135deg, #0a0f1a 0%, #101828 50%, #0a0f1a 100%);
}

.rank-3 .card-image {
  background: linear-gradient(135deg, #0e0a00 0%, #1a1200 50%, #0e0a00 100%);
}

/* Card body */
.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-score {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.card-score-suffix {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.card-stars {
  display: flex;
  gap: 3px;
  margin-top: 2px;
}

.star {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.card-bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

.card-bonus-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-dark);
}

/* Payment icons */
.card-payment {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-payment-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-icon {
  height: 26px;
  padding: 0 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pay-visa    { background: #1a1f71; color: #fff; }
.pay-mc      { background: #252525; color: #fff; position: relative; overflow: visible; gap: 2px; }
.pay-paypal  { background: #003087; color: #fff; }
.pay-skrill  { background: #862165; color: #fff; }

.mc-circle-1 { width: 18px; height: 18px; background: #EB001B; border-radius: 50%; }
.mc-circle-2 { width: 18px; height: 18px; background: #F79E1B; border-radius: 50%; margin-left: -7px; }

/* CTA button */
.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  margin-top: auto;
}

.rank-1 .card-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-base);
  box-shadow: 0 4px 20px rgba(232,160,32,0.3);
}

.rank-1 .card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,160,32,0.5);
}

.rank-2 .card-cta, .rank-3 .card-cta {
  background: transparent;
  border: 1.5px solid var(--gold-dark);
  color: var(--gold);
}

.rank-2 .card-cta:hover, .rank-3 .card-cta:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-base);
  transform: translateY(-2px);
}

.card-cta svg { width: 16px; height: 16px; }

/* ============================================================
   POURQUOI NOUS
   ============================================================ */
#apropos {
  background: var(--bg-base);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.why-feature {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.why-feature:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(232,160,32,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-visual {
  position: relative;
}

.why-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.why-method-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.why-method-item:last-child { border-bottom: none; }

.why-method-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--bg-base);
  flex-shrink: 0;
}

.why-method-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.why-method-text strong { color: var(--text-primary); display: block; margin-bottom: 2px; }

/* ============================================================
   RESPONSIBLE GAMING BANNER
   ============================================================ */
.responsible-banner {
  background: linear-gradient(135deg, #0d1520 0%, #0a1018 50%, #0d1520 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.responsible-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.responsible-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #7a0a0a, var(--red));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.responsible-icon-wrap svg { width: 36px; height: 36px; fill: white; }

.responsible-content { flex: 1; }

.responsible-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.responsible-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 680px;
}

.responsible-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.responsible-link {
  padding: 6px 14px;
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red-light);
  transition: var(--transition);
}

.responsible-link:hover {
  background: rgba(200,16,46,0.1);
  border-color: var(--red);
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  background: var(--bg-surface);
}

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

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: var(--bg-card);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-card-hover); }
.faq-item.open .faq-question { background: var(--bg-card-hover); }

.faq-question-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold);
}

.faq-item.open .faq-icon {
  background: rgba(232,160,32,0.1);
  border-color: var(--gold-dark);
  transform: rotate(45deg);
}

.faq-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 24px;
  background: var(--bg-card-hover);
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #040610;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 360px;
}

.footer-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: rgba(200,16,46,0.06);
  border: 1px solid rgba(200,16,46,0.15);
  border-radius: var(--radius-sm);
  margin-top: 20px;
}

.footer-disclaimer svg { width: 16px; height: 16px; fill: var(--red-light); flex-shrink: 0; margin-top: 2px; }

.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-copyright span { color: var(--gold); }

.footer-18 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--red);
  color: white;
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: -0.02em;
}

.footer-18 span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   SUBPAGE LAYOUT
   ============================================================ */
.subpage-hero {
  padding: 140px 24px 64px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.subpage-hero .section-label { margin-bottom: 12px; }

.subpage-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.subpage-hero p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.btn-back:hover { border-color: var(--gold); color: var(--gold); }
.btn-back svg { width: 16px; height: 16px; }

.subpage-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 24px;
}

.subpage-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 16px;
}

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

.subpage-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 28px 0 12px;
}

.subpage-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.subpage-content ul, .subpage-content ol {
  list-style: none;
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subpage-content ul li, .subpage-content ol li {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.subpage-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.subpage-content ol { counter-reset: list; }
.subpage-content ol li { counter-increment: list; }
.subpage-content ol li::before {
  content: counter(list) '.';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.content-box {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.content-box p { margin: 0; }

.highlight-box {
  padding: 20px 24px;
  background: rgba(200,16,46,0.06);
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.highlight-box p { margin: 0; color: var(--text-secondary); }

.update-info {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeScaleIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(60px, -40px) scale(1.05); }
  66%  { transform: translate(-30px, 30px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-50px, 40px) scale(1.08); }
  66%  { transform: translate(40px, -30px) scale(0.97); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%  { transform: translateX(-50%) scale(1.15); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  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; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .platforms-grid { grid-template-columns: 1fr 1fr; }
  .platform-card.rank-1 { grid-column: 1 / -1; max-width: 540px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { order: -1; }
  .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; }
  .platforms-grid { grid-template-columns: 1fr; }
  .platform-card.rank-1 { grid-column: auto; max-width: 100%; }
  .why-features { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .hero-divider { display: none; }
  .responsible-inner { flex-direction: column; text-align: center; }
  .responsible-links { justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .why-visual-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .age-gate-card { padding: 40px 24px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .cookie-actions { width: 100%; flex-direction: column; }
  .btn-cookie-accept, .btn-cookie-decline { width: 100%; text-align: center; }
}
