/* ==========================================================================
   Código Promocional 1xBet — Design System
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  /* Brand palette */
  --navy-950: #060a14;
  --navy-900: #0a1226;
  --navy-800: #0f1c38;
  --navy-700: #16294d;
  --navy-600: #1e3766;

  --blue-600: #1354e0;
  --blue-500: #2e7cf6;
  --blue-400: #5fa2ff;
  --blue-100: #e6f0ff;

  --green-600: #0a9d5c;
  --green-500: #17c775;
  --green-400: #4ee39a;
  --green-100: #e3faee;

  --amber-500: #f5a623;
  --red-500: #e5484d;

  --white: #ffffff;
  --ink-900: #0c1424;
  --ink-700: #29334a;
  --slate-600: #4c5972;
  --slate-500: #667289;
  --slate-400: #8998b3;
  --slate-300: #b6c0d4;
  --slate-200: #dde4f0;
  --slate-100: #eef2f9;
  --slate-50: #f6f8fc;

  /* Semantic */
  --bg-page: var(--slate-50);
  --bg-surface: var(--white);
  --bg-surface-alt: var(--slate-100);
  --text-body: var(--ink-700);
  --text-heading: var(--navy-900);
  --text-muted: var(--slate-500);
  --border-soft: var(--slate-200);
  --focus-ring: #0a66ff;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 48%, var(--blue-600) 130%);
  --gradient-cta: linear-gradient(120deg, var(--green-500), var(--green-600));
  --gradient-brand: linear-gradient(120deg, var(--blue-500), var(--green-500));

  /* Typography */
  --font-heading: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --fs-2xl: clamp(1.9rem, 1.5rem + 1.8vw, 2.75rem);
  --fs-3xl: clamp(2.3rem, 1.7rem + 2.8vw, 3.75rem);

  --lh-tight: 1.15;
  --lh-snug: 1.35;
  --lh-normal: 1.6;

  /* Spacing (fluid) */
  --space-2xs: 0.375rem;
  --space-xs: 0.625rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: clamp(2rem, 1.6rem + 1.6vw, 3rem);
  --space-xl: clamp(3rem, 2.2rem + 3vw, 5rem);
  --space-2xl: clamp(4rem, 3rem + 4vw, 7rem);

  /* Layout */
  --container-w: 1240px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(10, 18, 38, 0.06), 0 1px 1px rgba(10, 18, 38, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 18, 38, 0.08), 0 2px 8px rgba(10, 18, 38, 0.05);
  --shadow-lg: 0 24px 48px rgba(8, 15, 32, 0.16), 0 8px 16px rgba(8, 15, 32, 0.08);
  --shadow-glow-green: 0 12px 28px rgba(23, 199, 117, 0.35);

  --transition-fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 260ms cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 76px;
}

/* ==========================================================================
   Reset
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--bg-page);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: var(--lh-tight);
  font-weight: 800;
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-3xl);
}

h2 {
  font-size: var(--fs-2xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--fs-xl);
  letter-spacing: -0.01em;
}

h4 {
  font-size: var(--fs-md);
  font-weight: 700;
}

p {
  text-wrap: pretty;
}

a {
  color: var(--blue-600);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

a:not([class]):hover {
  color: var(--blue-500);
}

ul,
ol {
  padding-left: 1.25em;
}

table {
  border-collapse: collapse;
  width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 1rem;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--narrow {
  max-width: 880px;
}

section {
  padding-block: var(--space-2xl);
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--space-lg);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 0.4em 0.9em;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.section-head p {
  color: var(--text-muted);
  font-size: var(--fs-md);
  margin-top: var(--space-xs);
}

.bg-alt {
  background: var(--bg-surface-alt);
}

.bg-navy {
  background: var(--navy-900);
  color: var(--slate-200);
}

.bg-navy h2,
.bg-navy h3 {
  color: var(--white);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  line-height: 1;
  padding: 1.05em 1.75em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--navy-950);
  box-shadow: var(--shadow-glow-green);
}

.btn-primary:hover {
  color: var(--navy-950);
  box-shadow: 0 16px 34px rgba(23, 199, 117, 0.45);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--slate-300);
  color: var(--text-heading);
}

.btn-outline:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
  background: var(--blue-100);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 1.25em 2.25em;
  font-size: var(--fs-md);
}

.btn-sm {
  padding: 0.7em 1.3em;
  font-size: var(--fs-xs);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border-soft);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  height: 34px;
  width: auto;
}

.brand-tag {
  display: none;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--slate-500);
  border-left: 1.5px solid var(--border-soft);
  padding-left: 0.6rem;
  line-height: 1.2;
}

@media (min-width: 560px) {
  .brand-tag {
    display: block;
  }
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.4vw, 1.5rem);
  list-style: none;
  padding: 0;
}

.main-nav a {
  color: var(--ink-700);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--fs-sm);
  position: relative;
  padding-block: 0.4rem;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--blue-600);
}

.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2.5px;
  background: var(--gradient-brand);
  border-radius: var(--radius-pill);
}

@media (min-width: 1180px) {
  .main-nav {
    display: block;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-soft);
  background: var(--white);
  color: var(--navy-900);
}

@media (min-width: 1180px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: var(--space-lg) var(--container-pad);
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

@media (min-width: 1180px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0.25rem;
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--navy-900);
  text-decoration: none;
  border-bottom: 1px solid var(--border-soft);
}

.mobile-nav .btn {
  margin-top: var(--space-md);
}

body.nav-locked {
  overflow: hidden;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.breadcrumbs {
  padding-block: var(--space-sm);
  font-size: var(--fs-xs);
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--blue-600);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  color: var(--slate-300);
}

.breadcrumbs li[aria-current] {
  color: var(--ink-700);
  font-weight: 600;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: var(--gradient-hero);
  color: var(--white);
  overflow: hidden;
  padding-block: var(--space-2xl) var(--space-xl);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(46, 124, 246, 0.35), transparent 45%), radial-gradient(circle at 85% 80%, rgba(23, 199, 117, 0.3), transparent 45%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(23, 199, 117, 0.16);
  border: 1px solid rgba(78, 227, 154, 0.4);
  color: var(--green-400);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  padding: 0.5em 1em;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.hero .lede {
  font-size: var(--fs-md);
  color: var(--slate-200);
  max-width: 54ch;
  margin-bottom: var(--space-md);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: var(--fs-xs);
  color: var(--slate-300);
}

.hero-trust strong {
  color: var(--white);
  font-family: var(--font-heading);
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1.1rem;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(0deg, rgba(6, 10, 20, 0.85), transparent);
}

/* Promo code chip used inside hero */
.promo-chip {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px dashed rgba(78, 227, 154, 0.55);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
  max-width: 420px;
}

.promo-chip .code {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--green-400);
  letter-spacing: 0.06em;
}

.promo-chip .label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--slate-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.copy-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 0.5em 0.9em;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 700;
  transition: background var(--transition-fast);
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.copy-btn svg {
  width: 15px;
  height: 15px;
}

/* Full-bleed page intro (used on inner pages instead of split hero) */
.page-intro {
  position: relative;
  background: var(--gradient-hero);
  color: var(--white);
  padding-block: var(--space-xl);
}

.page-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(46, 124, 246, 0.3), transparent 50%);
}

.page-intro .container {
  position: relative;
}

.page-intro h1 {
  color: var(--white);
  max-width: 20ch;
}

.page-intro .lede {
  color: var(--slate-200);
  max-width: 60ch;
  font-size: var(--fs-md);
  margin-top: var(--space-sm);
}

.page-intro .breadcrumbs {
  padding-top: 0;
}

.page-intro .breadcrumbs a,
.page-intro .breadcrumbs ol {
  color: rgba(255, 255, 255, 0.65);
}

.page-intro .breadcrumbs li[aria-current] {
  color: var(--white);
}

/* ==========================================================================
   Live activity ticker
   ========================================================================== */

.live-strip {
  background: var(--navy-950);
  color: var(--slate-300);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.live-strip .container {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-block: 0.65rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(23, 199, 117, 0.6);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(23, 199, 117, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(23, 199, 117, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(23, 199, 117, 0);
  }
}

.live-strip-label {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-feed {
  position: relative;
  flex: 1;
  height: 1.4em;
  overflow: hidden;
}

.live-feed li {
  list-style: none;
  position: absolute;
  inset: 0;
  font-size: var(--fs-xs);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.live-feed li.is-active {
  opacity: 1;
  transform: translateY(0);
}

.live-feed strong {
  color: var(--green-400);
}

/* ==========================================================================
   Stats
   ========================================================================== */

.stats-band {
  background: var(--navy-900);
  color: var(--white);
  padding-block: var(--space-lg);
}

.stats-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

@media (min-width: 760px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item .num {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.stat-item .cap {
  font-size: var(--fs-xs);
  color: var(--slate-400);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--slate-200);
}

.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.icon-tile svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: var(--fs-md);
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

/* Step cards */
.steps {
  display: grid;
  gap: var(--space-md);
  counter-reset: step;
}

@media (min-width: 760px) {
  .steps--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .steps--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  padding-top: var(--space-lg);
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: var(--space-md);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-green);
}

.step-card h3 {
  font-size: var(--fs-md);
  margin-bottom: 0.35rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

/* Game cards */
.game-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.game-card .thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
}

.game-card .thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.game-card .meta {
  padding: 0.85rem 0.75rem 1rem;
}

.game-card .meta .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--text-heading);
}

.game-card .meta .provider {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* Review cards */
.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--amber-500);
  letter-spacing: 0.1em;
  font-size: var(--fs-sm);
  margin-bottom: 0.5rem;
}

.review-card p {
  color: var(--text-body);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-xs);
  flex-shrink: 0;
}

.review-author .who {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--text-heading);
}

.review-author .when {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* Pros/cons */
.pros-cons {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 700px) {
  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-cons .block {
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.pros-cons .pros {
  background: var(--green-100);
  border: 1px solid rgba(23, 199, 117, 0.25);
}

.pros-cons .cons {
  background: #fdeeee;
  border: 1px solid rgba(229, 72, 77, 0.22);
}

.pros-cons h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.pros-cons ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pros-cons li {
  display: flex;
  gap: 0.6em;
  font-size: var(--fs-sm);
}

.pros-cons li svg {
  flex-shrink: 0;
  margin-top: 0.2em;
}

.pros .li-icon {
  color: var(--green-600);
}

.cons .li-icon {
  color: var(--red-500);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.data-table {
  min-width: 560px;
  background: var(--bg-surface);
}

.data-table caption {
  text-align: left;
  padding: var(--space-sm) var(--space-md) 0;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 0.9rem 1.1rem;
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--border-soft);
}

.data-table thead th {
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background: var(--bg-surface-alt);
}

.data-table td strong {
  color: var(--text-heading);
}

.tick-yes {
  color: var(--green-600);
  font-weight: 700;
}

.tick-no {
  color: var(--slate-400);
}

/* Badges / pills */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.35em 0.85em;
  border-radius: var(--radius-pill);
  background: var(--slate-100);
  color: var(--slate-600);
}

.badge--green {
  background: var(--green-100);
  color: var(--green-600);
}

.badge--blue {
  background: var(--blue-100);
  color: var(--blue-600);
}

/* Alert / disclaimer box */
.alert {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: #fff8e8;
  border: 1px solid #f2d692;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: var(--fs-sm);
  color: #6b5410;
}

.alert svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--amber-500);
  margin-top: 0.1em;
}

.alert strong {
  color: #4a3c0c;
}

.alert--info {
  background: var(--blue-100);
  border-color: #b9d6ff;
  color: #143b7c;
}

.alert--info svg {
  color: var(--blue-600);
}

/* Definition / summary block for GEO */
.definition {
  background: var(--bg-surface-alt);
  border-left: 4px solid var(--blue-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md) var(--space-md);
}

.definition dt {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
}

.definition dd {
  margin: 0;
  color: var(--text-body);
}

.definition + .definition {
  margin-top: var(--space-sm);
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.15rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--text-heading);
}

.faq-question .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base), background var(--transition-base);
}

.faq-question .plus svg {
  width: 14px;
  height: 14px;
}

.faq-item[data-open="true"] .faq-question .plus {
  transform: rotate(45deg);
  background: var(--green-500);
  color: var(--navy-950);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-base);
}

.faq-item[data-open="true"] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p,
.faq-answer ul {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

/* ==========================================================================
   CTA bands
   ========================================================================== */

.cta-band {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-band .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 40%, rgba(6, 10, 20, 0.78), rgba(6, 10, 20, 0.86) 60%, rgba(6, 10, 20, 0.95));
}

.cta-band .container {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.cta-band h1,
.cta-band h2 {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.cta-band .breadcrumbs a,
.cta-band .breadcrumbs ol {
  color: rgba(255, 255, 255, 0.65);
}

.cta-band .breadcrumbs li[aria-current] {
  color: var(--white);
}

.cta-band p {
  color: var(--slate-200);
  font-size: var(--fs-md);
  margin: var(--space-sm) 0 var(--space-md);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.cta-inline {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  background-image: radial-gradient(circle at 100% 0%, var(--blue-100), transparent 55%), radial-gradient(circle at 0% 100%, var(--green-100), transparent 55%);
}

.cta-inline h2 {
  margin-bottom: var(--space-2xs);
}

.cta-inline p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

/* ==========================================================================
   Split content sections
   ========================================================================== */

.split {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--reverse .split-media {
    order: 2;
  }
}

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
}

.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: var(--space-sm) 0 var(--space-md);
}

.check-list li {
  display: flex;
  gap: 0.6em;
  font-size: var(--fs-sm);
}

.check-list svg {
  color: var(--green-600);
  flex-shrink: 0;
  margin-top: 0.2em;
}

/* Floated figure — for sections pairing a short image with long-form text.
   Stacks full-width on mobile; wraps text around it on wider screens so a
   short image never leaves a large empty gap next to tall copy. */
.figure-float {
  margin: 0 0 var(--space-md);
}

.figure-float img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.figure-float figcaption {
  margin-top: var(--space-2xs);
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

@media (min-width: 700px) {
  .figure-float {
    float: right;
    width: 340px;
    margin: 0 0 var(--space-md) var(--space-lg);
  }
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-950);
  color: var(--slate-400);
  padding-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 30px;
  width: auto;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: var(--fs-sm);
  max-width: 34ch;
  color: var(--slate-400);
}

.footer-col h4 {
  color: var(--white);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: var(--fs-sm);
}

.footer-col a:hover {
  color: var(--green-400);
}

.footer-compliance {
  padding-block: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-compliance-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-sm);
}

.footer-compliance-badges img {
  height: 30px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
}

.age-badge img {
  height: 20px;
  width: auto;
  filter: none;
  opacity: 1;
}

.footer-disclaimer {
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
  color: var(--slate-500);
  padding-block: var(--space-lg);
  max-width: 90ch;
}

.footer-disclaimer + .footer-disclaimer {
  padding-top: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-block: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--fs-xs);
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  gap: var(--space-sm);
  padding: 0;
}

.footer-bottom a {
  color: var(--slate-400);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}

.author-byline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-xs);
  color: var(--slate-500);
}

.author-byline .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.65rem;
}

/* ==========================================================================
   Author box (article pages)
   ========================================================================== */

.author-box {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  background: var(--bg-surface-alt);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.author-box .avatar-lg {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  flex-shrink: 0;
}

.author-box .name {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-heading);
}

.author-box .role {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.meta-line {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-top: 0.4rem;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Table of contents (long guide pages)
   ========================================================================== */

.toc {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.toc h2 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.toc ol {
  list-style: none;
  padding: 0;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toc li {
  counter-increment: toc;
  font-size: var(--fs-sm);
}

.toc li::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--green-600);
  font-family: var(--font-heading);
  font-weight: 800;
  margin-right: 0.6em;
}

.toc a {
  text-decoration: none;
  color: var(--text-body);
  font-weight: 600;
}

.toc a:hover {
  color: var(--blue-600);
}

/* ==========================================================================
   Utility
   ========================================================================== */

.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: var(--space-lg);
}

.max-prose {
  max-width: 72ch;
}

.max-prose p + p {
  margin-top: var(--space-sm);
}

/* ==========================================================================
   Feature rows — compact horizontal list (icon + text), used as a visual
   alternative to .game-card when a section needs a denser, list-like feel.
   ========================================================================== */

.feature-row-grid {
  display: grid;
  gap: var(--space-sm);
}

@media (min-width: 700px) {
  .feature-row-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.feature-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--slate-200);
}

.feature-row .thumb-sm {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.4rem;
}

.feature-row .thumb-sm img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.feature-row .info .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--text-heading);
  display: block;
}

.feature-row .info .desc {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* Column contrast — two lightweight text columns, no card chrome */
.column-contrast {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 760px) {
  .column-contrast {
    grid-template-columns: 1fr 1fr;
  }
  .column-contrast > div:first-child {
    border-right: 1px solid var(--border-soft);
    padding-right: var(--space-lg);
  }
}

.column-contrast h3 {
  font-size: var(--fs-lg);
  margin-bottom: 0.5rem;
}

.column-contrast p {
  color: var(--text-muted);
}

/* Lead paragraph with inline highlighted terms — a boxless alternative
   to .definition, used where a section should read as flowing text. */
.lede-block {
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  color: var(--text-body);
}

.lede-block mark {
  background: var(--green-100);
  color: var(--green-600);
  padding: 0.05em 0.4em;
  border-radius: 5px;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Small logo chip inside a table cell */
.table-cell-media {
  display: flex;
  align-items: center;
  gap: 0.65em;
}

.table-cell-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--navy-950);
  border-radius: 7px;
  padding: 3px;
}

/* Matchup — two large logos face off, used for esports comparisons */
.matchup {
  display: grid;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 760px) {
  .matchup {
    grid-template-columns: 1fr auto 1fr;
  }
}

.matchup-side {
  text-align: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.matchup-side:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.matchup-side .logo-frame {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.matchup-side img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
  margin-inline: auto;
}

.matchup-side h3 {
  font-size: var(--fs-md);
  margin-bottom: 0.5rem;
}

.matchup-facts {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.matchup-facts li {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  display: flex;
  gap: 0.5em;
}

.matchup-facts svg {
  color: var(--green-600);
  flex-shrink: 0;
  margin-top: 0.15em;
}

.matchup-vs {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-2xl);
  color: var(--slate-300);
  text-align: center;
}

/* Spotlight cards — dark, image-forward feature cards for slots */
.spotlight-card {
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  color: var(--white);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.spotlight-card .logo-frame {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.spotlight-card img {
  max-width: 75%;
  max-height: 100%;
  object-fit: contain;
  margin-inline: auto;
}

.spotlight-card .badges {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0.6rem 0;
}

.spotlight-card .badge-pill {
  font-size: var(--fs-xs);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--slate-200);
  padding: 0.3em 0.8em;
  border-radius: var(--radius-pill);
}

.spotlight-card p {
  color: var(--slate-300);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}

.spotlight-card .spotlight-link {
  color: var(--green-400);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  transition: gap var(--transition-fast);
}

.spotlight-card .spotlight-link:hover {
  gap: 0.55em;
  color: var(--green-400);
}

.prose p {
  margin-bottom: var(--space-sm);
}

.prose h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.prose h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.prose ul,
.prose ol {
  margin-bottom: var(--space-sm);
  color: var(--text-body);
}

.prose li {
  margin-bottom: 0.4rem;
}
