/* === COLOR VARIABLES (set from config.json via JS) === */
:root {
  --color-brand: #ff5a00;
  --color-dark: #090909;
  --color-light: #fff7f1;
  --color-card: #17110e;
  --color-border: #4a2a1a;
  --color-muted: #c9b7ad;
  --color-secondary: #2b1710;
}

/* === VOX CASINO BRAND LAYER === */
.header {
  background: rgba(9, 9, 9, .92);
  border-bottom-color: rgba(255, 90, 0, .22);
}

.header-logo img { height: 36px; }

.hero-home {
  background:
    radial-gradient(circle at 77% 24%, rgba(255, 90, 0, .16), transparent 30%),
    linear-gradient(135deg, #050505 0%, #17100d 55%, #0b0908 100%);
}

.hero-home::before {
  background:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-home .hero-content {
  background: linear-gradient(145deg, rgba(21, 17, 15, .98), rgba(8, 8, 8, .98));
  border-color: rgba(255, 90, 0, .35);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .62), inset 0 1px 0 rgba(255,255,255,.04);
}

.hero-home .hero-bonus {
  background: linear-gradient(145deg, rgba(255, 90, 0, .16), rgba(255, 153, 0, .04));
  border-color: rgba(255, 90, 0, .3);
}

.btn-primary,
.section-cta a {
  color: #160b05;
  background: linear-gradient(135deg, #ff7a00, #ff4d00);
  box-shadow: 0 12px 30px rgba(255, 90, 0, .22);
}

.lobby-preview { background: #0d0b0a; }
.lobby-copy { max-width: 760px; margin: -4px auto 28px; text-align: center; }
.lobby-heading h2 { font-size: clamp(24px, 3vw, 36px); text-align: center; }
.lobby-heading span { background: linear-gradient(90deg, transparent, rgba(255, 90, 0, .55)); }
.lobby-heading span:last-child { background: linear-gradient(90deg, rgba(255, 90, 0, .55), transparent); }

.provider-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0;
}

.provider-cloud span {
  padding: 12px 18px;
  color: #fff7f1;
  background: linear-gradient(145deg, #211713, #120e0c);
  border: 1px solid rgba(255, 90, 0, .28);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 34px;
}

.brand-logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 82px;
  padding: 18px 20px;
  background: linear-gradient(145deg, #fffaf6, #ede6e0);
  border: 1px solid rgba(255, 90, 0, .3);
  border-radius: 16px 5px 16px 5px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.brand-logo-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 0, .72);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .24);
}

.brand-logo-tile img {
  display: block;
  width: 100%;
  max-width: 132px;
  height: 45px;
  object-fit: contain;
}

.payment-logo-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.payment-logo-grid .brand-logo-tile { height: 76px; padding: 15px; }
.payment-logo-grid .brand-logo-tile img { max-width: 104px; height: 40px; }
.payment-logo-grid .crypto-logo img { width: 42px; height: 42px; }

.promo-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0 8px;
}

.promo-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  background: linear-gradient(150deg, rgba(40, 24, 16, .96), rgba(14, 12, 11, .98));
  border: 1px solid rgba(255, 90, 0, .28);
  border-radius: 20px 6px 20px 6px;
}

.promo-feature-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 140px;
  height: 140px;
  border: 20px solid rgba(255, 90, 0, .065);
  border-radius: 50%;
}

.promo-feature-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  background: linear-gradient(135deg, rgba(81, 35, 13, .94), rgba(19, 14, 11, .98));
}

.promo-feature-card-wide .promo-tag { grid-column: 1 / -1; }
.promo-feature-card h3 { margin: 18px 0 10px; font-size: 21px; line-height: 1.25; }
.promo-feature-card p { position: relative; z-index: 1; color: var(--color-muted); font-size: 14px; line-height: 1.7; }
.promo-feature-card > strong { position: relative; z-index: 1; max-width: 230px; color: var(--color-brand); font-size: 28px; line-height: 1.12; text-align: right; }
.promo-tag { position: relative; z-index: 1; width: fit-content; padding: 6px 10px; color: #1b0d05; background: var(--color-brand); border-radius: 999px; font-size: 11px; font-weight: 900; letter-spacing: .1em; }

.review-topic { display: inline-flex; padding: 5px 9px; color: #1b0d05; background: var(--color-brand); border-radius: 999px; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.review-card h3 { margin: 18px 0 12px; font-size: 20px; }
.review-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin: 0 0 24px; overflow: hidden; background: rgba(255,90,0,.3); border: 1px solid rgba(255,90,0,.3); border-radius: 16px; }
.review-summary > div { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 112px; padding: 18px; background: #12100f; text-align: center; }
.review-summary strong { color: var(--color-light); font-size: clamp(28px, 3vw, 40px); line-height: 1; }
.review-summary strong span { color: var(--color-muted); font-size: .5em; }
.review-summary-label { margin-top: 8px; color: var(--color-muted); font-size: 13px; }
.review-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.review-card-head time { color: var(--color-muted); font-size: 12px; }
.review-rating { display: inline-flex; padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 900; }
.review-rating-positive { color: #092b1a; background: #58d68d; }
.review-rating-neutral { color: #2d2100; background: #f5c451; }
.review-author small { display: block; margin-top: 3px; color: var(--color-muted); font-size: 11px; }
.review-verdict { margin-top: 24px; padding: 26px 28px; background: linear-gradient(135deg, rgba(255,90,0,.13), rgba(255,90,0,.035)); border: 1px solid rgba(255,90,0,.3); border-radius: 16px; }
.review-verdict h3 { margin: 0 0 10px; color: var(--color-light); font-size: 22px; }
.review-verdict p { max-width: 1050px; color: var(--color-muted); line-height: 1.7; }
.review-verdict a { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; color: var(--color-brand); font-weight: 800; }
.review-source-note { margin: 18px 0 0; color: var(--color-muted); font-size: 12px; line-height: 1.6; }

@media (max-width: 980px) {
  .brand-logo-grid, .payment-logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .promo-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .brand-logo-grid, .payment-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-logo-tile { height: 70px; padding: 14px; }
  .promo-feature-grid { grid-template-columns: 1fr; }
  .promo-feature-card-wide { grid-column: auto; display: block; }
  .promo-feature-card-wide > strong { display: block; max-width: none; margin-top: 22px; text-align: left; }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.category-grid article {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 26px 20px;
  background: linear-gradient(160deg, #1b1411, #0c0b0a);
  border: 1px solid #4a2a1a;
  border-radius: 18px 6px 18px 6px;
}

.category-grid article::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 110px;
  height: 110px;
  border: 18px solid rgba(255, 90, 0, .07);
  border-radius: 50%;
}

.category-grid article > span { color: #ff5a00; font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.category-grid h3 { margin: 28px 0 12px; font-size: 19px; line-height: 1.25; }
.category-grid p { color: #c9b7ad; font-size: 14px; line-height: 1.7; }

.numbered-list { margin: 12px 0 28px 22px; color: var(--color-muted); }
.numbered-list li { margin: 8px 0; padding-left: 6px; }
.rating-summary { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 12px 0 30px; }
.rating-summary > strong { color: #ff5a00; font-size: 56px; line-height: 1; }
.rating-summary div { display: grid; gap: 3px; }
.rating-summary span { color: #ff8a00; letter-spacing: .12em; }
.rating-summary small, .last-updated { color: var(--color-muted); }
.last-updated { margin-top: 26px; text-align: center; font-size: 13px; }

@media (max-width: 980px) {
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .category-grid { grid-template-columns: 1fr; }
  .category-grid article { min-height: auto; }
  .provider-cloud { justify-content: flex-start; }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--color-dark);
  color: var(--color-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.content-paragraphs a,
.faq-answer a,
.section-subtitle a,
.cta-subtitle a {
  color: var(--color-brand);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.content-paragraphs a:hover,
.faq-answer a:hover,
.section-subtitle a:hover,
.cta-subtitle a:hover {
  border-bottom-color: currentColor;
}

img {
  max-width: 100%;
  height: auto;
}

/* === UTILITY === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.text-brand {
  color: var(--color-brand);
}

.bg-brand {
  background-color: var(--color-brand);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--color-brand);
  color: var(--color-light);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-light);
  border: 1px solid var(--color-border);
}
.btn-outline:hover {
  background: var(--color-secondary);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: rgba(7, 11, 24, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  isolation: isolate;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo img, .header-logo svg {
  height: 42px;
  width: auto;
}

.header-nav {
  display: none;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav a {
  font-size: 14px;
  color: var(--color-muted);
  transition: color 0.2s;
}
.header-nav a:hover {
  color: var(--color-light);
}

.header-actions {
  display: none;
  gap: 8px;
}

.mobile-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--color-light);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  width: 100vw;
  min-height: calc(100svh - 64px);
  background: #090909;
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 140;
  overflow-y: auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu li {
  width: 100%;
}

.mobile-menu a {
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 8px;
}

.mobile-menu-action a {
  border-bottom: 0;
}

@media (min-width: 768px) {
  .header-nav {
    display: block;
  }
  .header-actions {
    display: flex;
  }
  .mobile-toggle {
    display: none;
  }
}

/* === HERO === */
.hero {
  min-height: 70svh;
  display: flex;
  align-items: center;
  padding: 104px 0 32px;
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.hero-bonus {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.hero-bonus-percent {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-brand);
  line-height: 1;
}

.hero-bonus-label {
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
  color: var(--color-light);
}

.hero-bonus-desc {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 8px;
}

.hero .btn-primary {
  padding: 16px;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-actions .btn {
  flex: 1 1 220px;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy p {
  margin-bottom: 14px;
}

.hero-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 15, 20, 0.06) 0%, rgba(13, 15, 20, 0.14) 100%);
  pointer-events: none;
}

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

.hero-panel {
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(circle at top left, rgba(255, 90, 0, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(47, 37, 50, 0.98), rgba(23, 19, 26, 0.98));
}

.hero-panel-inner {
  width: 100%;
  padding: 28px;
  display: grid;
  gap: 20px;
  align-content: center;
}

.hero-panel-logo {
  width: min(100%, 340px);
  height: auto;
  object-fit: contain;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hero-panel-card {
  border: 1px solid rgba(255, 90, 0, 0.18);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-panel-label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel-card strong {
  display: block;
  color: var(--color-light);
  font-size: 14px;
  line-height: 1.5;
}

.hero-disclaimer {
  font-size: 11px;
  color: var(--color-muted);
}

@media (max-width: 767px) {
  .header {
    background: #0d0f14;
    backdrop-filter: none;
  }

  .hero {
    padding: 96px 0 28px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero h1 {
    margin-bottom: 20px;
  }

  .hero-bonus {
    text-align: center;
    padding: 22px 18px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .hero-copy {
    max-width: 100%;
    text-align: left;
  }

  .page-kicker {
    margin-left: auto;
    margin-right: auto;
  }

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

  .header-logo img, .header-logo svg {
    height: 34px;
  }
}

/* VOX final cascade overrides */
.header { background: rgba(9, 9, 9, .92); border-bottom-color: rgba(255, 90, 0, .22); }
.header-logo img { height: 36px; }
.hero-home { background: radial-gradient(circle at 77% 24%, rgba(255, 90, 0, .16), transparent 30%), linear-gradient(135deg, #050505 0%, #17100d 55%, #0b0908 100%); }
.hero-home::before { background: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 42px 42px; }
.hero-home .hero-content { background: linear-gradient(145deg, rgba(21,17,15,.98), rgba(8,8,8,.98)); border-color: rgba(255,90,0,.35); box-shadow: 0 22px 70px rgba(0,0,0,.62), inset 0 1px 0 rgba(255,255,255,.04); }
.hero-home .hero-bonus { background: linear-gradient(145deg, rgba(255,90,0,.16), rgba(255,153,0,.04)); border-color: rgba(255,90,0,.3); }
.btn-primary, .section-cta a { color: #160b05; background: linear-gradient(135deg, #ff7a00, #ff4d00); }
.lobby-preview { background: #0d0b0a; }
.lobby-copy { max-width: 760px; margin: -4px auto 28px; text-align: center; }
.lobby-heading h2 { color: var(--color-light); font-size: clamp(24px, 3vw, 36px); line-height: 1.2; text-align: center; }

.page-hero {
  min-height: auto;
  padding: 128px 16px 48px;
  text-align: left;
}

.page-hero .hero-content {
  max-width: 760px;
}

.page-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero-copy {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.step-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
}

.step-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-brand);
  color: var(--color-light);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-card p,
.step-card li {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.step-card ul {
  padding-left: 18px;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(30, 32, 41, 0.95), rgba(24, 26, 34, 0.95));
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
}

.support-cards + .highlight-box,
.table-scroll + .highlight-box,
.terms-table-toggle + .highlight-box,
.content-features + .section-cta,
.content-paragraphs + .section-cta,
.account-aftercare + .section-cta,
.live-on-go-card + .section-cta,
.faq-list + .section-cta {
  margin-top: 28px;
}

.highlight-box + .section-cta {
  margin-top: 30px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.section-cta a {
  position: relative;
  display: inline-flex;
  min-width: 230px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  color: #1c161b;
  background: var(--color-brand);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(255, 90, 0, .16);
  font-size: 14px;
  font-weight: 800;
  isolation: isolate;
  animation: sectionCtaGlow 2.8s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease;
}

.section-cta a::before {
  content: "";
  position: absolute;
  top: -70%;
  bottom: -70%;
  left: -55%;
  z-index: -1;
  width: 28%;
  background: rgba(255, 255, 255, .24);
  transform: skewX(-20deg);
  animation: sectionCtaSheen 3.8s ease-in-out infinite;
}

.section-cta a span {
  font-size: 19px;
  line-height: 1;
  animation: sectionCtaArrow 1.5s ease-in-out infinite;
}

.section-cta a:hover,
.section-cta a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(255, 90, 0, .27);
}

@keyframes sectionCtaGlow {
  0%, 100% { box-shadow: 0 10px 28px rgba(255, 90, 0, .14); }
  50% { box-shadow: 0 12px 34px rgba(255, 90, 0, .3); }
}

@keyframes sectionCtaSheen {
  0%, 55% { left: -55%; }
  80%, 100% { left: 130%; }
}

@keyframes sectionCtaArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .section-cta a,
  .section-cta a::before,
  .section-cta a span {
    animation: none;
  }
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 36px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-bonus-percent {
    font-size: 64px;
  }
  .hero-panel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === HOME HERO: COMPACT DESKTOP OFFER === */
.hero-home {
  position: relative;
  min-height: auto;
  padding: 102px 0 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #090909 0%, #101b38 52%, #091126 100%);
  isolation: isolate;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 90, 0, .2), transparent 34%),
    radial-gradient(circle at 28% 64%, rgba(34, 211, 238, .1), transparent 30%);
}

.hero-home .hero-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.hero-home .hero-content {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(410px, 1.1fr);
  grid-template-areas:
    "kicker kicker"
    "title bonus"
    "actions bonus"
    "disclaimer bonus";
  column-gap: clamp(30px, 4vw, 64px);
  row-gap: 12px;
  align-items: center;
  width: min(100%, 1120px);
  max-width: none;
  padding: 26px clamp(26px, 4vw, 46px);
  text-align: left;
  background: rgba(13, 19, 40, .94);
  border: 1px solid rgba(255, 90, 0, .34);
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, .4);
}

.hero-home .page-kicker {
  grid-area: kicker;
  margin: 0 0 2px;
  justify-self: start;
}

.hero-home h1 {
  grid-area: title;
  margin: 2px 0 4px;
  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 1;
}

.hero-home .hero-bonus {
  grid-area: bonus;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 24px 28px;
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 90, 0, .13), rgba(34, 211, 238, .045));
  border: 1px solid rgba(255, 90, 0, .28);
  border-radius: 18px 6px 18px 6px;
}

.hero-home .hero-bonus-label {
  margin: 0 0 7px;
  color: var(--color-light);
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 500;
}

.hero-home .hero-bonus-percent {
  color: var(--color-brand);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
}

.hero-home .hero-bonus-desc {
  margin-top: 11px;
  color: #d8ced3;
  font-size: 14px;
}

.hero-home .hero-actions {
  grid-area: actions;
  justify-content: flex-start;
  margin: 4px 0 0;
}

.hero-home .hero-actions .btn {
  flex: 0 1 auto;
  min-width: 220px;
}

.hero-home .hero-disclaimer {
  grid-area: disclaimer;
  color: #c5bac0;
  text-align: left;
}

@media (max-width: 767px) {
  .hero-home {
    min-height: 590px;
    padding: 100px 0 34px;
  }

  .hero-home .hero-layout {
    min-height: 450px;
  }

  .hero-home .hero-content {
    display: block;
    padding: 30px 18px;
    border-radius: 16px;
    text-align: center;
  }

  .hero-home .page-kicker {
    margin: 0 auto 18px;
  }

  .hero-home .hero-bonus {
    display: block;
    padding: 0;
    background: none;
    border: 0;
  }

  .hero-home .hero-actions {
    justify-content: center;
    margin: 26px 0 14px;
  }

  .hero-home .hero-disclaimer {
    text-align: center;
  }
}

/* === FINAL VOX LAYOUT POLISH === */
body { background: #09090b; }

.section,
#games,
#providers,
#bonus,
#safety,
#support,
#faq {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section-alt { background: #101014; }
.section-header { margin-bottom: 28px; }
.section-title { color: #fff8f3; letter-spacing: -.025em; }
.section-subtitle { margin-bottom: 0; color: #bfaea5; line-height: 1.65; }

.section-cta { margin-top: 28px; }
.section-cta a {
  min-width: 0;
  padding: 14px 24px;
  color: #180b03;
  background: linear-gradient(135deg, #ff8a1f, #ff5a00 66%);
  border: 1px solid rgba(255, 174, 111, .42);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(255, 90, 0, .2);
  animation: none;
}
.section-cta a::before { display: none; }
.section-cta a:hover,
.section-cta a:focus-visible { box-shadow: 0 14px 32px rgba(255, 90, 0, .3); }

.brand-logo-grid { gap: 12px; margin: 28px 0; }
.brand-logo-tile {
  height: 78px;
  padding: 16px 18px;
  background: linear-gradient(145deg, #1b1512, #100e0d);
  border-color: rgba(255, 90, 0, .32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), 0 10px 22px rgba(0, 0, 0, .18);
}
.brand-logo-tile:hover { background: #211711; border-color: rgba(255, 90, 0, .7); }
.brand-logo-tile img { max-width: 126px; height: 42px; }
.provider-logo-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.payment-logo-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.payment-logo-grid .brand-logo-tile { height: 72px; }

.context-game-showcase {
  margin: 28px 0;
  padding: 26px;
  background: linear-gradient(145deg, rgba(15, 16, 16, .98), rgba(9, 12, 12, .98));
  border-color: rgba(255, 90, 0, .3);
  border-radius: 18px 6px 18px 6px;
}
.context-game-showcase .lobby-heading { margin-bottom: 22px; }
.lobby-grid-context { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.lobby-grid-context .lobby-game strong { font-size: 14px; }
.lobby-game > div { background: #080909; border-color: rgba(255, 90, 0, .24); }
.lobby-game img { object-fit: cover; }

.promo-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 30px; }
.promo-feature-card {
  min-height: 225px;
  padding: 24px;
  color: inherit;
  background: linear-gradient(150deg, #25170f, #120f0d);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.promo-feature-card-wide { grid-column: span 2; min-height: 210px; }
.promo-feature-card:hover,
.promo-feature-card:focus-visible {
  color: inherit;
  background: linear-gradient(150deg, #321d10, #17110e);
  border-color: rgba(255, 112, 24, .78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32), 0 0 0 1px rgba(255, 90, 0, .12);
  transform: translateY(-4px);
  outline: none;
}
.promo-feature-card:focus-visible { box-shadow: 0 0 0 3px rgba(255, 90, 0, .32), 0 18px 42px rgba(0, 0, 0, .32); }
.promo-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #ff6a0a;
  background: rgba(255, 90, 0, .1);
  border: 1px solid rgba(255, 90, 0, .28);
  border-radius: 16px 5px 16px 5px;
}
.promo-icon img { width: 29px; height: 29px; filter: invert(47%) sepia(99%) saturate(3704%) hue-rotate(358deg) brightness(102%) contrast(106%); }
.promo-feature-card h3 { max-width: calc(100% - 62px); }
.promo-feature-card-wide h3 { max-width: none; }
.promo-card-action {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 20px;
  color: #ff7617;
  font-size: 13px;
  font-weight: 850;
}
.promo-card-action b { transition: transform .2s ease; }
.promo-feature-card:hover .promo-card-action b,
.promo-feature-card:focus-visible .promo-card-action b { transform: translateX(4px); }
.promo-feature-grid + .section-cta { margin-bottom: 32px; }
.section-cta + .table-scroll { margin-top: 32px; }

.table-scroll { border: 1px solid rgba(255, 90, 0, .28); border-radius: 14px; }
.info-table { border: 0; }
#login .steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.cta-section { padding: 64px 16px; background: #080808; border-top: 1px solid rgba(255, 90, 0, .2); }
.cta-content { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-section h2 { max-width: 900px; margin-bottom: 0; color: #fff8f3; }
.cta-subtitle { margin-bottom: 10px; }
.cta-content .btn { min-width: 310px; }
.cta-content small { display: block; color: #a9968c; font-size: 12px; }
.last-updated { margin: 24px 0 0; }

@media (max-width: 980px) {
  .provider-logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .payment-logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  #login .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .review-summary > div { min-height: 92px; padding: 14px 10px; }
  .review-card-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .review-verdict { padding: 22px 20px; }
}

@media (max-width: 900px) {
  .lobby-grid-context { display: flex; }
}

@media (max-width: 620px) {
  .section,
  #games,
  #providers,
  #bonus,
  #safety,
  #support,
  #faq { padding-top: 42px; padding-bottom: 42px; }
  .provider-logo-grid,
  .payment-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-logo-tile { height: 68px; padding: 13px; }
  .promo-feature-grid { grid-template-columns: 1fr; }
  .promo-feature-card-wide { grid-column: auto; }
  .promo-icon { top: 18px; right: 18px; width: 48px; height: 48px; }
  #login .steps-grid { grid-template-columns: 1fr; }
  .context-game-showcase { padding: 20px 14px; }
  .cta-content .btn { width: 100%; min-width: 0; }
}

/* === VOX FINAL CASCADE === */
.header { background: rgba(9, 9, 9, .92); border-bottom-color: rgba(255, 90, 0, .22); }
.header-logo img { height: 36px; }
.hero-home { background: radial-gradient(circle at 77% 24%, rgba(255, 90, 0, .16), transparent 30%), linear-gradient(135deg, #050505 0%, #17100d 55%, #0b0908 100%); }
.hero-home::before { background: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 42px 42px; }
.hero-home .hero-content { background: linear-gradient(145deg, rgba(21,17,15,.98), rgba(8,8,8,.98)); border-color: rgba(255,90,0,.35); box-shadow: 0 22px 70px rgba(0,0,0,.62), inset 0 1px 0 rgba(255,255,255,.04); }
.hero-home .hero-bonus { background: linear-gradient(145deg, rgba(255,90,0,.16), rgba(255,153,0,.04)); border-color: rgba(255,90,0,.3); }
.btn-primary, .section-cta a { color: #160b05; background: linear-gradient(135deg, #ff7a00, #ff4d00); }
.lobby-preview { background: #0d0b0a; }
.lobby-copy { max-width: 760px; margin: -4px auto 28px; text-align: center; }
.lobby-heading h2 { color: var(--color-light); font-size: clamp(24px, 3vw, 36px); line-height: 1.2; text-align: center; }

/* === SECTION === */
.section {
  padding: 10px 0;
}

/* === COLLAPSIBLE TABLE OF CONTENTS === */
.lobby-preview {
  padding: 28px 0 46px;
  background: #100d13;
  border-bottom: 1px solid var(--color-border);
}

.lobby-row + .lobby-row {
  margin-top: 52px;
}

.lobby-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
}

.lobby-heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, .5));
}

.lobby-heading span:last-child {
  background: linear-gradient(90deg, rgba(255, 90, 0, .5), transparent);
}

.lobby-heading h3 {
  color: var(--color-light);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.lobby-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.lobby-grid-live {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.lobby-game {
  min-width: 0;
}

.lobby-game > div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 200 / 267;
  margin-bottom: 12px;
  background: #081012;
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.lobby-game img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .28s ease, opacity .28s ease;
}

.lobby-game > div > span {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 10px 16px;
  color: #1d171c;
  background: var(--color-brand);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -40%);
  transition: opacity .2s ease, transform .2s ease;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.lobby-game:hover img,
.lobby-game:focus-visible img {
  opacity: .48;
}

.lobby-game:hover > div > span,
.lobby-game:focus-visible > div > span {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.lobby-game strong,
.lobby-game small {
  display: block;
}

.lobby-game strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.7em;
  color: var(--color-light);
  font-size: 14px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lobby-game small {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 11px;
}

.lobby-action {
  margin-top: 36px;
  text-align: center;
}

.context-game-showcase {
  margin: 36px 0;
  padding: 28px;
  background: rgba(8, 16, 18, .58);
  border: 1px solid var(--color-border);
  border-radius: 22px 7px 22px 7px;
}

.lobby-grid-context {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 13px;
}

.lobby-grid-context .lobby-game strong {
  font-size: 12px;
}

@media (max-width: 900px) {
  .lobby-grid,
  .lobby-grid-live,
  .lobby-grid-context {
    display: flex;
    gap: 14px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .lobby-game {
    flex: 0 0 210px;
    scroll-snap-align: start;
  }
}

@media (max-width: 560px) {
  .lobby-preview {
    padding: 42px 0 36px;
  }

  .lobby-row + .lobby-row {
    margin-top: 38px;
  }

  .lobby-heading {
    gap: 13px;
  }

  .lobby-heading h3 {
    font-size: 16px;
  }

  .lobby-game {
    flex-basis: 168px;
  }

  .context-game-showcase {
    margin: 28px 0;
    padding: 20px 14px;
  }
}

.toc-section {
  padding-top: 20px;
  padding-bottom: 24px;
}

.toc {
  overflow: hidden;
  background: rgba(35, 28, 37, 0.72);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-brand);
  border-radius: 12px;
}

.toc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: var(--color-light);
  font-size: 18px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.toc summary::after {
  content: "+";
  color: var(--color-brand);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.toc[open] summary {
  border-bottom: 1px solid var(--color-border);
}

.toc[open] summary::after {
  content: "−";
}

.toc-hint {
  margin-left: auto;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
}

.toc-nav {
  padding: 16px 24px 20px;
}

.toc-nav ol {
  margin: 0;
  padding-left: 26px;
}

.toc-nav > ol {
  columns: 2;
  column-gap: 48px;
}

.toc-nav li {
  margin: 7px 0;
  break-inside: avoid;
  color: var(--color-muted);
}

.toc-nav li::marker {
  color: var(--color-brand);
  font-variant-numeric: tabular-nums;
}

.toc-nav ol ol {
  font-size: 14px;
}

.toc-nav a {
  color: var(--color-light);
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.toc-nav a:hover,
.toc-nav a:focus-visible {
  color: var(--color-brand);
  border-bottom-color: currentColor;
}

section[id],
h2[id],
h3[id] {
  scroll-margin-top: 88px;
}

@media (max-width: 700px) {
  .toc-nav > ol {
    columns: 1;
  }

  .toc-hint {
    display: none;
  }

  .toc summary,
  .toc-nav {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.section-alt {
  background: rgba(30,32,41,0.3);
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--color-muted);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section {
    padding: 10px 0;
  }
  .section-title {
    font-size: 36px;
  }
}

.subsection-title {
  font-size: 22px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--color-light);
}

@media (min-width: 768px) {
  .subsection-title {
    font-size: 26px;
  }
}

/* === GAMES === */
.games-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-muted);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--color-brand);
  color: var(--color-light);
  border-color: var(--color-brand);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.game-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.game-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-card));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.game-thumb svg {
  width: 40px;
  height: 40px;
  color: var(--color-brand);
  opacity: 0.5;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  filter: brightness(0.7) contrast(1.05) saturate(0.9);
}

.game-thumb.has-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 15, 22, 0.18) 0%, rgba(9, 15, 22, 0.42) 60%, rgba(9, 15, 22, 0.62) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 34%);
  pointer-events: none;
}

.game-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-hot {
  background: #ef4444;
  color: white;
}
.badge-new {
  background: #22c55e;
  color: white;
}

.game-info {
  padding: 12px;
}
.game-name {
  font-size: 14px;
  font-weight: 600;
}
.game-category {
  font-size: 12px;
  color: var(--color-muted);
  text-transform: capitalize;
}

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

/* === BRAND INFO === */
.brand-intro {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
}

.info-table tr:nth-child(even) {
  background: rgba(30,32,41,0.5);
}

.info-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border);
}

.info-table td:first-child {
  border-left: 3px solid var(--color-brand);
  font-weight: 600;
  color: var(--color-light);
  white-space: nowrap;
  width: 200px;
}

.info-table td:last-child {
  color: var(--color-muted);
}

@media (max-width: 640px) {
  .info-table td:first-child {
    width: auto;
    white-space: normal;
  }
  .info-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* === PROS CONS === */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pros-list, .cons-list {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
}

.pros-cons-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-cons-title .icon-check {
  color: #22c55e;
}
.pros-cons-title .icon-x {
  color: #ef4444;
}

.pros-list ul, .cons-list ul {
  list-style: none;
}

.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--color-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pros-list li:last-child, .cons-list li:last-child {
  border-bottom: none;
}

.pros-cons + .content-paragraphs {
  margin-top: 32px;
}

.li-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

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

/* === PROMOTIONS === */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.promo-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s;
}
.promo-card:hover {
  transform: translateY(-2px);
}

.promo-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 90, 0, 0.15);
  color: var(--color-brand);
  margin-bottom: 12px;
}

.promo-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-desc {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 16px;
}

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

/* === CONTENT === */
.content-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}

.content-feature-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
}

.content-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.content-feature-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

.content-paragraphs p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

/* === FAQ === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  background: none;
  border: none;
  color: var(--color-light);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 16px;
}

.faq-question h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.faq-question:hover {
  color: var(--color-brand);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
  color: var(--color-muted);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 16px;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.review-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.review-quote {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--color-brand);
  opacity: 0.2;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-brand);
  color: var(--color-brand);
}

.review-text {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-light);
}

.review-name {
  font-size: 14px;
  font-weight: 600;
}

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

/* === CTA === */
.cta-section {
  text-align: center;
  padding: 48px 16px;
}

.cta-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 90, 0, 0.15);
  color: var(--color-brand);
  margin-bottom: 16px;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-subtitle {
  color: var(--color-muted);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto 24px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}

.footer-links-group h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links-group a {
  display: block;
  font-size: 13px;
  color: var(--color-muted);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links-group a:hover {
  color: var(--color-light);
}

.footer-payment {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.footer-payment h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-icon {
  width: 48px;
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.payment-icon svg {
  width: 100%;
  height: 100%;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--color-muted);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* === MOBILE AND BROWSER SHOWCASE === */
#app {
  padding: 72px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 90, 0, .1), transparent 30%),
    radial-gradient(circle at 14% 82%, rgba(101, 61, 92, .14), transparent 32%);
}

.mobile-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  gap: clamp(44px, 7vw, 88px);
  align-items: center;
}

.section-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mobile-story-copy .section-title {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.mobile-lead {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--color-light);
  font-size: 19px;
  line-height: 1.55;
}

.mobile-feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.mobile-feature-list > div {
  padding: 15px 14px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.mobile-feature-list strong,
.mobile-feature-list span {
  display: block;
}

.mobile-feature-list strong {
  margin-bottom: 4px;
  color: var(--color-light);
  font-size: 13px;
}

.mobile-feature-list span {
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.4;
}

.device-stage {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(255, 90, 0, .16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 55% 35%, rgba(255, 90, 0, .16), transparent 38%),
    linear-gradient(145deg, rgba(47, 37, 50, .72), rgba(18, 14, 21, .92));
  box-shadow: inset 0 1px rgba(255, 255, 255, .04), 0 30px 80px rgba(0, 0, 0, .28);
}

.browser-device {
  position: absolute;
  top: 66px;
  left: 28px;
  width: 82%;
  overflow: hidden;
  background: #100d13;
  border: 1px solid #51434f;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
  transform: perspective(900px) rotateY(3deg);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 10px;
  background: #2b242d;
}

.browser-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #756773;
}

.browser-bar > span:first-child {
  background: var(--color-brand);
}

.browser-address {
  flex: 1;
  margin-left: 7px;
  padding: 4px 10px;
  color: #a99ca4;
  background: #1d181f;
  border-radius: 5px;
  font-size: 9px;
}

.browser-screen {
  min-height: 250px;
  padding: 22px;
  background: radial-gradient(circle at top, #3a2937, #120f14 68%);
}

.browser-brand img {
  width: 128px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.browser-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 17px;
}

.browser-games img {
  width: 100%;
  aspect-ratio: .88;
  object-fit: contain;
  background: #081012;
  border: 1px solid rgba(255, 90, 0, .2);
  border-radius: 8px;
}

.phone-device {
  position: absolute;
  right: 22px;
  bottom: 25px;
  width: 174px;
  padding: 9px;
  background: #09080a;
  border: 1px solid #655764;
  border-radius: 27px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, .68);
  transform: rotate(3deg);
}

.phone-speaker {
  width: 42px;
  height: 4px;
  margin: 1px auto 8px;
  background: #3d343d;
  border-radius: 999px;
}

.phone-screen {
  overflow: hidden;
  min-height: 298px;
  background: #171219;
  border-radius: 19px;
}

.phone-screen > img {
  width: 100%;
  height: 185px;
  object-fit: contain;
  background: #081012;
}

.phone-game-info {
  padding: 12px;
}

.phone-game-info span,
.phone-game-info strong,
.phone-game-info small {
  display: block;
}

.phone-game-info span {
  margin-bottom: 5px;
  color: #ff7070;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.phone-game-info strong {
  color: var(--color-light);
  font-size: 13px;
  line-height: 1.25;
}

.phone-game-info small {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 9px;
}

.device-chip {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  color: #1b1519;
  background: var(--color-brand);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .34);
  font-size: 11px;
  font-weight: 800;
}

.device-chip-top {
  top: 30px;
  right: 42px;
}

.device-chip-bottom {
  bottom: 37px;
  left: 20px;
}

.live-on-go-card {
  display: grid;
  grid-template-columns: .8fr 1.6fr .7fr;
  gap: 30px;
  align-items: center;
  margin-top: 64px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(47, 37, 50, .94), rgba(28, 22, 30, .94));
  border: 1px solid var(--color-border);
  border-radius: 18px;
}

.live-on-go-heading {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.live-on-go-heading h3 {
  font-size: 24px;
  line-height: 1.2;
}

.live-pulse {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin-top: 5px;
  background: #ff6262;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 98, 98, .12);
}

.live-on-go-copy p {
  margin-bottom: 10px;
  font-size: 14px;
}

.live-on-go-facts {
  display: grid;
  gap: 8px;
}

.live-on-go-facts > div {
  padding: 10px 12px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 90, 0, .14);
  border-radius: 10px;
}

.live-on-go-facts strong,
.live-on-go-facts span {
  display: block;
}

.live-on-go-facts strong {
  color: var(--color-brand);
  font-size: 15px;
}

.live-on-go-facts span {
  color: var(--color-muted);
  font-size: 10px;
}

@media (max-width: 900px) {
  .mobile-story {
    grid-template-columns: 1fr;
  }

  .device-stage {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .live-on-go-card {
    grid-template-columns: 1fr;
  }

  .live-on-go-facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  #app {
    padding: 52px 0;
  }

  .mobile-feature-list {
    grid-template-columns: 1fr;
  }

  .device-stage {
    min-height: 390px;
  }

  .browser-device {
    top: 46px;
    left: 10px;
    width: 92%;
  }

  .browser-screen {
    min-height: 210px;
    padding: 15px;
  }

  .phone-device {
    right: 12px;
    bottom: 13px;
    width: 142px;
  }

  .phone-screen {
    min-height: 242px;
  }

  .phone-screen > img {
    height: 145px;
  }

  .device-chip-top {
    top: 15px;
    right: 20px;
  }

  .device-chip-bottom {
    display: none;
  }

  .live-on-go-card {
    margin-top: 42px;
    padding: 22px;
  }

  .live-on-go-facts {
    grid-template-columns: 1fr;
  }
}

/* === FEATURED CONTENT SECTIONS === */
#games,
#providers,
#bonus,
#vip,
#account,
#safety,
#banking,
#support,
#verdict,
#faq {
  padding-top: 72px;
  padding-bottom: 72px;
}

.games-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 34px 0 22px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(47, 37, 50, .92), rgba(34, 27, 36, .92));
  border: 1px solid var(--color-border);
  border-radius: 15px;
}

.games-stat-strip > div {
  padding: 20px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.games-stat-strip > div:last-child {
  border-right: 0;
}

.games-stat-strip strong,
.games-stat-strip span {
  display: block;
}

.games-stat-strip strong {
  color: var(--color-brand);
  font-size: 27px;
  line-height: 1;
}

.games-stat-strip span {
  margin-top: 7px;
  color: var(--color-muted);
  font-size: 12px;
}

.game-thumb {
  position: relative;
}

.game-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  padding: 10px 16px;
  color: #1b1519;
  background: var(--color-brand);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -42%);
  transition: opacity .2s ease, transform .2s ease;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.game-card:hover .game-play,
.game-card:focus-visible .game-play {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.bonus-chain {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 36px 0 18px;
}

.bonus-chain::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-brand), rgba(255, 90, 0, .18));
}

.bonus-stage {
  position: relative;
  z-index: 1;
  padding: 18px 14px 20px;
  text-align: center;
  background: linear-gradient(160deg, #302532, #1d181f);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  transition: transform .2s ease, border-color .2s ease;
}

.bonus-stage:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 0, .55);
}

.bonus-step,
.bonus-stage strong,
.bonus-stage b,
.bonus-stage small {
  display: block;
}

.bonus-step {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 6px 10px;
  color: #1b1519;
  background: var(--color-brand);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.bonus-stage strong {
  color: var(--color-brand);
  font-size: 34px;
  line-height: 1;
}

.bonus-stage b {
  margin-top: 10px;
  color: var(--color-light);
  font-size: 12px;
}

.bonus-stage small {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 11px;
}

.bonus-total {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
  padding: 20px 22px;
  background: linear-gradient(90deg, rgba(255, 90, 0, .14), rgba(255, 90, 0, .035));
  border: 1px solid rgba(255, 90, 0, .3);
  border-radius: 14px;
}

.bonus-total span,
.bonus-total strong {
  display: block;
}

.bonus-total span {
  color: var(--color-muted);
  font-size: 12px;
}

.bonus-total strong {
  margin-right: auto;
  color: var(--color-light);
  font-size: 20px;
}

.terms-table-toggle {
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.terms-table-toggle summary {
  padding: 14px 18px;
  color: var(--color-brand);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.terms-table-toggle .table-scroll {
  border-top: 1px solid var(--color-border);
}

.quest-flow,
.cashout-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 34px 0 16px;
  overflow: hidden;
  background: rgba(35, 28, 37, .82);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.quest-flow > div,
.cashout-flow > div {
  position: relative;
  min-height: 152px;
  padding: 22px;
  border-right: 1px solid var(--color-border);
}

.quest-flow > div:last-child,
.cashout-flow > div:last-child {
  border-right: 0;
}

.quest-flow span,
.cashout-flow span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  color: #211920;
  background: var(--color-brand);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.quest-flow strong,
.quest-flow small,
.cashout-flow strong,
.cashout-flow small {
  display: block;
}

.quest-flow strong,
.cashout-flow strong {
  color: var(--color-light);
  font-size: 15px;
}

.quest-flow small,
.cashout-flow small {
  margin-top: 7px;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.5;
}

.quest-note {
  display: flex;
  gap: 14px;
  align-items: center;
  width: fit-content;
  padding: 12px 16px;
  background: rgba(255, 90, 0, .08);
  border-radius: 10px;
}

.quest-note strong {
  color: var(--color-brand);
  font-size: 23px;
}

.quest-note span {
  color: var(--color-muted);
  font-size: 12px;
}

#account .steps-grid {
  position: relative;
  grid-template-columns: repeat(4, 1fr);
}

#account .step-card {
  position: relative;
}

.account-aftercare {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 28px;
}

.account-aftercare > .content-paragraphs,
.kyc-card {
  padding: 26px;
  background: rgba(35, 28, 37, .72);
  border: 1px solid var(--color-border);
  border-radius: 15px;
}

.account-aftercare h3,
.kyc-card h3 {
  margin-bottom: 12px;
  color: var(--color-light);
  font-size: 20px;
}

.kyc-card {
  background: linear-gradient(145deg, rgba(255, 90, 0, .11), rgba(35, 28, 37, .86));
}

.kyc-card ul {
  margin: 0 0 16px;
  padding-left: 19px;
  color: var(--color-light);
  font-size: 13px;
}

.kyc-card li {
  margin: 7px 0;
}

.kyc-card small {
  color: var(--color-brand);
  font-size: 11px;
}

.trust-checks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.trust-checks > div {
  padding: 20px;
  background: linear-gradient(160deg, #2d242f, #1c171e);
  border: 1px solid var(--color-border);
  border-radius: 13px;
}

.trust-checks span,
.trust-checks strong,
.trust-checks b {
  display: block;
}

.trust-checks span {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.trust-checks strong {
  min-height: 44px;
  margin-top: 10px;
  color: var(--color-light);
  font-size: 15px;
}

.trust-checks b {
  width: fit-content;
  margin-top: 14px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 9px;
}

.status-caution {
  color: #f6cf7b;
  background: rgba(246, 207, 123, .1);
}

.status-negative {
  color: #ff9292;
  background: rgba(255, 110, 110, .1);
}

.status-neutral {
  color: #bdb1ff;
  background: rgba(160, 144, 255, .1);
}

.safety-copy {
  max-width: 980px;
}

.payment-rail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.payment-rail-grid > div {
  padding: 22px;
  background: rgba(35, 28, 37, .86);
  border: 1px solid var(--color-border);
  border-radius: 14px;
}

.rail-icon {
  display: inline-flex;
  min-width: 42px;
  height: 31px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 0 8px;
  color: #1d171c;
  background: var(--color-brand);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 900;
}

.payment-rail-grid h3 {
  margin-bottom: 9px;
  color: var(--color-light);
  font-size: 16px;
}

.payment-rail-grid strong {
  color: var(--color-brand);
  font-size: 12px;
}

.payment-rail-grid p {
  margin-top: 7px;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.5;
}

.cashout-flow {
  margin-top: 22px;
}

.cashout-flow > div {
  min-height: 135px;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.support-cards article {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 26px;
  background: linear-gradient(155deg, rgba(47, 37, 50, .94), rgba(27, 22, 29, .94));
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: transform .2s ease, border-color .2s ease;
}

.support-cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 0, .42);
}

.support-icon {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  color: #1d171c;
  background: var(--color-brand);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
}

.support-cards h3 {
  margin-bottom: 8px;
  color: var(--color-light);
  font-size: 20px;
}

.support-cards strong {
  color: var(--color-brand);
  font-size: 12px;
}

.support-cards p {
  margin: 14px 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.65;
}

.support-cards small {
  margin-top: auto;
  color: var(--color-muted);
  font-size: 10px;
}

.support-cards a {
  margin-top: 17px;
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .bonus-chain,
  .trust-checks,
  .payment-rail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-chain::before {
    display: none;
  }

  .quest-flow,
  .cashout-flow,
  #account .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quest-flow > div:nth-child(2),
  .cashout-flow > div:nth-child(2) {
    border-right: 0;
  }

  .support-cards {
    grid-template-columns: 1fr;
  }

  .support-cards article {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .games-stat-strip,
  .bonus-chain,
  .quest-flow,
  .cashout-flow,
  .trust-checks,
  .payment-rail-grid,
  #account .steps-grid,
  .account-aftercare {
    grid-template-columns: 1fr;
  }

  .games-stat-strip > div,
  .quest-flow > div,
  .cashout-flow > div {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .games-stat-strip > div:last-child,
  .quest-flow > div:last-child,
  .cashout-flow > div:last-child {
    border-bottom: 0;
  }

  .bonus-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .bonus-total .btn {
    width: 100%;
  }
}

/* VOX layout signature */
.hero-home .hero-layout {
  justify-content: center;
}

.hero-home .hero-content {
  width: min(100%, 1120px);
  text-align: left;
  border-radius: 24px 8px 24px 8px;
  box-shadow: 18px 22px 64px rgba(0, 0, 0, .38);
}

.hero-home .page-kicker {
  margin-right: 0;
  margin-left: 0;
}

.hero-home .hero-actions {
  justify-content: flex-start;
}

.hero-home .hero-disclaimer {
  text-align: left;
}

.section-header {
  text-align: left;
}

.section-header .section-subtitle {
  max-width: 760px;
  margin-right: 0;
  margin-left: 0;
}

.toc {
  border-top: 3px solid var(--color-brand);
  border-left-width: 1px;
  border-radius: 18px 4px 18px 4px;
}

.lobby-game > div,
.game-card,
.support-cards article {
  border-radius: 18px 6px 18px 6px;
}

.section-cta {
  justify-content: flex-start;
}

.section-cta a {
  border-radius: 18px 5px 18px 5px;
}

@media (max-width: 767px) {
  .hero-home .hero-content {
    border-radius: 20px 6px 20px 6px;
    text-align: center;
  }

  .hero-home .page-kicker {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-home .hero-actions {
    justify-content: center;
  }

  .hero-home .hero-disclaimer {
    text-align: center;
  }
}

/* === VOX FINAL CASCADE OVERRIDES === */
.section,
#games,
#providers,
#bonus,
#safety,
#support,
#faq { padding-top: 56px; padding-bottom: 56px; }
.section-alt { background: #101014; }
.section-header { margin-bottom: 28px; }
.section-title { color: #fff8f3; letter-spacing: -.025em; }
.section-subtitle { margin-bottom: 0; color: #bfaea5; line-height: 1.65; }
.section-cta a { border-radius: 10px; }
.context-game-showcase { margin: 28px 0; padding: 26px; background: linear-gradient(145deg, rgba(15,16,16,.98), rgba(9,12,12,.98)); border-color: rgba(255,90,0,.3); border-radius: 18px 6px 18px 6px; }
.context-game-showcase .lobby-heading { margin-bottom: 22px; }
.lobby-grid-context { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.lobby-grid-context .lobby-game strong { font-size: 14px; }
.table-scroll { border: 1px solid rgba(255,90,0,.28); border-radius: 14px; }
.reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cta-section { padding: 64px 16px; background: #080808; border-top: 1px solid rgba(255,90,0,.2); }
.cta-section h2 { max-width: 900px; margin-bottom: 0; color: #fff8f3; }

@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .lobby-grid-context { display: flex; }
}

@media (max-width: 620px) {
  .section,
  #games,
  #providers,
  #bonus,
  #safety,
  #support,
  #faq { padding-top: 42px; padding-bottom: 42px; }
  .context-game-showcase { padding: 20px 14px; }
}
