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

:root {
  /* Palette */
  --c-bg:          #070b18;
  --c-surface:     #0d1428;
  --c-surface-2:   #121d3a;
  --c-surface-3:   #1a2850;
  --c-border:      rgba(212,168,67,0.15);
  --c-gold:        #d4a843;
  --c-gold-light:  #f0cc6a;
  --c-gold-dark:   #a87e2a;
  --c-silver:      #9dafc8;
  --c-bronze:      #cd7f32;
  --c-text:        #e6e8f0;
  --c-text-muted:  #7e8fa8;
  --c-text-faint:  #4a5568;
  --c-success:     #2ecc71;
  --c-warning:     #f39c12;
  --c-error:       #e74c3c;
  --c-accent:      #1a6bc8;

  /* Typography */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing (8px grid) */
  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 40px; --sp-6: 48px; --sp-7: 56px; --sp-8: 64px;

  /* Radius */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px;

  /* Shadow */
  --shadow-card: 0 4px 32px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 40px rgba(212,168,67,0.12);

  /* Transition */
  --t-fast: 0.18s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.5s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 12px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--t-base);
  white-space: nowrap;
}
.btn--lg { padding: 15px 36px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }

.btn--gold {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dark) 100%);
  color: #0a0a0a;
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--c-gold-light) 0%, var(--c-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.35);
}

.btn--silver {
  background: linear-gradient(135deg, #b8cce0 0%, #7a9ab8 100%);
  color: #0a0e1a;
}
.btn--silver:hover {
  background: linear-gradient(135deg, #cdddf0 0%, #9ab8d0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(157,175,200,0.3);
}

.btn--bronze {
  background: linear-gradient(135deg, #e09040 0%, #a05820 100%);
  color: #fff;
}
.btn--bronze:hover {
  background: linear-gradient(135deg, #f0a850 0%, #c07030 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(205,127,50,0.3);
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(212,168,67,0.5);
  color: var(--c-gold);
}
.btn--outline:hover {
  border-color: var(--c-gold);
  background: rgba(212,168,67,0.08);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn--outline-light:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border: 2px solid var(--c-border);
  color: var(--c-text-muted);
}
.btn--ghost:hover { border-color: var(--c-text-muted); color: var(--c-text); }

/* ============================================
   AGE GATE
   ============================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3);
}
.age-gate[hidden] { display: none; }

.age-gate__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,8,20,0.92);
  backdrop-filter: blur(14px);
}

.age-gate__card {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, var(--c-surface-2) 0%, var(--c-surface) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-5);
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation: agCardIn 0.55s cubic-bezier(0.34,1.56,0.64,1) both;
}

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

.age-gate__emblem {
  margin-bottom: var(--sp-3);
  display: flex;
  justify-content: center;
}

.age-gate__subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-1);
}

.age-gate__title {
  font-family: var(--font-head);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.age-gate__text {
  color: var(--c-text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.age-gate__text strong { color: var(--c-text); }

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.age-gate__legal {
  font-size: 12px;
  color: var(--c-text-faint);
  line-height: 1.6;
}

.age-gate__refused {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, var(--c-surface-2) 0%, var(--c-surface) 100%);
  border: 1px solid rgba(231,76,60,0.3);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-5);
  max-width: 480px;
  width: 100%;
  text-align: center;
  animation: agCardIn 0.4s ease both;
}
.age-gate__refused[hidden] { display: none; }
.age-gate__refused .age-gate__text { margin-bottom: 0; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: var(--sp-2) 0;
  background: rgba(13,20,40,0.97);
  border-top: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
  animation: slideUp 0.4s ease both;
}
.cookie-banner[hidden] { display: none; }

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

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.cookie-banner__text { flex: 1; min-width: 200px; }
.cookie-banner__text strong { display: block; font-size: 15px; color: var(--c-gold); margin-bottom: 4px; }
.cookie-banner__text p { font-size: 13px; color: var(--c-text-muted); line-height: 1.5; }
.cookie-banner__text a { color: var(--c-gold); text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  gap: var(--sp-2);
  flex-shrink: 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 0;
  transition: background var(--t-base), box-shadow var(--t-base);
}

.navbar.scrolled {
  background: rgba(7,11,24,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border), 0 4px 24px rgba(0,0,0,0.4);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  height: 70px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.navbar__logo:hover { opacity: 0.85; }
.navbar__logo-icon { flex-shrink: 0; }

.navbar__logo-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.01em;
}

.navbar__nav { margin-left: auto; }

.navbar__list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.navbar__link {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.navbar__link:hover { color: var(--c-text); background: rgba(255,255,255,0.05); }
.navbar__link.active { color: var(--c-gold); }

.navbar__link--cta {
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--c-gold);
  margin-left: var(--sp-1);
}
.navbar__link--cta:hover {
  background: rgba(212,168,67,0.2);
  border-color: var(--c-gold);
  color: var(--c-gold-light);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.navbar__burger:hover { background: rgba(255,255,255,0.06); }
.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--t-base);
}
.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;
  background: linear-gradient(135deg, #070b18 0%, #0d1835 50%, #070b18 100%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  background: var(--c-gold);
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.6; transform: translateY(-8px) scale(1); }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) scale(0.5); }
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  animation: orbPulse 8s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(26,107,200,0.06) 0%, transparent 70%);
  animation: orbPulse 10s ease-in-out infinite alternate-reverse;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  top: 40%; left: 40%;
  background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 70%);
  animation: orbPulse 12s ease-in-out infinite alternate;
}

@keyframes orbPulse {
  from { transform: scale(1); opacity: 0.7; }
  to   { transform: scale(1.2); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-gold);
  letter-spacing: 0.03em;
  margin-bottom: var(--sp-3);
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--c-gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: var(--sp-4);
}

.hero__actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.hero__stat { text-align: left; }
.hero__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-gold);
}
.hero__stat span { font-size: 13px; color: var(--c-text-muted); font-weight: 500; }
.hero__stat-sep { width: 1px; height: 40px; background: var(--c-border); }

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-dot {
  width: 28px; height: 44px;
  border: 2px solid rgba(212,168,67,0.4);
  border-radius: 20px;
  position: relative;
}
.hero__scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  background: var(--c-gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%  { top: 6px; opacity: 1; }
  80% { top: 22px; opacity: 0; }
  81% { top: 6px; opacity: 0; }
  100%{ top: 6px; opacity: 1; }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-7);
}

.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-2);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.section-desc {
  font-size: 17px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ============================================
   PLATFORMS
   ============================================ */
.platforms {
  padding: var(--sp-8) 0;
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-surface) 50%, var(--c-bg) 100%);
}

.platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

/* PLATFORM CARD */
.platform-card {
  position: relative;
  background: linear-gradient(160deg, var(--c-surface-2) 0%, var(--c-surface) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), var(--shadow-glow);
  border-color: rgba(212,168,67,0.3);
}
.platform-card--first {
  border-color: rgba(212,168,67,0.3);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.platform-card--first:hover {
  border-color: var(--c-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 60px rgba(212,168,67,0.2);
}

/* RIBBON */
.platform-card__ribbon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px var(--sp-2);
  text-align: center;
  gap: 2px;
}
.platform-card__ribbon--gold  { background: linear-gradient(90deg, var(--c-gold-dark), var(--c-gold)); }
.platform-card__ribbon--silver { background: linear-gradient(90deg, #6a88a8, #9dafc8); }
.platform-card__ribbon--bronze { background: linear-gradient(90deg, #8c5522, #cd7f32); }

.ribbon-rank {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.ribbon-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* CARD HEADER */
.platform-card__header {
  padding: var(--sp-3) var(--sp-3) var(--sp-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  border-bottom: 1px solid var(--c-border);
}

.platform-card__logo-wrap {
  height: 52px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--r-sm);
  padding: 8px 14px;
  flex-shrink: 0;
}
.platform-card__logo-wrap--dark {
  background: #111;
}
.platform-card__logo {
  max-height: 36px;
  max-width: 130px;
  object-fit: contain;
}

.platform-card__rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.stars { display: flex; gap: 2px; }
.star {
  color: var(--c-gold);
  font-size: 16px;
  line-height: 1;
}

.platform-card__score {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}
.platform-card__score small {
  font-size: 13px;
  font-weight: 400;
  color: var(--c-text-muted);
  font-family: var(--font-body);
}

/* CARD BODY */
.platform-card__body {
  padding: var(--sp-3);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.platform-card__bonus-box {
  background: rgba(212,168,67,0.06);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: var(--r-sm);
  padding: 12px var(--sp-2);
}
.platform-card__bonus-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  margin-bottom: 5px;
}
.platform-card__bonus-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.4;
}

.platform-card__features {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.platform-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--c-text-muted);
}
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(46,204,113,0.12);
  color: var(--c-success);
  border-radius: 50%;
  font-size: 10px;
  flex-shrink: 0;
}

.platform-card__payments {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}
.payment-badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.payment--visa { background: #1a1f71; color: #fff; }
.payment--mc   { background: #eb001b; color: #fff; }
.payment--pp   { background: #003087; color: #fff; }
.payment--sk   { background: #9c1a1a; color: #fff; }

/* CARD FOOTER */
.platform-card__footer {
  padding: var(--sp-3);
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.platform-card__legal {
  font-size: 11px;
  color: var(--c-text-faint);
  text-align: center;
  line-height: 1.4;
}

.platforms__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-2) var(--sp-3);
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.platforms__note svg { flex-shrink: 0; margin-top: 2px; color: var(--c-gold); }

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: var(--sp-8) 0;
  background: var(--c-bg);
}

.why-us__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-8);
  align-items: center;
}

.why-us__left .section-title { text-align: left; }
.why-us__intro {
  font-size: 16px;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

.why-us__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  transition: border-color var(--t-base), transform var(--t-base);
}
.why-card:hover {
  border-color: rgba(212,168,67,0.3);
  transform: translateY(-3px);
}

.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  color: var(--c-gold);
}

.why-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 5px;
}
.why-card p {
  font-size: 13.5px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ============================================
   RESPONSIBLE BANNER
   ============================================ */
.resp-banner {
  padding: var(--sp-6) 0;
  background: linear-gradient(135deg, #0a1a0a 0%, #0d1428 50%, #0a1020 100%);
  border-top: 1px solid rgba(46,204,113,0.15);
  border-bottom: 1px solid rgba(46,204,113,0.15);
}

.resp-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.resp-banner__icon {
  width: 80px;
  height: 80px;
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-success);
}

.resp-banner__content { flex: 1; min-width: 260px; }
.resp-banner__content h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 28px);
  color: var(--c-text);
  margin-bottom: 8px;
}
.resp-banner__content p {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-2);
}

.resp-banner__orgs {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.resp-banner__orgs a {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-success);
  padding: 4px 12px;
  border: 1px solid rgba(46,204,113,0.25);
  border-radius: 100px;
  transition: all var(--t-fast);
}
.resp-banner__orgs a:hover {
  background: rgba(46,204,113,0.1);
  border-color: var(--c-success);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--sp-8) 0;
  background: var(--c-surface);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.faq__item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.faq__item:has(.faq__q[aria-expanded="true"]) {
  border-color: rgba(212,168,67,0.3);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: 20px var(--sp-3);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
  text-align: left;
  transition: color var(--t-fast);
}
.faq__q:hover { color: var(--c-gold); }
.faq__q[aria-expanded="true"] { color: var(--c-gold); }

.faq__chevron {
  flex-shrink: 0;
  transition: transform var(--t-base);
  color: var(--c-text-muted);
}
.faq__q[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
  color: var(--c-gold);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__a.open { max-height: 400px; }

.faq__a-inner {
  padding: 0 var(--sp-3) 20px;
  font-size: 14.5px;
  color: var(--c-text-muted);
  line-height: 1.75;
}
.faq__a-inner a { color: var(--c-gold); text-decoration: underline; }
.faq__a-inner a:hover { color: var(--c-gold-light); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--c-surface-2);
  border-top: 1px solid var(--c-border);
  padding: var(--sp-7) 0 var(--sp-4);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--c-border);
}

.footer__brand { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__tagline {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.footer__badges { display: flex; gap: var(--sp-1); flex-wrap: wrap; }
.footer__badge {
  padding: 4px 12px;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: 0.05em;
}

.footer__nav-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.footer__nav-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-2);
}
.footer__nav-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__nav-col a {
  font-size: 14px;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
}
.footer__nav-col a:hover { color: var(--c-gold); }

.footer__disclaimer {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.footer__disclaimer p {
  font-size: 13px;
  color: var(--c-text-faint);
  line-height: 1.7;
}
.footer__disclaimer strong { color: var(--c-text-muted); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.footer__copy {
  font-size: 13px;
  color: var(--c-text-faint);
}

/* ============================================
   SUB-PAGES: NAVBAR BACK BUTTON & CONTENT
   ============================================ */
.page-content {
  padding: 110px 0 var(--sp-8);
  min-height: 80vh;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
  transition: gap var(--t-fast);
}
.page-back:hover { gap: 12px; }
.page-back svg { transition: transform var(--t-fast); }
.page-back:hover svg { transform: translateX(-3px); }

.page-hero {
  background: linear-gradient(135deg, var(--c-surface-2) 0%, var(--c-surface) 100%);
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-6) 0 var(--sp-5);
  margin-bottom: var(--sp-6);
}

.prose {
  max-width: 780px;
}
.prose h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
  margin: var(--sp-5) 0 var(--sp-2);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--c-text);
  margin: var(--sp-3) 0 var(--sp-1);
}
.prose p {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-2);
}
.prose ul {
  list-style: disc;
  padding-left: var(--sp-3);
  margin-bottom: var(--sp-2);
}
.prose ul li {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: 4px;
}
.prose a { color: var(--c-gold); text-decoration: underline; }
.prose a:hover { color: var(--c-gold-light); }
.prose strong { color: var(--c-text); }

.prose-box {
  background: rgba(212,168,67,0.05);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-3) 0;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}

.org-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  transition: border-color var(--t-base);
}
.org-card:hover { border-color: var(--c-gold); }
.org-card a {
  display: block;
  font-weight: 600;
  color: var(--c-gold);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 4px;
}
.org-card a:hover { color: var(--c-gold-light); }
.org-card p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .platforms__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto var(--sp-4); }
  .why-us__layout { grid-template-columns: 1fr; }
  .why-us__left .section-title { text-align: center; }
  .why-us__left { text-align: center; }
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-5); }
}

@media (max-width: 768px) {
  .navbar__burger { display: flex; }
  .navbar__nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(7,11,24,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--c-border);
    padding: var(--sp-3);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--t-base), opacity var(--t-base);
    pointer-events: none;
  }
  .navbar__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .navbar__list { flex-direction: column; align-items: stretch; }
  .navbar__link { padding: 14px var(--sp-2); font-size: 16px; }
  .navbar__link--cta { margin-left: 0; }

  .hero { padding: 100px 0 60px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: var(--sp-2); }
  .hero__stat-sep { display: none; }

  .why-us__right { grid-template-columns: 1fr; }
  .resp-banner__inner { flex-direction: column; text-align: center; }
  .resp-banner__orgs { justify-content: center; }

  .footer__nav-group { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

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

@media (max-width: 480px) {
  .footer__nav-group { grid-template-columns: 1fr; }
  .age-gate__actions { flex-direction: column; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}
