/* Shared MEGA63 marketing-site design system. */
/* Scaffold: pure-black canvas + warm gold CTA + uppercase Oswald display + surface-layer depth
   Grafts for MEGA63: forest-green licensed chip, red RM prefix, green live-pulse dot */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

:root {
  /* Lamborghini scaffold */
  --abyss:      #000000;  /* page bg */
  --dark-iron:  #181818;  /* subtle surface */
  --charcoal:   #202020;  /* elevated */
  --shadow-gy:  #313131;  /* muted surface text */
  --iron:       #555555;
  --slate:      #666666;
  --ash:        #a0a0a0;
  --steel:      #b0b0b0;
  --smoke:      #f5f5f5;
  --white:      #ffffff;

  --lambo-gold:      #FFC000;
  --lambo-gold-dark: #917300;
  --lambo-gold-lite: #FFCE3E;

  /* MEGA63 grafts — only deployed where identity demands it */
  --mega-green:      #007f5a;
  --mega-green-deep: #014d2a;
  --mega-green-lite: #14a16b;
  --mega-red:        #ce061f;
  --mega-gold:       #d4af37;  /* MEGA63 canonical — slightly cooler than lambo */

  /* Typography */
  --font-display: 'Oswald', 'Archivo Narrow', Impact, sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --text-body: 16px;
  --text-small: 14px;
  --text-label: 11px;
  --type-section: clamp(36px, 4.5vw, 56px);
  --type-row: clamp(22px, 2.1vw, 26px);
  --section-space: clamp(64px, 7vw, 104px);

  /* Layout */
  --max-w: 1440px;
  --gutter-desktop: 56px;
  --gutter-mobile: 20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--abyss);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== HEADER — minimal, floats on black ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px var(--gutter-desktop);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: rgba(8, 8, 8, 0.62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-right { display: flex; gap: 10px; align-items: center; }

.header-logo { min-width: 0; display: block; }
.header-logo img {
  width: 210px;
  height: auto;
  max-height: 28px;

  max-width: 100%;
}

/* ===== BUTTONS — Lamborghini philosophy: zero radius, no shadow ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease, color 0.2s ease;
  white-space: nowrap;

  line-height: 1.3;

  min-height: 48px;
}

.btn-gold {
  background: var(--lambo-gold);
  color: var(--abyss);
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--lambo-gold-lite);
  color: var(--abyss);
}

.btn-green {
  background: var(--mega-green);
  color: var(--white);
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}
.btn-green::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--mega-green-lite);
  opacity: 0.6;
}
.btn-green:hover {
  background: var(--mega-green-deep);
  color: var(--white);
}

.btn-gold-outline {
  background: transparent;
  color: var(--lambo-gold);
  border: 1px solid var(--lambo-gold);
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 500;
}
.btn-gold-outline:hover {
  background: var(--lambo-gold);
  color: var(--abyss);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
}
.btn-ghost:hover {
  border-color: var(--white);
  opacity: 1;
}

.btn-lg {
  padding: 22px 36px;
  font-size: 15px;
  letter-spacing: 2.2px;
}

.btn-compact {
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 1.5px;

  min-height: 44px;
}

/* ===== HERO — cathedral of darkness, MEGA63 grafts inside ===== */
.hero {
  position: relative;
  min-height: 92vh;
  padding: clamp(40px, 8vw, 96px) var(--gutter-desktop);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 48px;
  overflow: hidden;
}

/* subtle atmospheric vignette — Lambo "cinematic darkness" */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255,192,0,0.04), transparent 70%),
    radial-gradient(ellipse 40% 30% at 10% 50%, rgba(0,127,90,0.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

/* Licensed chip — MEGA63 green graft, keeps the Lambo rectangular aesthetic */
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--mega-green);
  color: var(--mega-green-lite);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: fit-content;
}

.hero-chip::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--mega-green-lite);
  border-radius: 50%;
  animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}


/* Hero display — Oswald UPPERCASE, tight line-height */
.hero-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 10vw, 120px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
  max-width: 13ch;
}

.hero-display .gold {
  color: var(--lambo-gold);
}

.hero-display .green {
  color: var(--mega-green-lite);
}

.hero-display .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--smoke);
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--steel);
  max-width: 46ch;
  margin-top: 28px;
}

/* Payments rail — surface layered, uppercase, Lambo-style metallic */
.hero-payments {
  display: grid;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.payments-label {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--steel);
}

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

.pay-badge {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--smoke);
  padding: 8px 10px;
  background: var(--charcoal);
  border-radius: 0;
}

/* CTA row */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Stats row — Lambo "surface-color layering" depth, MEGA63 red+gold accents */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 8px;
  background: var(--dark-iron);
}

.hero-stat {
  padding: 24px 28px;
  border-right: 1px solid var(--charcoal);
}
.hero-stat:last-child { border-right: none; }

.stat-label {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stat-footnote {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 8px;
}

.stat-prefix {
  font-family: var(--font-body);
  font-size: 0.38em;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--mega-red);
  text-transform: uppercase;
}

.stat-suffix {
  font-family: var(--font-body);
  font-size: max(11px, 0.32em);
  font-weight: 500;
  letter-spacing: 1.4px;
  color: var(--lambo-gold);
  text-transform: uppercase;
  margin-left: 2px;
}

.stat-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mega-green-lite);
  margin-left: 10px;
  align-self: center;
  animation: live-pulse 1.6s ease-in-out infinite;
}

/* ===== SHARED SECTION HEAD — kicker + title + lede, used across ports ===== */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 48px;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--charcoal);
  margin-bottom: 40px;
}

.section-kicker {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;

  line-height: 1.5;
}

.section-kicker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--lambo-gold);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-section);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
  max-width: 18ch;
}

.section-title .gold { color: var(--lambo-gold); }
.section-title .italic { font-style: italic; font-weight: 300; color: var(--smoke); }

.section-lede {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--steel);
  max-width: 40ch;
  justify-self: end;
  text-align: right;
}

/* ===== LIVE FEED — surface-layer ticker strip ===== */
.live-feed {
  padding: 0 var(--gutter-desktop);
}

.live-feed-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  background: var(--dark-iron);
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.live-feed-label {
  padding: 22px 24px;
  background: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--mega-green-lite);
  white-space: nowrap;
}

.live-feed-label::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--mega-green-lite);
  border-radius: 50%;
  animation: live-pulse 1.6s ease-in-out infinite;
}

.live-feed-items {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  overflow: hidden;
}

.live-item {
  padding: 18px 22px;
  border-left: 1px solid var(--charcoal);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  transition: opacity var(--live-fade-ms, 300ms) ease;
}
.live-item.is-fading { opacity: 0; }

.live-avatar {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  background: var(--abyss);
  color: var(--lambo-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

.live-body { min-width: 0; flex: 1; }

.live-meta {
  font-family: var(--font-body);
  font-size: var(--text-label);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-meta .live-time { color: var(--iron); margin-left: 6px; }

.live-amount {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.live-amount .stat-prefix { font-size: var(--text-label); margin-right: 0; }

/* ===== GAMES — 4-up surface-layer grid ===== */
.games {
  padding: var(--section-space) var(--gutter-desktop);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.game-card {
  background: var(--dark-iron);
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease;
}

.game-card:hover { background: var(--charcoal); }

.game-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--abyss);
}

.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  filter: grayscale(40%) contrast(1.05);
  transition: filter 0.4s ease, transform 0.6s ease;
}

.game-card:hover .game-card-img img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.03);
}

.game-card-img img[alt*="Ocean King"] {
  object-position: center;
  filter: none;
}

.game-card:hover .game-card-img img[alt*="Ocean King"] {
  filter: none;
}

.game-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.7));
  pointer-events: none;
}

.game-card-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.game-card-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-row);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
}

.game-card-body p {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--ash);
  line-height: 1.65;
  margin-bottom: 10px;
}

.game-card-body .btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 1px;

  min-height: 44px;
}

/* ===== PARTNERS — grouped editorial rails ===== */
.partners {
  padding: var(--section-space) var(--gutter-desktop);
  border-top: 1px solid var(--charcoal);
}

.partners-wrap {
  display: grid;
  gap: 0;
}

.partners-group {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--charcoal);
}

.partners-group:first-child { border-top: none; padding-top: 0; }
.partners-group:last-child { padding-bottom: 0; }

.partners-group-head {
  display: flex;
  flex-direction: column;
}

.partners-group-kicker {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--lambo-gold);
  margin-bottom: 10px;
}

.partners-group-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.partners-group-count {
  font-family: var(--font-body);
  font-size: var(--text-label);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--steel);
}

.partners-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1px;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.partner-tile {
  background: var(--dark-iron);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 3;
  transition: background 0.25s ease;
}

.partner-tile:hover { background: var(--charcoal); }

.partner-tile img {
  max-width: 82%;
  max-height: 34px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.5) contrast(0.85);
  opacity: 0.55;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.partner-tile:hover img {
  filter: grayscale(0%) brightness(1) contrast(1);
  opacity: 1;
}

/* ===== BONUS CTA — closing strip ===== */
.bonus-cta {
  padding: var(--section-space) var(--gutter-desktop);
  border-top: 1px solid var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,192,0,0.05), transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(0,127,90,0.04), transparent 70%);
  pointer-events: none;
}

.bonus-cta > * { position: relative; z-index: 1; }

.fomo-bar {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 14px 24px;
  border: 1px solid var(--charcoal);
  margin-bottom: 40px;
}

.fomo-stat {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ash);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fomo-dot {
  width: 7px;
  height: 7px;
  background: var(--mega-green-lite);
  border-radius: 50%;
  animation: live-pulse 1.6s ease-in-out infinite;
}

.bonus-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.bonus-cta h2 .gold { color: var(--lambo-gold); }
.bonus-cta h2 .italic { font-style: italic; font-weight: 300; color: var(--smoke); }

.bonus-cta-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ash);
  max-width: 48ch;
  margin: 0 auto 36px;
}

.bonus-cta-sub strong { color: var(--white); font-weight: 600; }

.bonus-trust {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: var(--text-label);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--steel);
}

.bonus-trust span { margin: 0 8px; color: var(--shadow-gy); }

/* ===== FOOTER — surface-layer, rectangular, dense ===== */
.footer {
  padding: 64px var(--gutter-desktop) 0;
  border-top: 1px solid var(--charcoal);
  background: var(--abyss);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand-logo { height: auto; width: 200px; margin-bottom: 20px; 
  max-width: 100%;
}

.footer-brand-text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.75;
  color: var(--steel);
  max-width: 42ch;
  margin-bottom: 24px;
}

.footer-licenses {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
}

.footer-license-badge {
  height: 26px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%) brightness(1.4);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.footer-license-badge:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

.footer-pay-label {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 12px;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 14px;
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ash);
  line-height: 1.6;
}

.footer-pay-pill {
  position: relative;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

/* Grid layout separates cells; inline middots deleted (they only worked in flex flow). */

.footer-social { display: flex; gap: 8px; }

.footer-soc {
  width: 44px;
  height: 44px;
  border: 1px solid var(--charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.footer-soc svg {
  width: 18px;
  height: 18px;
  fill: var(--steel);
  color: var(--steel);
  transition: fill 0.25s ease, color 0.25s ease;
}

.footer-soc:hover { border-color: var(--mega-green-lite); background: rgba(0,127,90,0.08); }
.footer-soc:hover svg { fill: var(--mega-green-lite); color: var(--mega-green-lite); }

.footer-col h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 12px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0; }
.footer-col a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--steel);
  letter-spacing: 0.2px;
  transition: color 0.2s ease;

  line-height: 1.5;

  display: inline-flex;

  align-items: center;

  min-height: 40px;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--charcoal);
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0;

  line-height: 1.7;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--steel);
  transition: color 0.2s ease;

  min-height: 36px;

  display: inline-flex;

  align-items: center;
}
.footer-legal a:hover { color: var(--white); }

/* ===== AMBASSADOR — split panel, image + stat-grid credentials ===== */
.ambassador {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-top: 1px solid var(--charcoal);
}

.ambassador-image {
  position: relative;
  overflow: hidden;
  background: var(--abyss);
  min-height: 420px;
}

.ambassador-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.4s ease;
}

.ambassador:hover .ambassador-image img {
  filter: grayscale(0%) contrast(1);
}

.ambassador-caption {
  position: absolute;
  bottom: 24px;
  right: 24px;
  left: 24px;
  text-align: right;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--smoke);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 768px) {
  .ambassador-caption { font-size: var(--text-label); letter-spacing: 0.9px; bottom: 14px; right: 14px; left: 14px; }
}

.ambassador-content {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-left: 1px solid var(--charcoal);
}

.ambassador-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
}

.ambassador-headline .italic {
  display: block;
  font-weight: 300;
  font-style: italic;
  font-size: 0.55em;
  color: var(--smoke);
  text-transform: none;
  margin-top: 8px;
  letter-spacing: 0.3px;
}

.ambassador-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ash);
  max-width: 52ch;
}

.ambassador-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--dark-iron);
  border-radius: 0;
  margin-top: 8px;
}

.ambassador-stat {
  padding: 20px 18px;
  border-right: 1px solid var(--charcoal);
}

.ambassador-stat:last-child {
  border-right: none;
}

.ambassador-stat .stat-label {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}

.ambassador-stat .stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

.ambassador-stat.is-gold .stat-value {
  color: var(--lambo-gold);
}

.ambassador-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

/* ===== VIP TIERS — full 10-row ladder, royal naming, gold-intensity gradient ===== */
.vip-tiers {
  padding: var(--section-space) var(--gutter-desktop);
  border-top: 1px solid var(--charcoal);
}

.vip-ladder {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  list-style: none;
  padding: 0;
}

.vip-row {
  display: grid;
  grid-template-columns: 80px 1.4fr 2.2fr 180px;
  gap: 24px;
  align-items: center;
  padding: 18px 24px;
  border-top: 1px solid var(--charcoal);
  border-radius: 0;
  transition: background 0.25s ease;
}

.vip-row:last-child {
  border-bottom: 1px solid var(--charcoal);
}

.vip-row:hover {
  background: var(--dark-iron);
}

.vip-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 52px;
  line-height: 1;
  color: var(--iron);
  letter-spacing: 0;
}

.vip-row:nth-child(-n+4) .vip-num { color: var(--iron); }
.vip-row:nth-child(5) .vip-num,
.vip-row:nth-child(6) .vip-num { color: var(--slate); }
.vip-row:nth-child(7) .vip-num,
.vip-row:nth-child(8) .vip-num { color: var(--steel); }
.vip-row:nth-child(9) .vip-num { color: var(--lambo-gold-lite); }
.vip-row:nth-child(10) .vip-num { color: var(--lambo-gold); }

.vip-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.vip-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
}

.vip-row:nth-child(10) .vip-name {
  color: var(--lambo-gold-lite);
}

.vip-name-sub {
  font-family: var(--font-body);
  font-size: var(--text-label);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--steel);
}

.vip-perks {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--steel);
  line-height: 1.65;
}

.vip-bonus {
  justify-self: end;
  text-align: right;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.5px;
}

.vip-row:not(:first-child):not(:last-child) .vip-bonus::before {
  display: block;
  content: 'Upgrade Bonus';
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.4;
  margin-bottom: 5px;
}

.vip-row:first-child .vip-bonus,
.vip-row:last-child .vip-bonus {
  font-size: 16px;
  color: var(--lambo-gold-lite);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vip-bonus .stat-prefix {
  font-size: var(--text-label);
  color: var(--steel);
  letter-spacing: 1.2px;
  margin-right: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  vertical-align: 0.15em;
}

.vip-row:nth-child(9) .vip-bonus { color: var(--lambo-gold-lite); }
.vip-row:nth-child(10) .vip-bonus { color: var(--lambo-gold); font-size: 16px; }

.vip-closer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.vip-closer-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lambo-gold);
  border: 1px solid var(--lambo-gold);
  padding: 14px 24px;
  transition: background 0.2s ease, color 0.2s ease;

  min-height: 48px;
}

.vip-closer-link:hover {
  background: var(--lambo-gold);
  color: var(--abyss);
}

/* ===== FAQ — native <details> accordion, minimal, trust layer ===== */
.faq {
  padding: var(--section-space) var(--gutter-desktop);
  border-top: 1px solid var(--charcoal);
}

.faq-list {
  margin-top: 8px;
}

.faq-item {
  border-top: 1px solid var(--charcoal);
  border-radius: 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--charcoal);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-row);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;

  line-height: 1.3;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
  color: var(--lambo-gold);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--lambo-gold);
  outline-offset: 2px;
}

.faq-item summary::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFC000' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 32px 28px 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--steel);
  max-width: 72ch;
}

.faq-item p strong { color: var(--white); font-weight: 600; }

/* ===== READING GUIDES — same editorial rails and type as the partner section ===== */
.reading-guide {
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: minmax(200px, 0.65fr) minmax(0, 1.35fr);
  gap: 48px;
  padding: 0 var(--gutter-desktop) var(--section-space);
}
.reading-guide .section-title {
  font-size: var(--type-section);
  line-height: 1.05;
}
.reading-guide .section-title .gold { display: block; }
.reading-guide-list { list-style: none; min-width: 0; }
.reading-guide-item { border-top: 1px solid var(--charcoal); }
.reading-guide-item:last-child { border-bottom: 1px solid var(--charcoal); }
.reading-guide-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
}
.reading-guide-title {
  font-family: var(--font-display);
  font-size: var(--type-row);
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s ease;
}
.reading-guide-description {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--steel);
  max-width: 60ch;
}
.reading-guide-arrow { width: 20px; height: 20px; color: var(--lambo-gold); }
.reading-guide-link:hover .reading-guide-title { color: var(--lambo-gold); }
.reading-guide-link:focus-visible { outline: 2px solid var(--lambo-gold); outline-offset: 4px; }
@media (max-width: 1024px) {
  .reading-guide { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .reading-guide .section-title .gold { display: inline; }
}
@media (max-width: 768px) {
  .reading-guide { padding-bottom: 64px; }
  .reading-guide-title { font-size: 22px; }
  .reading-guide-link { padding: 22px 0; gap: 16px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-group { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
  .section-head { grid-template-columns: 1fr; }
  .section-lede { justify-self: start; text-align: left; }
  .live-feed-items {
    grid-auto-columns: minmax(220px, 1fr);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .live-feed-items::-webkit-scrollbar { display: none; }
}

@media (max-width: 768px) {
  .header,
  .hero,
  .live-feed,
  .games,
  .partners,
  .bonus-cta,
  .reading-guide,
  .footer { padding-left: var(--gutter-mobile); padding-right: var(--gutter-mobile); }

  .header { padding: 14px var(--gutter-mobile); gap: 12px; }
  .header-logo img { max-height: 22px; }
  .btn-compact { padding: 12px 18px; font-size: 12px; letter-spacing: 1.2px; 
  min-height: 44px;
}

  .hero { min-height: auto; gap: 36px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--charcoal); }
  .hero-stat:last-child { border-bottom: none; }

  .hero-ctas .btn { width: 100%; }

  .games { padding-top: 72px; padding-bottom: 72px; }
  .games-grid { grid-template-columns: 1fr; }

  .partners { padding-top: 72px; padding-bottom: 72px; }
  .partners-list { grid-template-columns: repeat(3, 1fr); }

  .bonus-cta { padding-top: 72px; padding-bottom: 72px; }
  .fomo-bar { flex-direction: column; gap: 10px; align-items: flex-start; padding: 14px 18px; }

  .footer { padding-top: 56px; }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .live-feed-inner { grid-template-columns: 1fr; }
  .live-feed-label { border-bottom: 1px solid var(--charcoal); justify-content: center; }
  .live-feed-items { grid-auto-flow: row; grid-auto-columns: 1fr; grid-template-columns: 1fr; overflow: hidden; }
  .live-item { border-left: none; border-top: 1px solid var(--charcoal); }
  .live-item:first-child { border-top: none; }

  .ambassador { grid-template-columns: 1fr; min-height: 0; }
  .ambassador-image { aspect-ratio: 4 / 3; min-height: 0; }
  .ambassador-content { padding: 32px var(--gutter-mobile); border-left: none; border-top: 1px solid var(--charcoal); }
  .ambassador-stats { grid-template-columns: repeat(2, 1fr); }
  .ambassador-stat:nth-child(2) { border-right: none; }
  .ambassador-stat:nth-child(1), .ambassador-stat:nth-child(2) { border-bottom: 1px solid var(--charcoal); }
  .ambassador-ctas .btn { width: 100%; }

  .vip-tiers { padding: 72px var(--gutter-mobile); }
  .vip-row { grid-template-columns: 56px 1fr; gap: 8px 16px; padding: 14px 16px; }
  .vip-num { font-size: 36px; }
  .vip-name { font-size: 22px; }
  .vip-perks { grid-column: 1 / -1; margin-top: 2px; }
  .vip-bonus { grid-column: 1 / -1; justify-self: start; text-align: left; font-size: 16px; margin-top: 4px; }
  .vip-row:nth-child(10) .vip-bonus { font-size: 14px; }

  .faq { padding: 72px var(--gutter-mobile); }
  .faq-item summary { font-size: 22px; padding: 22px 0; letter-spacing: 0; }
  .faq-item p { font-size: var(--text-body); padding-bottom: 22px; 
  line-height: 1.7;

  color: var(--steel);
}
}

@media (max-width: 480px) {
  .hero-display { font-size: clamp(40px, 11vw, 64px); }
  .partners-list { grid-template-columns: repeat(2, 1fr); }
}
/* Keep the logo legible and proportional on narrow phones. */
@media (max-width: 360px) {
  .header { padding-left: 16px; padding-right: 16px; gap: 8px; }
  .header-right { gap: 8px; }
  .header .btn-compact { padding-left: 10px; padding-right: 10px; }
}
@media (hover: none), (max-width: 768px) {
  .partner-tile img { filter: grayscale(0%) brightness(1) contrast(1) !important; opacity: 1 !important; }
}
.footer-payments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}
@media (max-width: 768px) {
  .footer-payments { grid-template-columns: repeat(2, 1fr); }
}
.payments-row + .payments-row { margin-top: 6px; }
@media (max-width: 768px) {
  .payments-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .pay-badge { text-align: center; padding: 8px 10px; font-size: var(--text-label); letter-spacing: 0.6px; white-space: nowrap; }
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 9999;
  background: var(--lambo-gold);
  color: var(--abyss);
  padding: 8px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus-visible {
  top: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-chip::before, .stat-pulse, .live-feed-label::before, .fomo-dot { animation: none; }
}


/* Shared navigation and document boundaries. */
:where(a, button, summary, [tabindex="0"]):focus-visible {
  outline: 2px solid var(--lambo-gold);
  outline-offset: 4px;
}
.header-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.header-nav a { display: inline-flex; align-items: center; min-height: 44px; font-size: 13px; color: var(--steel); }
.header-nav a:hover, .header-nav a[aria-current="page"] { color: var(--lambo-gold); }
main section[id], main[id] { scroll-margin-top: 104px; }
.footer-brand, .footer-col { min-width: 0; }
@media (min-width: 1441px) {
  .header, .hero, .live-feed, .games, .partners, .vip-tiers, .bonus-cta, .faq, .reading-guide, .footer {
    padding-left: calc((100% - var(--max-w)) / 2 + var(--gutter-desktop));
    padding-right: calc((100% - var(--max-w)) / 2 + var(--gutter-desktop));
  }
}
@media (max-width: 1024px) {
  .footer-brand { grid-column: 1 / -1; }
  .ambassador-content { padding: 40px 32px; }
  .ambassador-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ambassador-stat:nth-child(2) { border-right: none; }
  .ambassador-stat:nth-child(-n+2) { border-bottom: 1px solid var(--charcoal); }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header { gap: 12px; }
  .header-logo { max-width: 148px; }
  .header .btn-compact { font-size: 11px; padding: 10px 12px; letter-spacing: 0.6px; }
  .header-right { gap: 8px; flex-shrink: 0; }
  .hero-sub { font-size: 16px; }
  .section-head { margin-bottom: 32px; padding-bottom: 28px; }
  .section-lede, .reading-guide-description { font-size: 15px; }
  .game-card-body { padding: 24px 20px; }
  .ambassador-content { padding: 32px var(--gutter-mobile); }
  .footer { padding-top: 48px; }
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-col:last-child ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; }
}
@media (max-width: 360px) {
  .header-logo { max-width: 120px; }
  .header { gap: 8px; }
  .header .btn-compact { padding-inline: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.hero-sub a, .section-lede a { color: var(--lambo-gold); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.hero-sub a:hover, .section-lede a:hover { color: var(--white); }
