/* ============================================================
   FranceParis Winner — style.css
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --color-bg: #F5F3EE;
  --color-bg-alt: #FFFFFF;
  --color-surface: #FFFFFF;
  --color-surface-2: #F0EDE6;

  --color-primary: #0A1628;
  --color-primary-hover: #122040;
  --color-secondary: #1E3A5F;
  --color-secondary-hover: #254a78;

  --color-gold: #C9A84C;
  --color-gold-light: #E8C86E;
  --color-gold-dark: #A8852C;

  --color-silver: #9BA4B4;
  --color-bronze: #B87333;

  --color-accent: #D4420A;
  --color-success: #1E7A3A;
  --color-warning: #D97706;
  --color-error: #C0392B;

  --color-text: #0F1B2D;
  --color-text-muted: #5A6474;
  --color-text-light: #8A939F;
  --color-border: #DDD8CE;
  --color-border-light: #EDEAE4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

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

  --shadow-sm: 0 1px 3px rgba(10,22,40,0.08), 0 1px 2px rgba(10,22,40,0.04);
  --shadow-md: 0 4px 16px rgba(10,22,40,0.10), 0 2px 6px rgba(10,22,40,0.06);
  --shadow-lg: 0 12px 40px rgba(10,22,40,0.14), 0 4px 16px rgba(10,22,40,0.08);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.28);

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 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(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* --- Reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }
.reveal--delay-4 { transition-delay: 0.48s; }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
}
.btn--primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--secondary {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}
.btn--secondary:hover {
  background: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--tertiary {
  background: var(--color-bronze);
  color: #fff;
  border-color: var(--color-bronze);
}
.btn--tertiary:hover {
  background: #9a6128;
  border-color: #9a6128;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn--white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary);
}
.btn--lg { padding: 16px 36px; font-size: 1.0625rem; border-radius: var(--radius-lg); }
.btn--sm { padding: 9px 18px; font-size: 0.875rem; }
.btn--block { width: 100%; }

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge--gold {
  background: rgba(201,168,76,0.15);
  color: var(--color-gold-dark);
  border: 1px solid rgba(201,168,76,0.35);
}

/* ============================================================
   AGE GATE
   ============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 35, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.age-gate__card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 48px 40px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  animation: ageFadeIn 0.5s cubic-bezier(0.4,0,0.2,1);
}
@keyframes ageFadeIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.age-gate__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
}
.age-gate__logo strong { color: var(--color-gold); }
.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-gold);
  font-size: 1.375rem;
  font-weight: 800;
  margin: 0 auto 20px;
  font-family: var(--font-display);
}
.age-gate__card h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.age-gate__card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.age-gate__note {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.age-gate__refused {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: ageFadeIn 0.4s ease;
}
.age-gate__refused-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.age-gate__refused h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-error);
  margin-bottom: 12px;
}
.age-gate__refused p {
  color: var(--color-text-muted);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8888;
  width: calc(100% - 48px);
  max-width: 860px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.5s cubic-bezier(0.4,0,0.2,1);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(24px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner__inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__text strong { display: block; margin-bottom: 4px; font-size: 0.9375rem; }
.cookie-banner__text p { font-size: 0.8125rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.cookie-banner__text a { color: var(--color-gold-light); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  align-self: center;
}
.cookie-banner .btn--outline {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.35);
}
.cookie-banner .btn--outline:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding: 10px 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar__brand-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.navbar__brand-text strong { color: var(--color-gold); font-weight: 700; }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar__link {
  display: inline-block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.navbar__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.active span:nth-child(2) { opacity: 0; }
.navbar__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(30, 58, 95, 0.9) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #0A1628 0%, #0F2040 40%, #1A3456 100%);
}
.hero__particles {
  position: absolute;
  inset: 0;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-120vh) rotate(720deg); opacity: 0; }
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 80px;
  max-width: 760px;
}
.hero__eyebrow { margin-bottom: 24px; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__cta {
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 20px;
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-gold);
  font-family: var(--font-display);
  line-height: 1;
}
.hero__stat span { font-size: 0.8125rem; color: rgba(255,255,255,0.6); }
.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-indicator span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-indicator span::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { top: 5px; opacity: 1; }
  60% { top: 18px; opacity: 0.5; }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================
   PLATFORMS
   ============================================================ */
.platforms {
  padding: 96px 0 64px;
  background: var(--color-bg);
}
.platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}
.platform-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.platform-card--first {
  border-color: var(--color-gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.18), var(--shadow-md);
  transform: scale(1.02);
}
.platform-card--first:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 16px 48px rgba(201,168,76,0.25), var(--shadow-lg);
}
.platform-card__ribbon {
  background: var(--color-gold);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
}
.platform-card__ribbon--silver {
  background: var(--color-silver);
  color: #fff;
}
.platform-card__ribbon--bronze {
  background: var(--color-bronze);
  color: #fff;
}
.platform-card__header {
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.platform-card__img-wrap {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface-2);
}
.platform-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px 16px;
}
.platform-card__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
}
.platform-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rating-score {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.stars { display: flex; gap: 2px; }
.star { font-size: 1rem; }
.star--full { color: var(--color-gold); }
.star--half { color: var(--color-gold); }
.star--empty { color: var(--color-border); }
.rating-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-success);
  background: rgba(30,122,58,0.1);
  padding: 3px 8px;
  border-radius: 100px;
}
.platform-card__body { padding: 20px 24px; }
.platform-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.platform-card__bonus {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.bonus-badge--silver { color: var(--color-secondary); }
.bonus-badge--bronze { color: var(--color-bronze); }
.bonus-desc {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
}
.bonus-desc strong { color: var(--color-primary); }
.platform-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.feature-tag {
  font-size: 0.775rem;
  font-weight: 500;
  color: var(--color-success);
  background: rgba(30,122,58,0.08);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(30,122,58,0.2);
}
.platform-card__payments { margin-bottom: 4px; }
.payment-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.payment-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: 1px solid var(--color-border);
  background: #fff;
}
.payment-icon--visa { color: #1A1F71; border-color: #1A1F71; }
.payment-icon--mc { color: #EB001B; border-color: #FF5F00; }
.payment-icon--pp { color: #003087; border-color: #003087; }
.payment-icon--sk { color: #862165; border-color: #862165; }
.platform-card__footer {
  padding: 0 24px 24px;
}
.platform-card__disclaimer {
  font-size: 0.7rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
}
.platforms__legal {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
.platforms__legal svg { flex-shrink: 0; margin-top: 1px; color: var(--color-text-light); }

/* ============================================================
   ABOUT / POURQUOI NOUS
   ============================================================ */
.about {
  padding: 96px 0;
  background: var(--color-primary);
}
.about .section-eyebrow { color: var(--color-gold-light); }
.about .section-title { color: #fff; }
.about .section-desc { color: rgba(255,255,255,0.65); }
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.about__card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.about__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 20px;
}
.about__card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.about__card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIBLE
   ============================================================ */
.responsible {
  padding: 0;
  background: var(--color-bg);
}
.responsible__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, #C0392B 0%, #962D22 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  margin: 0 0 0;
  flex-wrap: wrap;
}
.responsible { padding: 80px 0; }
.responsible__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.responsible__content { flex: 1; min-width: 240px; }
.responsible__content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.responsible__content p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 96px 0;
  background: var(--color-bg-alt);
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq__item.open {
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.12);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: background var(--transition);
}
.faq__question:hover { background: var(--color-surface-2); }
.faq__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-text-muted);
}
.faq__item.open .faq__icon { transform: rotate(180deg); color: var(--color-gold); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding var(--transition);
}
.faq__answer.open { max-height: 400px; }
.faq__answer p {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}
.faq__answer p a {
  color: var(--color-gold-dark);
  text-decoration: underline;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060E1C;
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .navbar__brand { margin-bottom: 16px; }
.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  max-width: 280px;
}
.footer__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}
.footer-badge--age {
  background: var(--color-error);
  border-color: var(--color-error);
  color: #fff;
}
.footer__nav-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__nav-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-group a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__nav-group a:hover { color: var(--color-gold-light); }
.footer__disclaimer {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__disclaimer p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 900px;
}
.footer__disclaimer strong { color: rgba(255,255,255,0.65); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer__responsible-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__responsible-logos span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-error);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
}

/* ============================================================
   SUBPAGE LAYOUT
   ============================================================ */
.subpage-hero {
  background: var(--color-primary);
  padding: 140px 0 64px;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.subpage-hero .container { position: relative; }
.subpage-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  margin-bottom: 20px;
  transition: color var(--transition);
  text-decoration: none;
}
.subpage-back:hover { color: var(--color-gold-light); }
.subpage-back svg { transition: transform var(--transition); }
.subpage-back:hover svg { transform: translateX(-3px); }
.subpage-hero__eyebrow { color: var(--color-gold-light); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 12px; }
.subpage-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.subpage-content {
  padding: 72px 0 96px;
  background: var(--color-bg);
}
.subpage-inner {
  max-width: 800px;
  margin: 0 auto;
}
.subpage-inner h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 36px 0 12px;
}
.subpage-inner h2:first-child { margin-top: 0; }
.subpage-inner p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.subpage-inner ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.subpage-inner ul li {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}
.subpage-inner a {
  color: var(--color-gold-dark);
  text-decoration: underline;
}
.subpage-inner strong { color: var(--color-primary); }
.info-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.info-box p { margin-bottom: 0; }
.warning-box {
  background: rgba(192,57,43,0.07);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.warning-box p { margin-bottom: 0; color: #8b2519; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .platforms__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .platform-card--first { transform: none; }
  .platform-card--first:hover { transform: translateY(-6px); }
  .about__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .navbar__nav { display: none; position: fixed; inset: 0; top: 0; background: rgba(10,22,40,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 12px; z-index: 800; }
  .navbar__nav.open { display: flex; }
  .navbar__nav .navbar__link { font-size: 1.25rem; padding: 12px 24px; }
  .navbar__burger { display: flex; z-index: 901; }
  .hero__content { padding: 120px 24px 60px; }
  .about__grid { grid-template-columns: 1fr; }
  .responsible__inner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__stats { gap: 4px; }
  .hero__stat-divider { display: none; }
  .hero__stat { padding: 0; }
  .cookie-banner { bottom: 12px; width: calc(100% - 24px); }
  .cookie-banner__inner { flex-direction: column; gap: 16px; }
  .cookie-banner__actions { width: 100%; }
}
@media (max-width: 480px) {
  .age-gate__card { padding: 36px 24px 28px; }
  .platforms { padding: 64px 0 40px; }
  .about { padding: 64px 0; }
  .faq { padding: 64px 0; }
  .subpage-hero { padding: 120px 0 48px; }
}
