/* ===== FIFA World Cup 2026 — global stylesheet ===== */

:root {
  --pitch: #0a4d2e;
  --pitch-dark: #062f1c;
  --pitch-light: #11703f;
  --gold: #f3c969;
  --gold-deep: #c89a3a;
  --ivory: #f6efe1;
  --paper: #fbf6ec;
  --ink: #18221c;
  --ink-soft: #3b463f;
  --line: #d8cfb9;
  --crimson: #b03323;
  --shadow: 0 6px 28px rgba(8, 32, 20, 0.12);
  --shadow-lg: 0 18px 60px rgba(8, 32, 20, 0.18);
  --radius: 6px;
  --radius-lg: 12px;
  --max: 1180px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Fraunces', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(ellipse at 10% 0%, rgba(243, 201, 105, 0.08), transparent 55%),
    radial-gradient(ellipse at 95% 100%, rgba(10, 77, 46, 0.06), transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

/* ============ HEADER BANNER CAROUSEL (full-width, under menu) ============ */
.header-banner-carousel {
  position: relative;
  width: 100%;
  background: #031310;
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
}
.header-banner-track {
  position: relative;
  width: 100%;
  height: 220px;
}
.header-banner {
  position: absolute;
  inset: 0;
  display: block;
  background-color: #031310;
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s ease;
  pointer-events: none;
}
.header-banner.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Banner background images.
   Each banner has the artwork on the right; a gradient overlay extends the
   solid dark colour from the left edge through the middle so headline/CTA
   stay readable. The background-color is matched to the banner artwork's
   own left-edge colour so there's no seam where the image ends. */
.header-banner--sports-welcome {
  background-image:
    linear-gradient(to right, rgba(3,19,16,1) 0%, rgba(3,19,16,1) 35%, rgba(3,19,16,0.6) 50%, rgba(3,19,16,0) 65%),
    url('/banners/sports-welcome-banner.webp');
}
.header-banner--sports-reload {
  background-image:
    linear-gradient(to right, rgba(3,19,16,1) 0%, rgba(3,19,16,1) 35%, rgba(3,19,16,0.6) 50%, rgba(3,19,16,0) 65%),
    url('/banners/sports-reload-banner.webp');
}
.header-banner--sports-cashback {
  background-image:
    linear-gradient(to right, rgba(3,19,16,1) 0%, rgba(3,19,16,1) 35%, rgba(3,19,16,0.6) 50%, rgba(3,19,16,0) 65%),
    url('/banners/sports-cashback-banner.webp');
}
.header-banner--casino-welcome {
  background-image:
    linear-gradient(to right, rgba(3,19,16,1) 0%, rgba(3,19,16,1) 35%, rgba(3,19,16,0.6) 50%, rgba(3,19,16,0) 65%),
    url('/banners/casino-welcome-banner.webp');
}

.header-banner:hover { filter: brightness(1.08); }
.header-banner-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 28px 38px;
  display: flex;
  align-items: center;
  height: 100%;
}
.header-banner-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 0 1 auto;
  max-width: 50%;
}
.header-banner-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.header-banner-headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ivory);
  font-weight: 500;
  line-height: 1.3;
}
.header-banner-headline strong {
  color: var(--gold);
  font-weight: 800;
}
.header-banner-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 11px 24px;
  background: var(--gold);
  color: var(--pitch-dark);
  font-weight: 800;
  font-size: 13.5px;
  border-radius: 4px;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .15s, transform .15s;
}
.header-banner:hover .header-banner-btn {
  background: #ffd87a;
  transform: translateX(2px);
}

/* Dots */
.header-banner-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 5;
}
.header-banner-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(246, 239, 225, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.header-banner-dot:hover { background: rgba(246, 239, 225, 0.7); }
.header-banner-dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
}

@media (max-width: 1180px) {
  .header-banner-track { height: 200px; }
  .header-banner-inner { padding: 22px 24px 28px; }
}
@media (max-width: 1024px) {
  .header-banner-track { height: 180px; }
  .header-banner-inner { padding: 20px 22px 26px; gap: 18px; }
  .header-banner-text { max-width: 55%; }
}
@media (max-width: 720px) {
  /* On mobile we switch to 'cover' since 'contain' would leave too much
     dead space; we shift the image off-screen-right and let the gradient
     handle the readability on the left. */
  .header-banner-track { height: 150px; }
  .header-banner {
    background-size: auto 130%;
    background-position: right -30px center;
  }
  .header-banner--sports-welcome,
  .header-banner--sports-reload,
  .header-banner--sports-cashback {
    background-image:
      linear-gradient(to right, rgba(3,19,16,1) 0%, rgba(3,19,16,0.95) 50%, rgba(3,19,16,0.6) 75%, rgba(3,19,16,0.2) 100%),
      var(--banner-img);
  }
  .header-banner--sports-welcome { --banner-img: url('/banners/sports-welcome-banner.webp'); }
  .header-banner--sports-reload { --banner-img: url('/banners/sports-reload-banner.webp'); }
  .header-banner--sports-cashback { --banner-img: url('/banners/sports-cashback-banner.webp'); }
  .header-banner--casino-welcome {
    background-image:
      linear-gradient(to right, rgba(3,19,16,1) 0%, rgba(3,19,16,0.95) 50%, rgba(3,19,16,0.6) 75%, rgba(3,19,16,0.2) 100%),
      url('/banners/casino-welcome-banner.webp');
  }
  .header-banner-inner { padding: 18px 16px 26px; }
  .header-banner-headline { font-size: 14px; line-height: 1.3; }
  .header-banner-tag { font-size: 10px; }
  .header-banner-btn { padding: 9px 14px; font-size: 12px; letter-spacing: 0; margin-top: 2px; }
  .header-banner-text { max-width: 62%; gap: 7px; }
  .header-banner-dots { bottom: 6px; gap: 5px; }
  .header-banner-dot { width: 7px; height: 7px; }
}
@media (max-width: 480px) {
  .header-banner-track { height: 130px; }
  .header-banner-headline { font-size: 13px; }
  .header-banner-btn { padding: 8px 12px; font-size: 11px; }
  .header-banner-text { max-width: 68%; }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--pitch-dark);
  border-bottom: 3px solid var(--gold);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  width: 100%;
  margin: 0;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ivory);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand .ball {
  width: 24px; height: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 28%, #1a1a1a 30% 32%, #fff 33% 50%, #1a1a1a 52% 54%, #ddd 56%);
  box-shadow: inset -3px -4px 6px rgba(0,0,0,.4);
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer; padding: 8px;
  color: var(--ivory);
}
.nav-toggle svg { width: 26px; height: 26px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  align-items: center;
}
.main-nav a {
  display: inline-block;
  padding: 8px 11px;
  color: var(--ivory);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  border-radius: 4px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  background: rgba(243, 201, 105, .15);
  color: var(--gold);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  background: var(--gold);
  color: var(--pitch-dark);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  border-radius: var(--radius);
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .15s, background .15s;
  flex-shrink: 0;
}
.header-cta:hover { background: #ffd87a; transform: translateY(-1px); }

/* Tighten nav at narrower desktop widths so 9 items + brand + CTA fit one row */
@media (max-width: 1280px) {
  .header-inner { padding: 12px 20px; gap: 10px; }
  .brand { font-size: 20px; }
  .main-nav a { padding: 7px 9px; font-size: 13.5px; }
  .header-cta { padding: 8px 14px; font-size: 13px; }
}
@media (max-width: 1100px) {
  .header-inner { padding: 12px 16px; gap: 8px; }
  .brand { font-size: 18px; gap: 7px; }
  .brand .ball { width: 22px; height: 22px; }
  .main-nav a { padding: 6px 7px; font-size: 12.5px; letter-spacing: 0; }
  .header-cta { padding: 7px 12px; font-size: 12px; letter-spacing: 0; }
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--pitch-dark) 0%, var(--pitch) 50%, var(--pitch-light) 100%);
  color: var(--ivory);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      transparent 0 80px,
      rgba(255,255,255,.025) 80px 81px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border: 2px solid rgba(243, 201, 105, .12);
  border-radius: 50%;
  right: -250px; top: -200px;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(243, 201, 105, .15);
  border: 1px solid rgba(243, 201, 105, .35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  max-width: 880px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}
.hero p.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  max-width: 720px;
  color: rgba(246, 239, 225, .92);
  margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ MAIN CONTAINER ============ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 50px 22px;
}
.container.narrow { max-width: 820px; }

/* ============ TYPOGRAPHY ============ */
.container h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--pitch-dark);
  margin: 50px 0 18px;
  position: relative;
  padding-left: 18px;
}
.container h2:first-child { margin-top: 0; }
.container h2::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 5px;
  background: var(--gold);
  border-radius: 2px;
}
.container h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 23px);
  font-weight: 700;
  color: var(--pitch);
  margin: 30px 0 12px;
  letter-spacing: -0.005em;
}
.container h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--pitch-dark);
  margin: 22px 0 10px;
}
.container p { margin-bottom: 16px; color: var(--ink); }
.container p a, .container li a {
  color: var(--pitch);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .15s;
}
.container p a:hover, .container li a:hover { color: var(--gold-deep); }
.container ul, .container ol { margin: 14px 0 22px 24px; }
.container li { margin-bottom: 8px; }
.container strong { color: var(--pitch-dark); font-weight: 700; }

/* ============ FIGURES (images) ============ */
figure {
  margin: 30px auto;
  display: block;
  text-align: center;
}
figure img {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
figure figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}
@media (max-width: 720px) {
  figure img { width: 100%; }
}

/* ============ TABLES ============ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 30px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 15.5px;
}
.data-table thead {
  background: var(--pitch-dark);
  color: var(--ivory);
}
.data-table th, .data-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.data-table th { font-weight: 600; letter-spacing: .03em; text-transform: uppercase; font-size: 13px; }
.data-table tbody tr:hover { background: #fbf3df; }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table-wrap { overflow-x: auto; }

/* ============ BANNERS (SpinBetter promo — uses real banner images) ============ */
.promo-banner {
  margin: 40px 0;
  padding: 38px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(243, 201, 105, .25);
  min-height: 220px;
  background-color: #0e2a1c;
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  display: block;
}

/* Sports banners */
.promo-banner--sports-welcome {
  background-image:
    linear-gradient(to right, rgba(14,42,28,1) 0%, rgba(14,42,28,0.92) 40%, rgba(14,42,28,0.5) 65%, rgba(14,42,28,0) 80%),
    url('/banners/sports-welcome-banner.webp');
}
.promo-banner--sports-reload {
  background-image:
    linear-gradient(to right, rgba(14,42,28,1) 0%, rgba(14,42,28,0.92) 40%, rgba(14,42,28,0.5) 65%, rgba(14,42,28,0) 80%),
    url('/banners/sports-reload-banner.webp');
}
.promo-banner--sports-cashback {
  background-image:
    linear-gradient(to right, rgba(14,42,28,1) 0%, rgba(14,42,28,0.92) 40%, rgba(14,42,28,0.5) 65%, rgba(14,42,28,0) 80%),
    url('/banners/sports-cashback-banner.webp');
}

/* Casino banners — purple-tinted overlay for variation */
.promo-banner--casino-welcome {
  background-color: #2a1340;
  background-image:
    linear-gradient(to right, rgba(42,19,64,1) 0%, rgba(42,19,64,0.92) 40%, rgba(42,19,64,0.5) 65%, rgba(42,19,64,0) 80%),
    url('/banners/casino-welcome-banner.webp');
}

.promo-banner .promo-content {
  position: relative;
  z-index: 1;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.promo-banner .promo-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--pitch-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 4px;
  margin: 0;
}
.promo-banner .promo-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ivory) !important;
  padding-left: 0 !important;
  margin: 0;
}
.promo-banner .promo-headline::before { display: none !important; }
.promo-banner .promo-headline em { color: var(--gold); font-style: italic; }
.promo-banner .promo-text {
  font-size: 15.5px;
  color: var(--ivory) !important;
  margin: 0;
  max-width: 100%;
  opacity: 0.92;
  line-height: 1.5;
}
.promo-banner .btn {
  white-space: nowrap;
  margin-top: 6px;
  align-self: flex-start;
}

@media (max-width: 920px) {
  .promo-banner .promo-content { max-width: 70%; }
}
@media (max-width: 720px) {
  .promo-banner {
    padding: 26px 22px;
    background-size: cover;
    background-position: right -80px center;
    min-height: 200px;
  }
  .promo-banner--sports-welcome,
  .promo-banner--sports-reload,
  .promo-banner--sports-cashback {
    background-image:
      linear-gradient(to right, rgba(14,42,28,0.96) 0%, rgba(14,42,28,0.85) 70%, rgba(14,42,28,0.55) 100%),
      url('/banners/sports-welcome-banner.webp');
  }
  .promo-banner--sports-reload {
    background-image:
      linear-gradient(to right, rgba(14,42,28,0.96) 0%, rgba(14,42,28,0.85) 70%, rgba(14,42,28,0.55) 100%),
      url('/banners/sports-reload-banner.webp');
  }
  .promo-banner--sports-cashback {
    background-image:
      linear-gradient(to right, rgba(14,42,28,0.96) 0%, rgba(14,42,28,0.85) 70%, rgba(14,42,28,0.55) 100%),
      url('/banners/sports-cashback-banner.webp');
  }
  .promo-banner--casino-welcome {
    background-image:
      linear-gradient(to right, rgba(42,19,64,0.96) 0%, rgba(42,19,64,0.85) 70%, rgba(42,19,64,0.55) 100%),
      url('/banners/casino-welcome-banner.webp');
  }
  .promo-banner .promo-content { max-width: 100%; }
  .promo-banner .promo-headline { font-size: 22px; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--pitch-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--radius);
  letter-spacing: .02em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: transform .15s, background .15s, box-shadow .15s;
  box-shadow: 0 4px 14px rgba(243, 201, 105, .35);
}
.btn:hover {
  background: #ffd87a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 201, 105, .5);
}
.btn.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 2px solid rgba(246, 239, 225, .4);
  box-shadow: none;
}
.btn.btn-ghost:hover {
  background: rgba(246, 239, 225, .1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============ INFO CARDS ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.card {
  background: #fff;
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card .card-icon {
  width: 44px; height: 44px;
  background: var(--pitch);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  margin-bottom: 14px;
}
.card h3 { margin: 0 0 8px; color: var(--pitch-dark); font-size: 19px; }
.card p { font-size: 15px; color: var(--ink-soft); margin-bottom: 0; }
.card a.card-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--pitch);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1px;
  font-size: 14.5px;
}
.card a.card-link:hover { color: var(--gold-deep); }

/* ============ STATS ROW ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  margin: 36px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  padding: 26px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat .stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--pitch);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat .stat-label {
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}
@media (max-width: 720px) {
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
}

/* ============ STEPS LIST ============ */
.steps {
  list-style: none !important;
  margin: 22px 0 30px !important;
  counter-reset: step;
  padding: 0 !important;
}
.steps li {
  position: relative;
  padding: 18px 22px 18px 64px;
  margin-bottom: 12px !important;
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
  counter-increment: step;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px; top: 18px;
  width: 32px; height: 32px;
  background: var(--pitch);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}
.steps li strong { display: block; margin-bottom: 4px; color: var(--pitch-dark); font-size: 16px; }

/* ============ FAQ (CSS-only collapsible) ============ */
.faq { margin: 30px 0; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item summary {
  padding: 18px 50px 18px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--pitch-dark);
  position: relative;
  list-style: none;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--gold-deep);
  font-weight: 400;
  transition: transform .2s;
  font-family: var(--font-body);
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: #fbf3df; }
.faq-item .faq-body {
  padding: 4px 22px 22px;
  font-size: 16px;
  color: var(--ink);
}
.faq-item .faq-body p { margin-bottom: 12px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--pitch); }
.breadcrumbs .sep { margin: 0 8px; color: var(--gold-deep); }

/* ============ CTA SECTION ============ */
.final-cta {
  background: var(--pitch-dark);
  color: var(--ivory);
  padding: 50px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 50px 0 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 100%, rgba(243, 201, 105, .12), transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  color: var(--ivory) !important;
  margin: 0 0 16px !important;
  padding-left: 0 !important;
  position: relative;
  z-index: 1;
  font-size: clamp(26px, 3vw, 34px) !important;
  font-weight: 800 !important;
}
.final-cta h2::before { display: none !important; }
.final-cta p {
  color: var(--ivory) !important;
  margin-bottom: 28px;
  position: relative; z-index: 1;
  max-width: 580px;
  margin-left: auto; margin-right: auto;
  font-size: 17px;
  line-height: 1.6;
}

/* ============ PROMO CODE COPY BOX ============ */
.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fbf3df;
  border: 2px dashed var(--gold-deep);
  padding: 10px 14px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: var(--pitch-dark);
  margin: 6px 0;
}
.promo-code button {
  background: var(--pitch);
  color: var(--gold);
  border: 0;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .15s;
}
.promo-code button:hover { background: var(--pitch-dark); }
.promo-code button.copied { background: var(--gold); color: var(--pitch-dark); }

/* ============ CALLOUT BOX ============ */
.callout {
  background: #fbf3df;
  border-left: 4px solid var(--gold-deep);
  padding: 18px 22px;
  margin: 26px 0;
  border-radius: 4px;
  font-size: 15.5px;
}
.callout strong { color: var(--pitch-dark); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--pitch-dark);
  color: rgba(246, 239, 225, .75);
  padding: 50px 22px 28px;
  margin-top: 70px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(246, 239, 225, .12);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ivory);
  margin-bottom: 12px;
}
.footer-tag { font-size: 14px; line-height: 1.6; max-width: 340px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(246, 239, 225, .75);
  text-decoration: none;
  font-size: 14.5px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(246, 239, 225, .55);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 2px solid var(--crimson);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--crimson);
  background: rgba(176, 51, 35, .08);
  flex-shrink: 0;
}
.disclaimer {
  font-size: 12.5px;
  color: rgba(246, 239, 225, .55);
  font-style: italic;
  flex: 1;
  min-width: 260px;
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ============ MOBILE NAV (drawer) ============ */
@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -340px;
    width: 320px;
    height: 100vh;
    background: var(--pitch-dark);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 24px 24px;
    transition: right .25s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.3);
    overflow-y: auto;
    z-index: 60;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav li { width: 100%; }
  .main-nav a {
    padding: 14px 16px;
    font-size: 16px;
    border-bottom: 1px solid rgba(246, 239, 225, .08);
    border-radius: 0;
    width: 100%;
    display: block;
  }
  .header-cta { display: none; }
  .main-nav .header-cta {
    display: inline-flex;
    margin-top: 18px;
    justify-content: center;
  }
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(8, 32, 20, .6);
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
    z-index: 49;
  }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
}

/* ============ 404 ============ */
.error-page {
  text-align: center;
  padding: 100px 22px;
}
.error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 180px);
  font-weight: 900;
  color: var(--pitch);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.error-page .error-sub {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--pitch-dark);
  margin-bottom: 16px;
  font-weight: 700;
}
.error-page p { max-width: 480px; margin: 0 auto 28px; color: var(--ink-soft); }

/* ============ UTILS ============ */
.intro-lead {
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 400;
}
hr.fancy {
  border: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 40px 0;
}
