/* ============================================================
   PARIS BETTING MASTER CLUB — Design System
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg-0: #060b12;
  --bg-1: #080d14;
  --bg-2: #0d1620;
  --bg-card: #111d2e;
  --bg-card-hover: #162438;
  --bg-subtle: #0a1220;

  --gold: #c9a027;
  --gold-light: #e8c96a;
  --gold-dark: #9a7a1e;
  --gold-muted: rgba(201, 160, 39, 0.12);
  --gold-border: rgba(201, 160, 39, 0.25);

  --red: #c8273c;
  --silver: #9dafc4;
  --bronze: #b87333;

  --text-primary: #f0f4f8;
  --text-secondary: #8fa6be;
  --text-muted: #566c83;

  --border: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(201, 160, 39, 0.2);

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

  --shadow-card: 0 4px 40px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 0 30px rgba(201, 160, 39, 0.18);
  --shadow-btn: 0 4px 20px rgba(201, 160, 39, 0.35);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 72px;
  --container: 1200px;
  --section-py: 96px;
}

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

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

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

body.no-scroll { overflow: hidden; }

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

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-gold { color: var(--gold); }
.text-gold em { font-style: italic; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.08);
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn--gold {
  background: linear-gradient(135deg, #d4aa30, #c9a027, #a8841e);
  color: #080d14;
  border-color: var(--gold);
  box-shadow: var(--shadow-btn);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 160, 39, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

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

.btn--silver {
  background: linear-gradient(135deg, #b0c4d8, #8fa6be, #7190a8);
  color: #080d14;
  border-color: var(--silver);
}
.btn--silver:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(157, 175, 196, 0.4);
}

.btn--bronze {
  background: linear-gradient(135deg, #c88c40, #b87333, #9a5e28);
  color: #fff;
  border-color: var(--bronze);
}
.btn--bronze:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 115, 51, 0.4);
}

.btn--lg { padding: 16px 36px; font-size: 0.95rem; border-radius: var(--radius-lg); }
.btn--sm { padding: 10px 20px; font-size: 0.8rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Section commons ────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 20px;
}

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

/* ── Reveal Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Age Gate ─────────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.hidden { display: none; }

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 18, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.age-gate__card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-gold);
  animation: cardIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

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

.age-gate__emblem {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.age-gate__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

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

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

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

.age-gate__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.age-gate__disclaimer a {
  color: var(--gold);
  text-decoration: underline;
}

.age-gate__refused { display: none; }
.age-gate__refused[hidden] { display: none; }
.age-gate__refused:not([hidden]) { display: block; }

.age-gate__emblem--red svg circle { stroke: var(--red); }

/* ── Cookie Banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(11, 18, 30, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  padding: 20px 0;
  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: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 260px;
}
.cookie-banner__text strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.cookie-banner__text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: underline;
  white-space: nowrap;
}
.cookie-banner__link:hover { color: var(--gold); }

/* ── Header / Nav ───────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(8, 13, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-gold), 0 8px 32px rgba(0,0,0,0.4);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

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

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

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav__cta {
  margin-left: 8px;
}

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

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

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

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 160, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 160, 39, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

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

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 160, 39, 0.18), transparent 70%);
  top: -100px;
  right: 10%;
  animation-duration: 14s;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10, 50, 100, 0.5), transparent 70%);
  bottom: -80px;
  left: 5%;
  animation-duration: 10s;
  animation-delay: -4s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 39, 60, 0.1), transparent 70%);
  top: 50%;
  left: 50%;
  animation-duration: 16s;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.97); }
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 80px;
  max-width: 820px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--text-primary);
  line-height: 1.12;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__br { display: block; }

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0;
}

.trust-item {
  text-align: center;
  padding: 0 28px;
}
.trust-item:first-child { padding-left: 0; }

.trust-item__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-item__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 56px;
  border: 2px solid var(--border-gold);
  border-radius: 18px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  cursor: pointer;
  transition: border-color var(--transition);
}

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

.hero__scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(16px); opacity: 0.3; }
}

/* ── Platforms Section ──────────────────────────────────────── */
.platforms {
  padding: var(--section-py) 0;
  background: var(--bg-0);
  position: relative;
}

.platforms::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,160,39,0.05), transparent);
  pointer-events: none;
}

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

/* ── Platform Card ──────────────────────────────────────────── */
.platform-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-gold);
}

.platform-card--featured {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-8px);
}

.platform-card--featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 24px 60px rgba(201, 160, 39, 0.25);
}

.platform-card__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 64px;
  height: 64px;
  overflow: hidden;
}

.platform-card__ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 64px 64px 0 0;
  border-color: var(--gold) transparent transparent transparent;
}

.platform-card__ribbon span {
  position: absolute;
  top: 10px;
  left: 6px;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #080d14;
  line-height: 1;
}

.platform-card__ribbon--silver::before { border-color: var(--silver) transparent transparent transparent; }
.platform-card__ribbon--bronze::before { border-color: var(--bronze) transparent transparent transparent; }
.platform-card__ribbon--silver span { color: #080d14; }
.platform-card__ribbon--bronze span { color: #fff; }

.platform-card__top-label {
  padding: 16px 16px 0 72px;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.tag--gold {
  background: rgba(201, 160, 39, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

.platform-card__img-wrap {
  margin: 16px 20px;
  border-radius: var(--radius-md);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.platform-card__img-wrap--light {
  background: #ffffff;
  padding: 16px 24px;
}

.platform-card__img-wrap--dark {
  background: #111111;
  padding: 10px 20px;
}

.platform-card__img {
  max-height: 72px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.platform-card__body {
  padding: 4px 24px 28px;
}

.platform-card__rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.rating-score {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--gold);
  font-size: 0.85rem;
  line-height: 1;
}

.rating-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.platform-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.platform-card__bonus-box {
  background: var(--gold-muted);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 16px;
}

.bonus-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.bonus-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.bonus-value strong {
  color: var(--gold-light);
  font-size: 1.05rem;
}

.bonus-extra {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.platform-card__features {
  margin-bottom: 16px;
}

.platform-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 4px 0;
}

.check {
  color: #3dbd7a;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.platform-card__payments {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.12);
}

.payment-icon--visa {
  background: #1a1f71;
  color: #fff;
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.payment-icon--mc {
  background: #252525;
  padding: 0 8px;
  gap: 0;
  position: relative;
  width: 44px;
}

.mc-c1, .mc-c2 {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
}
.mc-c1 { background: #eb001b; left: 8px; }
.mc-c2 { background: #f79e1b; left: 18px; opacity: 0.9; }

.payment-icon--paypal {
  background: #003087;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
}
.payment-icon--paypal em {
  color: #009cde;
}

.payment-icon--skrill {
  background: #862165;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.platform-card__tc {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── Why Section ────────────────────────────────────────────── */
.why {
  padding: var(--section-py) 0;
  background: var(--bg-1);
}

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

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Responsible Gaming ─────────────────────────────────────── */
.responsible {
  padding: 64px 0;
  background: var(--bg-0);
}

.responsible__inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: rgba(201, 160, 39, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
}

.responsible__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

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

.responsible__content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.responsible__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.responsible__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  border-bottom: 1px solid transparent;
}

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

.responsible__link--primary {
  color: var(--gold);
  border-color: var(--gold-dark);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq {
  padding: var(--section-py) 0;
  background: var(--bg-1);
}

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

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

.faq__item.open {
  border-color: var(--border-gold);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color var(--transition), background var(--transition);
}

.faq__question:hover { color: var(--gold); background: rgba(255,255,255,0.02); }

.faq__item.open .faq__question { color: var(--gold); }

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}

.faq__item.open .faq__chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq__answer:not([hidden]) {
  max-height: 500px;
  padding: 0 24px 22px;
}

.faq__answer[hidden] { display: block !important; max-height: 0; padding: 0 24px; }

.faq__answer p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq__answer p a {
  color: var(--gold);
  text-decoration: underline;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 48px;
}

.footer__logo { margin-bottom: 20px; }

.footer__brand .nav__logo-text { font-size: 0.95rem; }

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

.footer__badges-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  color: var(--gold);
  background: var(--gold-muted);
}

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

.footer__nav-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.footer__nav-col a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer__nav-col a:hover { color: var(--gold); }

.footer__divider {
  height: 1px;
  background: var(--border);
}

.footer__bottom {
  padding: 28px 0;
  text-align: center;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto 12px;
}

.footer__disclaimer strong { color: var(--text-secondary); }

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Subpage Layout ─────────────────────────────────────────── */
.subpage-hero {
  background: var(--bg-0);
  padding: calc(var(--nav-h) + 56px) 0 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(201,160,39,0.06), transparent);
  pointer-events: none;
}

.subpage-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.subpage-hero__back:hover { color: var(--gold); }
.subpage-hero__back svg { width: 16px; height: 16px; }

.subpage-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.subpage-hero p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 640px;
}

.subpage-content {
  padding: 80px 0 100px;
}

.subpage-content .container {
  max-width: 800px;
}

.content-block {
  margin-bottom: 48px;
}

.content-block h2 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
}

.content-block h3 {
  font-size: 1rem;
  color: var(--gold-light);
  margin: 20px 0 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.content-block p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.content-block ul {
  margin: 12px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content-block li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.content-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

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

.content-block strong { color: var(--text-primary); }

.last-updated {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-top: 48px;
}

.responsible-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.responsible-org-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.responsible-org-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.responsible-org-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.responsible-org-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.responsible-org-card a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .platforms__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: repeat(3, 1fr); }
  .platform-card--featured { transform: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(8, 13, 20, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border-gold);
  }

  .nav__links.open { display: flex; }
  .nav__link { padding: 14px 16px; font-size: 1rem; }
  .nav__cta { margin-left: 0; margin-top: 8px; width: 100%; justify-content: center; }
  .nav__burger { display: flex; }

  .hero__title { font-size: 2.2rem; }
  .hero__trust { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trust-divider { width: 60px; height: 1px; }
  .trust-item { padding: 0; }

  .platforms__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__nav-col:last-child { grid-column: span 2; }

  .responsible__inner { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .responsible__icon { width: 48px; height: 48px; }

  .hero__cta { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }

  .responsible-links-grid { grid-template-columns: 1fr; }

  .cookie-banner__inner { flex-direction: column; gap: 16px; }
  .cookie-banner__actions { width: 100%; justify-content: flex-start; }

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

  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .footer__nav { grid-template-columns: 1fr; }
  .footer__nav-col:last-child { grid-column: auto; }
  .hero__br { display: none; }
  .platforms__grid { gap: 16px; }
  .why__grid { gap: 16px; }
}
