/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #D4AF37;
  --gold-light:  #F0D060;
  --gold-dark:   #B8960C;
  --gold-pale:   rgba(212, 175, 55, 0.12);
  --navy:        #080C18;
  --navy-mid:    #0F1525;
  --navy-card:   #141D30;
  --navy-border: #1E2A42;
  --navy-hover:  #192237;
  --text-primary: #F0EDE8;
  --text-muted:  #8A94A8;
  --text-dim:    #5A637A;
  --accent-red:  #C0392B;
  --success:     #27AE60;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 24px rgba(212,175,55,0.25);
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  background: var(--navy);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #0A0C14;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.5);
  filter: brightness(1.08);
}
.btn--gold:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  border-color: var(--navy-border);
  color: var(--text-muted);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.15);
  color: var(--text-muted);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.3); color: var(--text-primary); }

.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: 0.82rem; }
.btn--full { width: 100%; justify-content: center; }

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

.age-gate__card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,175,55,0.1);
  animation: fadeSlideUp 0.45s ease;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.age-gate__icon { width: 72px; height: 72px; margin: 0 auto 24px; }
.age-gate__icon svg { width: 100%; height: 100%; }

.age-gate__title {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.age-gate__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.age-gate__disclaimer {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.age-gate__disclaimer a { color: var(--gold); text-decoration: underline; }

/* ===== ACCESS DENIED ===== */
.access-denied {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: 24px;
}

.access-denied__card {
  text-align: center;
  max-width: 400px;
  animation: fadeSlideUp 0.4s ease;
}

.access-denied__icon {
  font-size: 4rem;
  color: var(--accent-red);
  margin-bottom: 20px;
  display: block;
}

.access-denied h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.access-denied p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hidden { display: none !important; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--navy-card);
  border-top: 1px solid var(--navy-border);
  padding: 16px 0;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__content p {
  flex: 1;
  min-width: 280px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 12, 24, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 12, 24, 0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar__logo-icon { width: 32px; height: 32px; flex-shrink: 0; }

.navbar__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.navbar__nav { flex: 1; }

.navbar__list {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.navbar__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.navbar__link:hover, .navbar__link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
}
.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1E4A8C 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation-delay: -4s;
}

.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--gold-dark) 0%, transparent 70%);
  top: 50%; left: 40%;
  opacity: 0.08;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}

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

.hero__title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero__title-accent {
  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(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero__cta { margin-bottom: 48px; }

.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  gap: 32px;
}

.hero__stat { text-align: center; }
.hero__stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  white-space: nowrap;
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--navy-border);
  flex-shrink: 0;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll-wheel {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  75%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===== SECTIONS COMMON ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold-pale);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== PLATFORMS ===== */
.platforms {
  padding: 100px 0;
  background: var(--navy-mid);
  position: relative;
}

.platforms::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
}

.platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* PLATFORM CARD */
.platform-card {
  position: relative;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(212,175,55,0.2);
}

.platform-card--featured {
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 8px 40px rgba(212,175,55,0.12);
}

.platform-card--featured:hover {
  box-shadow: 0 16px 56px rgba(212,175,55,0.22);
}

/* RIBBON */
.platform-card__ribbon {
  position: absolute;
  top: 16px; left: -2px;
  padding: 6px 16px 6px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 0.9rem;
  z-index: 2;
}

.platform-card__ribbon--gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #0A0C14;
  box-shadow: 2px 4px 16px rgba(212,175,55,0.4);
}

.platform-card__ribbon--silver {
  background: linear-gradient(135deg, #8A9BB0, #C8D6E5);
  color: #1a2030;
}

.platform-card__ribbon--bronze {
  background: linear-gradient(135deg, #8B5E3C, #C97B45);
  color: #fff;
}

.platform-card__header {
  padding: 32px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--navy-border);
}

.platform-card__logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  min-height: 64px;
  max-width: 160px;
}

.platform-card__logo-wrap--dark {
  background: #111;
}

.platform-card__logo {
  max-height: 44px;
  max-width: 130px;
  object-fit: contain;
  width: auto;
}

.platform-card__score-wrap { text-align: right; flex-shrink: 0; }

.platform-card__score {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.platform-card__stars { margin: 4px 0; }
.star { color: var(--gold); font-size: 1rem; }

.platform-card__score-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.platform-card__body { padding: 20px 24px 24px; }

.platform-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.platform-card__bonus {
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
}

.platform-card__bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.platform-card__bonus-text {
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.platform-card__bonus-text strong { color: var(--gold); }

.platform-card__features {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.platform-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.feature-check {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  line-height: 1;
}

.platform-card__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.payment-badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.payment-badge--visa  { background: #1A1F71; color: #fff; }
.payment-badge--mc    { background: #EB001B; color: #fff; }
.payment-badge--pp    { background: #003087; color: #fff; }
.payment-badge--sk    { background: #1d7242; color: #fff; }

.platform-card__cta { margin-bottom: 12px; }

.platform-card__terms {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.4;
}

.platforms__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 40px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.platforms__disclaimer svg { flex-shrink: 0; margin-top: 2px; }

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  position: relative;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  animation-delay: var(--card-delay, 0ms);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.why-card__icon {
  width: 52px; height: 52px;
  margin-bottom: 20px;
  opacity: 0.9;
}
.why-card__icon svg { width: 100%; height: 100%; }

.why-card__title {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.why-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== RESPONSIBLE BANNER ===== */
.responsible-banner {
  padding: 64px 0;
  background: linear-gradient(135deg, rgba(12, 18, 32, 0.8) 0%, rgba(20, 29, 48, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.responsible-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  pointer-events: none;
}

.responsible-banner::after {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.responsible-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.responsible-banner__left {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.responsible-banner__badge18 {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
  flex-direction: column;
  line-height: 1;
}

.responsible-banner__text h2 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.responsible-banner__text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.responsible-banner__hotline {
  font-size: 0.88rem !important;
  color: var(--gold) !important;
}
.responsible-banner__hotline strong { color: inherit; }

.responsible-banner__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  min-width: 180px;
}

.resp-link {
  display: block;
  padding: 9px 16px;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  transition: all var(--transition);
}
.resp-link:hover {
  background: rgba(212,175,55,0.14);
  border-color: rgba(212,175,55,0.35);
  transform: translateX(2px);
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--navy-mid);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item:has(.faq__question[aria-expanded="true"]) {
  border-color: rgba(212,175,55,0.25);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
}

.faq__question:hover { color: var(--gold); }
.faq__question[aria-expanded="true"] { color: var(--gold); }

.faq__chevron {
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform var(--transition), color var(--transition);
}
.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.faq__body.open { max-height: 400px; }

.faq__body p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq__body p strong { color: var(--text-primary); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer__logo-icon { width: 32px; height: 32px; }
.footer__logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer__description {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer__trust-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__trust-badge {
  padding: 4px 12px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer__nav-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.footer__nav-list { display: flex; flex-direction: column; gap: 10px; }

.footer__nav-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__nav-link:hover { color: var(--gold); }

.footer__divider {
  height: 1px;
  background: var(--navy-border);
  margin-bottom: 32px;
}

.footer__bottom { display: flex; flex-direction: column; gap: 12px; }

.footer__legal {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.footer__legal strong { color: var(--text-muted); }

.footer__copyright {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ===== SUBPAGE STYLES ===== */
.subpage-hero {
  padding: 80px 0 48px;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--navy-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.subpage-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

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

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.subpage-content {
  padding: 64px 0 100px;
  max-width: 800px;
  margin: 0 auto;
}

.subpage-content h2 {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--navy-border);
}
.subpage-content h2:first-child { margin-top: 0; }

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

.subpage-content ul {
  margin-bottom: 16px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.subpage-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.subpage-content ul li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.subpage-content a { color: var(--gold); text-decoration: underline; }
.subpage-content strong { color: var(--text-primary); }

.info-box {
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.info-box strong { color: var(--gold); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--card-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .platforms__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .why-us__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .responsible-banner__inner { grid-template-columns: 1fr; }
  .responsible-banner__left { flex-direction: column; gap: 16px; }
  .responsible-banner__links { flex-direction: row; flex-wrap: wrap; min-width: unset; }
}

@media (max-width: 768px) {
  .navbar__nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(8, 12, 24, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--navy-border);
    padding: 20px 24px;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
  }
  .navbar__nav.open { transform: translateY(0); }
  .navbar__list { flex-direction: column; align-items: flex-start; gap: 4px; }
  .navbar__link { padding: 10px 8px; font-size: 1rem; }
  .navbar__burger { display: flex; }

  .hero { min-height: auto; padding: 100px 0 80px; }
  .hero__stats { flex-direction: column; gap: 16px; padding: 20px 24px; }
  .hero__stat-divider { width: 40px; height: 1px; }

  .age-gate__card { padding: 36px 24px; }
  .age-gate__actions { gap: 10px; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: 1; }

  .platforms__grid { max-width: 100%; }

  .cookie-banner__content { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.7rem; }
  .hero__badge { font-size: 0.68rem; padding: 7px 14px; }
  .section-title { font-size: 1.45rem; }
  .platform-card__header { flex-direction: column; align-items: flex-start; }
  .platform-card__score-wrap { text-align: left; }
  .why-card { padding: 28px 20px; }
  .responsible-banner__badge18 { width: 52px; height: 52px; font-size: 1rem; }
}
