/* === COLOR VARIABLES (set from config.json via JS) === */
:root {
  --color-brand: #8b5cf6;
  --color-dark: #070b18;
  --color-light: #f4f2ff;
  --color-card: #111a33;
  --color-border: #30457a;
  --color-muted: #a9b7dc;
  --color-secondary: #19284d;
}

/* === 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;
}

.z3f8wlc__content-paragraphs a,
.z3f8wlc__faq-answer a,
.z3f8wlc__section-subtitle a,
.z3f8wlc__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;
}

.z3f8wlc__content-paragraphs a:hover,
.z3f8wlc__faq-answer a:hover,
.z3f8wlc__section-subtitle a:hover,
.z3f8wlc__cta-subtitle a:hover {
  border-bottom-color: currentColor;
}

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

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

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

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

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

/* === BUTTONS === */
.z3f8wlc__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;
}

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

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

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

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

/* === HEADER === */
.z3f8wlc__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;
}

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

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

.z3f8wlc__header-nav {
  display: none;
}

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

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

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

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

.z3f8wlc__mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  width: 100vw;
  min-height: calc(100svh - 64px);
  background: #070b18;
  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);
}

.z3f8wlc__mobile-menu.z3f8wlc__active {
  display: flex;
}

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

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

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

.z3f8wlc__mobile-menu .z3f8wlc__btn {
  width: 100%;
  margin-top: 8px;
}

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

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

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

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

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

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

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

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

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

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

.z3f8wlc__hero .z3f8wlc__btn-primary {
  padding: 16px;
  font-size: 16px;
}

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

.z3f8wlc__hero-actions .z3f8wlc__btn {
  flex: 1 1 220px;
}

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

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

.z3f8wlc__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);
}

.z3f8wlc__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;
}

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

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

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

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

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

.z3f8wlc__hero-panel-card {
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.z3f8wlc__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;
}

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

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

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

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

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

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

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

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

  .z3f8wlc__hero-actions .z3f8wlc__btn {
    flex: 1 1 100%;
  }

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

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

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

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

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

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

.z3f8wlc__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;
}

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

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

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

.z3f8wlc__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;
}

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

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

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

.z3f8wlc__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;
}

.z3f8wlc__support-cards + .z3f8wlc__highlight-box,
.z3f8wlc__table-scroll + .z3f8wlc__highlight-box,
.z3f8wlc__terms-table-toggle + .z3f8wlc__highlight-box,
.z3f8wlc__content-features + .z3f8wlc__section-cta,
.z3f8wlc__content-paragraphs + .z3f8wlc__section-cta,
.z3f8wlc__account-aftercare + .z3f8wlc__section-cta,
.z3f8wlc__live-on-go-card + .z3f8wlc__section-cta,
.z3f8wlc__faq-list + .z3f8wlc__section-cta {
  margin-top: 28px;
}

.z3f8wlc__highlight-box + .z3f8wlc__section-cta {
  margin-top: 30px;
}

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

.z3f8wlc__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(139, 92, 246, .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;
}

.z3f8wlc__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;
}

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

.z3f8wlc__section-cta a:hover,
.z3f8wlc__section-cta a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(139, 92, 246, .27);
}

@keyframes sectionCtaGlow {
  0%, 100% { box-shadow: 0 10px 28px rgba(139, 92, 246, .14); }
  50% { box-shadow: 0 12px 34px rgba(139, 92, 246, .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) {
  .z3f8wlc__section-cta a,
  .z3f8wlc__section-cta a::before,
  .z3f8wlc__section-cta a span {
    animation: none;
  }
}

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

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

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

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

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

.z3f8wlc__hero-home .z3f8wlc__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(139, 92, 246, .34);
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, .4);
}

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

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

.z3f8wlc__hero-home .z3f8wlc__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(139, 92, 246, .13), rgba(34, 211, 238, .045));
  border: 1px solid rgba(139, 92, 246, .28);
  border-radius: 18px 6px 18px 6px;
}

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

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

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

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

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

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

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

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

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

  .z3f8wlc__hero-home .z3f8wlc__page-kicker {
    margin: 0 auto 18px;
  }

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

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

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

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

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

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

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

.z3f8wlc__lobby-heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, .5));
}

.z3f8wlc__lobby-heading span:last-child {
  background: linear-gradient(90deg, rgba(139, 92, 246, .5), transparent);
}

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

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

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

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

.z3f8wlc__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;
}

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

.z3f8wlc__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;
}

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

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

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

.z3f8wlc__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;
}

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

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

.z3f8wlc__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;
}

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

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

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

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

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

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

  .z3f8wlc__lobby-heading {
    gap: 13px;
  }

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

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

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

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

.z3f8wlc__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;
}

.z3f8wlc__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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.z3f8wlc__toc-nav a:hover,
.z3f8wlc__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) {
  .z3f8wlc__toc-nav > ol {
    columns: 1;
  }

  .z3f8wlc__toc-hint {
    display: none;
  }

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

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

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

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

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

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

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

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

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

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

.z3f8wlc__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;
}
.z3f8wlc__filter-btn:hover, .z3f8wlc__filter-btn.z3f8wlc__active {
  background: var(--color-brand);
  color: var(--color-light);
  border-color: var(--color-brand);
}

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

.z3f8wlc__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;
}
.z3f8wlc__game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.z3f8wlc__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;
}

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

.z3f8wlc__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);
}

.z3f8wlc__game-thumb.z3f8wlc__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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z3f8wlc__pros-cons-title .z3f8wlc__icon-check {
  color: #22c55e;
}
.z3f8wlc__pros-cons-title .z3f8wlc__icon-x {
  color: #ef4444;
}

.z3f8wlc__pros-list ul, .z3f8wlc__cons-list ul {
  list-style: none;
}

.z3f8wlc__pros-list li, .z3f8wlc__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);
}

.z3f8wlc__pros-list li:last-child, .z3f8wlc__cons-list li:last-child {
  border-bottom: none;
}

.z3f8wlc__pros-cons + .z3f8wlc__content-paragraphs {
  margin-top: 32px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z3f8wlc__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;
}

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

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

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

.z3f8wlc__faq-item.z3f8wlc__open .z3f8wlc__faq-chevron {
  transform: rotate(180deg);
}

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

.z3f8wlc__faq-item.z3f8wlc__open .z3f8wlc__faq-answer {
  max-height: 300px;
}

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

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

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

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

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

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

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

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

.z3f8wlc__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);
}

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

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

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

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

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

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

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

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

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

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

.z3f8wlc__footer-brand .z3f8wlc__logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

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

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

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

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

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

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

.z3f8wlc__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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.z3f8wlc__device-stage {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(139, 92, 246, .16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 55% 35%, rgba(139, 92, 246, .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);
}

.z3f8wlc__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);
}

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

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

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

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

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

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

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

.z3f8wlc__browser-games img {
  width: 100%;
  aspect-ratio: .88;
  object-fit: contain;
  background: #081012;
  border: 1px solid rgba(139, 92, 246, .2);
  border-radius: 8px;
}

.z3f8wlc__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);
}

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

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

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

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

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

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

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

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

.z3f8wlc__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;
}

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

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

.z3f8wlc__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;
}

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

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

.z3f8wlc__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);
}

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

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

.z3f8wlc__live-on-go-facts > div {
  padding: 10px 12px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(139, 92, 246, .14);
  border-radius: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .z3f8wlc__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;
}

.z3f8wlc__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;
}

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

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

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

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

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

.z3f8wlc__game-thumb {
  position: relative;
}

.z3f8wlc__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;
}

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

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

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

.z3f8wlc__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;
}

.z3f8wlc__bonus-stage:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, .55);
}

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

.z3f8wlc__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;
}

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

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

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

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

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

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

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

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

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

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

.z3f8wlc__quest-flow,
.z3f8wlc__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;
}

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

.z3f8wlc__quest-flow > div:last-child,
.z3f8wlc__cashout-flow > div:last-child {
  border-right: 0;
}

.z3f8wlc__quest-flow span,
.z3f8wlc__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;
}

.z3f8wlc__quest-flow strong,
.z3f8wlc__quest-flow small,
.z3f8wlc__cashout-flow strong,
.z3f8wlc__cashout-flow small {
  display: block;
}

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

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

.z3f8wlc__quest-note {
  display: flex;
  gap: 14px;
  align-items: center;
  width: fit-content;
  padding: 12px 16px;
  background: rgba(139, 92, 246, .08);
  border-radius: 10px;
}

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

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

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

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

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

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

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

.z3f8wlc__kyc-card {
  background: linear-gradient(145deg, rgba(139, 92, 246, .11), rgba(35, 28, 37, .86));
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z3f8wlc__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;
}

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

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

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

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

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

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

.z3f8wlc__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;
}

.z3f8wlc__support-cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, .42);
}

.z3f8wlc__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;
}

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

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

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

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

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

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

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

  .z3f8wlc__quest-flow,
  .z3f8wlc__cashout-flow,
  #account .z3f8wlc__steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 600px) {
  .z3f8wlc__games-stat-strip,
  .z3f8wlc__bonus-chain,
  .z3f8wlc__quest-flow,
  .z3f8wlc__cashout-flow,
  .z3f8wlc__trust-checks,
  .z3f8wlc__payment-rail-grid,
  #account .z3f8wlc__steps-grid,
  .z3f8wlc__account-aftercare {
    grid-template-columns: 1fr;
  }

  .z3f8wlc__games-stat-strip > div,
  .z3f8wlc__quest-flow > div,
  .z3f8wlc__cashout-flow > div {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .z3f8wlc__games-stat-strip > div:last-child,
  .z3f8wlc__quest-flow > div:last-child,
  .z3f8wlc__cashout-flow > div:last-child {
    border-bottom: 0;
  }

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

  .z3f8wlc__bonus-total .z3f8wlc__btn {
    width: 100%;
  }
}

/* Vegastars layout signature */
.z3f8wlc__hero-home .z3f8wlc__hero-layout {
  justify-content: center;
}

.z3f8wlc__hero-home .z3f8wlc__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);
}

.z3f8wlc__hero-home .z3f8wlc__page-kicker {
  margin-right: 0;
  margin-left: 0;
}

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

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

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

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

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

.z3f8wlc__lobby-game > div,
.z3f8wlc__game-card,
.z3f8wlc__support-cards article {
  border-radius: 18px 6px 18px 6px;
}

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

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

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

  .z3f8wlc__hero-home .z3f8wlc__page-kicker {
    margin-right: auto;
    margin-left: auto;
  }

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

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