/* ============================================================
   MYBOOST — MAIN CSS
   Design System extracted from Figma
   ============================================================ */

/* Homepage section tokens (colors/fonts: assets/css/tokens.css) */
:root {
  --why-sky-fill:       linear-gradient(180deg, #f8fcff 0%, #d9eeff 28%, #b8dcfb 58%, #8ec2ef 100%);
  --why-num-color:      #c6e4ff;
  --why-num-glow:       none;
  --why-excellent-red:  #ffffff;
  --color-accent-yellow:#f0f014;
  --color-accent-red:   #cc0000;
  --font-why-display:   'Barlow Condensed', 'Impact', sans-serif;
  --font-why-stats:     'Barlow Condensed', 'Impact', sans-serif;
  --heading-stroke:     4px;
  --heading-shadow:     4px 4px 0 #000;
  --mb-bg-sunset:       url('../images/mb-bg-sunset.png');
  --mb-bg-gaming:       url('../images/mb-bg-gaming-lounge.png');
  --mb-bg-city:         url('../images/mb-bg-city-skyline.jpg');
  --mb-bg-cta:          url('../images/mb-bg-group-12.png');
  --section-py:         56px;
  --section-gap:        clamp(72px, 9vw, 128px);
  --section-title-h:    84px;
  --section-title-gap:  56px;
  --container-px:       clamp(24px, 8.33vw, 120px);
  --figma-hiw-max:      1440px;
  --figma-hiw-steps:    1063px;
  --figma-cg-active-w:  540px;
  --figma-cg-active-h:  735px;
  --figma-cg-side-w:    360px;
  --figma-cg-side-h:    490px;
  --figma-cg-gap:       32px;
  --radius-sm:          10px;
  --ease-out:           cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:        cubic-bezier(0.45, 0, 0.55, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overflow-y: auto;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  overflow-y: visible;
  -webkit-font-smoothing: antialiased;
}

main,
.site-main {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

@media (min-width: 769px) {
  main,
  .site-main {
    overflow-x: visible;
    overflow-y: visible;
  }
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.container--title {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-full {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
  box-sizing: border-box;
}

.section-title--tight {
  margin-bottom: var(--section-title-gap);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
}

/* Buttons: assets/css/components.css (Figma UI kit) */

/* ── HEADER ──────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  transform: none;
  z-index: 1000;
  transition: background 0.4s var(--ease-out);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 24px clamp(32px, 4vw, 56px);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.site-logo {
  flex: 0 0 auto;
  margin-right: auto;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 32px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
  position: relative;
}

.site-nav a:hover { color: #fff; }


.nav-search {
  display: none;
  width: 100%;
}

.nav-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.nav-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font: inherit;
  outline: none;
}

.nav-search-input::placeholder {
  color: rgba(255,255,255,0.48);
}

.nav-search-input:focus {
  border-color: rgba(192,38,211,0.8);
  box-shadow: 0 0 0 3px rgba(192,38,211,0.16);
}

.nav-search-submit {
  flex: 0 0 auto;
  height: 44px;
  padding: 0 16px;
  border: none;
  border-radius: 999px;
  background: var(--color-grad);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-search-results {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.nav-search-results[hidden] {
  display: none;
}

.site-nav .nav-search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.site-nav .nav-search-result::after {
  display: none;
}

.nav-search-result-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-search-result-type,
.nav-search-message {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
}

.nav-search-message {
  padding: 8px 2px;
}


.mb-header__mobile-search {
  list-style: none;
  margin: 0 0 12px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.mb-header__mobile-nav .nav-search {
  display: block !important;
  width: 100% !important;
}

.mb-header__mobile-nav .nav-search-form {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
}

.mb-header__mobile-nav .nav-search-input {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  height: 46px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font: inherit !important;
  font-size: 14px !important;
  outline: none !important;
}

.mb-header__mobile-nav .nav-search-input::placeholder {
  color: rgba(255,255,255,0.5) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.5) !important;
}

.mb-header__mobile-nav .nav-search-submit {
  flex: 0 0 auto !important;
  height: 46px !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--color-grad, linear-gradient(135deg, #9333ea 0%, #c026d3 100%)) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font: inherit !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.mb-header__mobile-nav .nav-search-results {
  display: grid !important;
  gap: 6px !important;
  margin-top: 10px !important;
}

.mb-header__mobile-nav .nav-search-results[hidden] {
  display: none !important;
}

.mb-header__mobile-nav .nav-search-result {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-decoration: none !important;
}

.mb-header__mobile-nav .nav-search-result::after {
  display: none !important;
}

.mb-header__mobile-nav .nav-search-message,
.mb-header__mobile-nav .nav-search-result-type {
  color: rgba(255,255,255,0.55) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.55) !important;
  font-size: 12px !important;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--color-grad);
  transition: width 0.3s var(--ease-out);
  border-radius: 2px;
}
.site-nav a:hover::after { width: 100%; }

/* Games dropdown */
.nav-games {
  position: relative;
  z-index: 1;
}

.nav-games__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
  position: relative;
  text-decoration: none;
}

.nav-games__trigger:hover,
.nav-games:focus-within .nav-games__trigger,
.nav-games.is-open .nav-games__trigger {
  color: #fff;
}

.nav-games__trigger::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-grad);
  transition: width 0.3s var(--ease-out);
  border-radius: 2px;
}

.nav-games:hover .nav-games__trigger::after,
.nav-games:focus-within .nav-games__trigger::after,
.nav-games.is-open .nav-games__trigger::after {
  width: 100%;
}

.nav-games__caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.75;
  transition: transform 0.2s var(--ease-out);
}

.nav-games:hover .nav-games__caret,
.nav-games:focus-within .nav-games__caret,
.nav-games.is-open .nav-games__caret {
  transform: rotate(180deg);
}

.nav-games__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1200;
  min-width: 240px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(8, 8, 16, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(4px);
  transition:
    opacity 0.22s var(--ease-out),
    visibility 0.22s var(--ease-out),
    transform 0.22s var(--ease-out);
  pointer-events: none;
}

.nav-games:hover .nav-games__menu,
.nav-games:focus-within .nav-games__menu,
.nav-games.is-open .nav-games__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-games__item {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-games__item::after {
  display: none !important;
}

.nav-games__item:hover,
.nav-games__item:focus-visible {
  background: rgba(147, 51, 234, 0.22);
  color: #fff;
}

.nav-games__item--all {
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px 10px 6px 6px;
  font-weight: 600;
  color: #fff;
}

/* Elementor mb-header — games dropdown */
.mb-header__nav-item--games {
  position: relative;
  list-style: none;
  z-index: 2;
}

.mb-header__nav .nav-games {
  position: relative;
  display: inline-flex;
  z-index: 3;
}

@media (min-width: 769px) {
  .mb-header {
    position: relative;
    z-index: 2;
  }

  .mb-header__nav .nav-games,
  #site-header .site-nav .nav-games {
    position: relative;
    z-index: 3;
  }

  .mb-header__nav .nav-games__menu,
  #site-header .site-nav .nav-games__menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    right: auto;
    z-index: 1300;
    min-width: 240px;
    margin: 0;
    transform: translateX(-50%) translateY(4px);
  }

  .mb-header__nav .nav-games:hover .nav-games__menu,
  .mb-header__nav .nav-games:focus-within .nav-games__menu,
  .mb-header__nav .nav-games.is-open .nav-games__menu,
  #site-header .site-nav .nav-games:hover .nav-games__menu,
  #site-header .site-nav .nav-games:focus-within .nav-games__menu,
  #site-header .site-nav .nav-games.is-open .nav-games__menu {
    transform: translateX(-50%) translateY(0);
  }

  /* Hover bridge: invisible hit area between trigger and menu */
  .mb-header__nav .nav-games::before,
  #site-header .site-nav .nav-games::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    height: 18px;
    z-index: 1299;
  }
}

.mb-header__nav .nav-games__trigger.mb-header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mb-color-text-primary, rgba(255, 255, 255, 0.92));
  text-decoration: none;
}

.mb-header__nav .nav-games__trigger.mb-header__nav-link:hover,
.mb-header__nav .nav-games:hover .nav-games__trigger,
.mb-header__nav .nav-games:focus-within .nav-games__trigger,
.mb-header__nav .nav-games.is-open .nav-games__trigger {
  color: var(--mb-color-text-primary, rgba(255, 255, 255, 0.92));
}

.mb-header__nav .nav-games__trigger::after,
.mb-header__nav .nav-games:hover .nav-games__trigger::after,
.mb-header__nav .nav-games:focus-within .nav-games__trigger::after,
.mb-header__nav .nav-games.is-open .nav-games__trigger::after {
  display: none;
}

.mb-header__mobile-list .nav-games {
  width: 100%;
}

.mb-header__mobile-list .nav-games__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
}

.mb-header__mobile-list .nav-games__menu {
  position: static;
  left: auto;
  top: auto;
  width: 100%;
  min-width: 0;
  margin-top: 8px;
  padding: 6px 0 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 1;
  visibility: hidden;
  transform: none;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.28s var(--ease-out), visibility 0.22s;
}

.mb-header__mobile-list .nav-games.is-open .nav-games__menu {
  visibility: visible;
  max-height: 480px;
  pointer-events: auto;
  transform: none;
  opacity: 1;
}

.mb-header__mobile-list .nav-games__item {
  display: block;
  padding: 12px 4px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--mb-color-text-primary, rgba(255, 255, 255, 0.92));
  -webkit-text-fill-color: currentColor;
  border-bottom: 1px solid var(--mb-color-border-subtle, rgba(255, 255, 255, 0.12));
}

.mb-header__mobile-list .nav-games__item--all {
  margin-bottom: 0;
  border-bottom: 1px solid var(--mb-color-border-subtle, rgba(255, 255, 255, 0.12));
  font-weight: 600;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.mb-header__pill:has(.nav-games:hover),
.mb-header__pill:has(.nav-games:focus-within),
.mb-header__pill:has(.nav-games.is-open) {
  overflow: visible;
  z-index: 4;
}

.elementor-location-header:has(.nav-games:hover),
.elementor-location-header:has(.nav-games:focus-within),
.elementor-location-header:has(.nav-games.is-open) {
  overflow: visible;
  z-index: calc(var(--mb-z-header, 1000) + 100);
}

@media (min-width: 769px) {
  .mb-header__nav,
  .mb-header__nav-list {
    overflow: visible;
  }
}

body.home.header-scrolled #site-header {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ────────────────────────────────────────────────────── */
/* IMPORTANT: keep display:block (NOT flex) — flex collapses the hero-stage
   children to content-width and breaks .hero-title, .hero-character, .hero-cta-row. */
#hero {
  position: relative;
  display: block;
  min-height: 800px;
  overflow: visible;
  isolation: isolate;
  --hero-h: 800px;
  --hero-title-top: 172px;
  --hero-char-bottom: 164px;
  --hero-cta-bottom: 72px;
  --hero-crates-bottom: 110px;
  --hero-car-bottom: 12px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  transform-origin: center;
  will-change: transform;
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.12) 55%,
    rgba(0, 0, 0, 0.72) 88%,
    #000 100%
  );
}

.hero-stage {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  min-height: var(--hero-h);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  pointer-events: none;
}

.hero-composition {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: var(--hero-h);
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

.hero-stack {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: var(--hero-h);
  margin: 0 auto;
  padding: 0;
}

.hero-figure-row {
  display: contents;
}

@media (max-width: 768px) {
  .hero-figure-row {
    display: block;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    transform: none;
  }
}

.hero-title {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--hero-title-top);
  z-index: 2;
  width: min(1128px, calc(100% - 32px));
  max-width: 1128px;
  margin: 0 auto;
  padding: 0;
  transform: none;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(80px, 9.72vw, 140px);
  font-weight: 400;
  line-height: 1.03;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  -webkit-text-fill-color: #fff;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  -webkit-text-stroke-width: var(--hero-title-stroke);
  -webkit-text-stroke-color: #000;
  paint-order: stroke fill;
  text-shadow: var(--hero-title-stroke-shadow);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-character {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: var(--hero-char-bottom);
  z-index: 5;
  display: block;
  width: min(397px, 52vw);
  height: auto;
  max-width: 397px;
  max-height: 596px;
  margin: 0 auto;
  transform: none;
  transform-origin: center bottom;
  object-fit: contain;
  object-position: center bottom;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  display: block;
  top: auto;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  user-select: none;
  z-index: 4;
}

.hero-cta-row {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: var(--hero-cta-bottom);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(680px, calc(100% - 80px));
  max-width: 680px;
  margin: 0;
  transform: translateX(-50%);
  padding: 16px 16px 16px 32px;
  background: #fff !important;
  border: none;
  border-left: 4px solid #070708;
  border-top: 4px solid #070708;
  border-radius: var(--radius-pill);
  box-shadow:
    0 10px 0 0 #000,
    0 16px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 1;
  isolation: isolate;
  pointer-events: auto;
}

@media (min-width: 769px) {
  /* Figma 460:781 — car left 420px, bottom 12px @ 1440×800 */
  .hero-deco-car {
    left: max(8px, calc(50% - 300px));
    right: auto;
    bottom: var(--hero-car-bottom);
    width: 274px;
    height: auto;
    max-height: none;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
  }

  /* Figma 460:782 — crates left 744px, bottom 110px (under CTA pill edge) */
  .hero-deco-crates {
    left: max(8px, calc(50% + 24px));
    right: auto;
    bottom: var(--hero-crates-bottom);
    width: 262px;
    height: auto;
    max-height: none;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  }
}

.hero-cta-text {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 386px;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #070708;
  text-align: left;
  line-height: 1.45;
}

.hero-cta-row .btn-primary {
  flex-shrink: 0;
}

/* ── CHOOSE YOUR GAME + BEST SELLERS — shared sunset (Figma Group 16) ─ */
.cg-bs-panel {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--mb-dark, #070708);
}

.cg-bs-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--mb-dark, #070708);
  background-image: var(--mb-bg-sunset);
  background-size: cover;
  background-position: center 34%;
  background-repeat: no-repeat;
  filter: brightness(0.78);
}

.cg-bs-photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.32) 16%,
    rgba(0, 0, 0, 0.12) 38%,
    rgba(0, 0, 0, 0.22) 68%,
    rgba(0, 0, 0, 0.62) 90%,
    rgba(0, 0, 0, 0.94) 100%
  );
}

.cg-bs-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% 42%, rgba(176, 38, 255, 0.28) 0%, transparent 62%),
    radial-gradient(ellipse 70% 45% at 18% 72%, rgba(255, 120, 40, 0.18) 0%, transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.85;
}

/* ── CHOOSE YOUR GAME — Swiper Coverflow (Figma) ─────────────── */
#choose-game {
  position: relative;
  min-height: 1080px;
  padding: 180px 0 var(--section-py);
  background: transparent;
  overflow-x: clip;
  overflow-y: visible;
  isolation: isolate;
  box-sizing: border-box;
  z-index: 1;
}

#choose-game::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
}

.choose-game-bg {
  display: none;
}

#choose-game .container {
  position: relative;
  z-index: 3;
}

.choose-game-title {
  text-align: center;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: var(--mb-section-title-size);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke-width: var(--mb-section-title-stroke);
  -webkit-text-stroke-color: #000;
  paint-order: stroke fill;
  text-shadow: var(--mb-section-title-shadow);
}

.cg-glow,
.cg-glow-top,
.cg-glow-mid,
.cg-glow-bottom {
  display: none !important;
}

/* Figma Shapes #00006 — mapped from frame 460:765 @ 1440px (node 460:806) */
.mb-shade--cg,
#choose-game .mb-shade--cg,
.cg-bs-panel > .mb-shade--cg {
  left: 9.03%;
  top: min(7.708vw, 111px);
  width: min(98.33vw, 1416px);
  max-width: 1416px;
  height: auto;
  aspect-ratio: 1416 / 1138;
  transform: none;
  filter: blur(87px);
  mix-blend-mode: screen;
  opacity: 0.92;
  z-index: 1;
}

/* Figma 469:169 — Best Sellers left glow (parent: cg-bs panel) */
.cg-bs-panel > .mb-shade--bs-left {
  left: max(-14.65%, calc(-211 * min(100vw, 1440px) / 1440));
  top: min(91.25vw, 1314px);
  width: min(63.61vw, 916px);
  max-width: 916px;
  height: auto;
  aspect-ratio: 916 / 737;
  transform: none;
  filter: blur(72px);
  mix-blend-mode: screen;
  opacity: 0.92;
  z-index: 1;
}

.choose-game-carousel {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: none;
  height: var(--figma-cg-active-h);
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

.choose-game-swiper {
  width: 100%;
  max-width: 100%;
  height: var(--figma-cg-active-h);
  max-height: var(--figma-cg-active-h);
  margin: 0 auto;
  overflow: visible;
  box-sizing: border-box;
}

.choose-game-swiper .swiper-wrapper {
  align-items: center;
  height: 100%;
}

.choose-game-swiper .swiper-slide {
  width: var(--figma-cg-active-w) !important;
  height: var(--figma-cg-active-h) !important;
  max-width: var(--figma-cg-active-w) !important;
  max-height: var(--figma-cg-active-h) !important;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease;
}

.choose-game-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.9;
}

.game-slide-card {
  display: block;
  width: var(--figma-cg-side-w) !important;
  height: var(--figma-cg-side-h) !important;
  max-width: var(--figma-cg-side-w) !important;
  max-height: var(--figma-cg-side-h) !important;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: width 0.35s ease, height 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  background: #111;
  box-sizing: border-box;
}

.choose-game-swiper .game-slide-card img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.choose-game-swiper .swiper-slide-active .game-slide-card {
  width: var(--figma-cg-active-w) !important;
  height: var(--figma-cg-active-h) !important;
  max-width: var(--figma-cg-active-w) !important;
  max-height: var(--figma-cg-active-h) !important;
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 56px rgba(147, 51, 234, 0.45);
}

.game-slide-card.is-focus {
  border-color: #fff;
}

.section-title {
  text-align: center;
  min-height: var(--section-title-h);
  margin: 0 0 var(--section-title-gap);
  font-family: var(--font-heading);
  font-size: var(--mb-section-title-size);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke-width: var(--mb-section-title-stroke);
  -webkit-text-stroke-color: #000;
  paint-order: stroke fill;
  text-shadow: var(--mb-section-title-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── BEST SELLERS ────────────────────────────────────────────── */
#best-sellers {
  --bs-card-w: clamp(180px, 14vw, 228px);
  --bs-card-h: calc(var(--bs-card-w) * 4 / 3);
  --bs-card-radius: 24px;
  min-height: 648px;
  padding: var(--section-gap) 0 var(--section-py);
  position: relative;
  background: transparent;
  isolation: isolate;
  overflow: visible;
  z-index: 2;
  box-sizing: border-box;
}

#best-sellers::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 45%, #000 100%);
}

#best-sellers .bs-shell {
  width: 100%;
  max-width: none;
}

/* Figma Shapes #00006 — mesh glow (screen blend on black) */
.mb-shade {
  position: absolute;
  pointer-events: none;
  user-select: none;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: 0.92;
  z-index: 0;
}

/* Best Sellers: product stage (glow lives on .cg-bs-panel) */
.bs-products-stage {
  position: relative;
  width: 100%;
  max-width: min(1680px, 96vw);
  margin: 0 auto;
  overflow: visible;
  min-height: 0;
}

.bs-products-stage.is-loading .products-grid {
  opacity: 0.55;
  pointer-events: none;
}

.bs-view-all {
  display: none;
  text-decoration: none;
}

@media (min-width: 769px) {
  #best-sellers .bs-products-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #best-sellers .bs-view-all {
    width: auto;
    max-width: none;
    margin: 24px auto 0;
  }

  #best-sellers .products-grid[data-view='games'] + .bs-view-all {
    display: inline-flex;
  }
}

.bs-products-empty {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding: 32px 16px;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

#best-sellers .product-card--game {
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
  appearance: none;
  -webkit-appearance: none;
}

#best-sellers .products-grid .product-card-price {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

/* Figma: deco icons float beside centered title (absolute from center) */
.bs-header {
  position: relative;
  z-index: 10;
  display: block;
  text-align: center;
  margin-bottom: var(--section-title-gap);
  min-height: var(--section-title-h);
  padding: 0 0 28px;
  overflow: visible;
}

.bs-header .section-title {
  margin-bottom: 0;
  display: inline-block;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.bs-deco {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 10px 28px rgba(147, 51, 234, 0.4));
  transform-origin: center center;
}

.bs-deco-youtube {
  width: 48px;
  height: 48px;
  left: calc(50% - 340px);
  top: 16px;
  transform: rotate(-16deg);
}

.bs-deco-gamepad {
  width: 72px;
  height: 72px;
  left: calc(50% + 300px);
  top: 8px;
  transform: rotate(12deg);
}

/* Filter tabs: assets/css/components.css (.mb-pill / .filter-tab) */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Product cards — overlapping fan (Figma reference) */
#best-sellers .container {
  overflow: visible;
}

#best-sellers .products-grid {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(8px, 1.5vw, 24px) 32px;
  flex-wrap: nowrap;
  overflow: visible;
  min-height: 0;
}

#best-sellers .products-grid[data-view="products"] {
  min-height: var(--bs-card-h);
  align-items: flex-end;
}

#best-sellers .products-grid .product-card {
  position: relative;
  flex: 0 0 auto;
  width: var(--bs-card-w);
  max-width: var(--bs-card-w);
  height: auto;
  border: var(--mb-cover-border);
  border-color: var(--mb-cover-border-color);
  border-radius: var(--bs-card-radius);
  overflow: clip;
  cursor: pointer;
  margin-left: clamp(-52px, -3.6vw, -34px);
  background: #111;
  box-sizing: border-box;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  transform-origin: center bottom;
  backface-visibility: hidden;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    z-index 0s linear 0.35s;
  will-change: transform;
}

#best-sellers .products-grid .product-card--game {
  aspect-ratio: 3 / 4;
}

#best-sellers .products-grid .product-card--product {
  flex: 0 0 var(--bs-card-w);
  aspect-ratio: 1 / 1;
}

#best-sellers .products-grid .product-card img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  border-radius: var(--bs-card-radius);
}

#best-sellers .products-grid .product-card--product .product-card-overlay {
  height: 48%;
  border-radius: 0 0 var(--bs-card-radius) var(--bs-card-radius);
}

#best-sellers .products-grid .product-card--game .product-card-overlay {
  border-radius: 0 0 var(--bs-card-radius) var(--bs-card-radius);
}

#best-sellers .products-grid .product-card:first-child {
  margin-left: 0;
}

/* Fan: each card tilts right; leftmost card stacks on top */
#best-sellers .products-grid .product-card:nth-child(1) { z-index: 5; transform: rotate(3deg); }
#best-sellers .products-grid .product-card:nth-child(2) { z-index: 4; transform: rotate(4deg); }
#best-sellers .products-grid .product-card:nth-child(3) { z-index: 3; transform: rotate(5deg); }
#best-sellers .products-grid .product-card:nth-child(4) { z-index: 2; transform: rotate(6deg); }
#best-sellers .products-grid .product-card:nth-child(5) { z-index: 1; transform: rotate(7deg); }
#best-sellers .products-grid .product-card:nth-child(n+6) { z-index: 1; transform: rotate(7deg); }

#best-sellers .products-grid .product-card:hover,
#best-sellers .products-grid .product-card:focus-visible {
  z-index: 10;
  border-radius: var(--bs-card-radius);
  overflow: clip;
  box-shadow: 0 24px 60px rgba(147, 51, 234, 0.45);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    z-index 0s;
}

#best-sellers .products-grid .product-card:nth-child(1):hover { transform: rotate(3deg) translateY(-8px) scale(1.03); }
#best-sellers .products-grid .product-card:nth-child(2):hover { transform: rotate(4deg) translateY(-8px) scale(1.03); }
#best-sellers .products-grid .product-card:nth-child(3):hover { transform: rotate(5deg) translateY(-8px) scale(1.03); }
#best-sellers .products-grid .product-card:nth-child(4):hover { transform: rotate(6deg) translateY(-8px) scale(1.03); }
#best-sellers .products-grid .product-card:nth-child(5):hover,
#best-sellers .products-grid .product-card:nth-child(n+6):hover { transform: rotate(7deg) translateY(-8px) scale(1.03); }


#best-sellers .products-grid .product-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 12px 16px;
  pointer-events: none;
}

#best-sellers .products-grid .product-card-name {
  display: inline-block;
  width: auto;
  max-width: calc(100% - 8px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#best-sellers .products-grid .product-card-tag {
  display: none;
}

#best-sellers .products-grid .product-card--product .product-card-tag {
  display: none;
}

#best-sellers .products-grid .product-card--product .product-card-price {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

/* ── WHY CHOOSE MYBOOST (Figma) ───────────────────────────────── */
/* GTA figure: extends through bridge overhang, feet toward section bottom */
.mb-hiw-promo-bridge {
  position: relative;
  overflow: visible;
  isolation: isolate;
  z-index: 2;
  background: transparent;
  padding-bottom: 0;
}

/* GTA figure spans HIW → Promoters heading (anchored on bridge, not #how-it-works) */
.mb-hiw-promo-bridge > .hiw-figure,
.mb-hiw-promo-bridge > .mb-gta-figure {
  display: block !important;
}

/* Why Choose + How It Works — single city skyline (Figma Group 8) */
.why-hiw-panel {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  overflow-y: visible;
  background: #000;
  padding-top: var(--section-gap);
}

/* Figma 469:174 — wide yellow/violet band across Why Choose (460:765) */
.why-hiw-panel > .mb-shade--why {
  left: max(-42.36%, calc(-610 * min(100vw, 1440px) / 1440));
  top: min(47.29vw, 681px);
  width: min(191.67vw, 2760px);
  max-width: 2760px;
  height: auto;
  aspect-ratio: 2760 / 737;
  transform: none;
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: 0.88;
  z-index: 2;
  pointer-events: none;
}

.why-hiw-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-color: #000;
  background-image: var(--mb-bg-city);
  background-size: cover;
  background-position: center 36%;
  background-repeat: no-repeat;
  filter: brightness(0.78);
}

.why-hiw-photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.86) 0%,
    rgba(0, 0, 0, 0.28) 10%,
    rgba(0, 0, 0, 0.10) 42%,
    rgba(0, 0, 0, 0.18) 72%,
    rgba(0, 0, 0, 0.78) 94%,
    #000 100%
  );
}

.why-hiw-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.why-choose-bg,
.hiw-bg {
  display: none !important;
}

#why-choose {
  min-height: 405px;
  padding: var(--section-py) 0;
  background: transparent;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
  z-index: 2;
  isolation: isolate;
}

/* Never show mesh glow blob in Why Choose (HIW only) */
#why-choose .mb-shade,
#why-choose img.mb-shade {
  display: none !important;
  visibility: hidden !important;
}

#why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
}

.why-choose-bg {
  display: none !important;
}

#why-choose .container {
  position: relative;
  z-index: 3;
  max-width: 1100px;
}

#why-choose .why-choose-title,
.why-choose-title {
  font-family: var(--font-heading);
  font-size: var(--mb-section-title-size);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0 0 var(--section-title-gap);
  letter-spacing: 0.02em;
  -webkit-text-stroke-width: var(--mb-section-title-stroke);
  -webkit-text-stroke-color: #000;
  paint-order: stroke fill;
  text-shadow: var(--mb-section-title-shadow);
}

/* Match How It Works section-title typography */
#why-choose .section-title.why-choose-title,
#why-choose h2.section-title.why-choose-title {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
}

/* Beat generic .section-title if both classes are present on live */
#why-choose h2.why-choose-title {
  font-size: var(--mb-section-title-size);
  margin-bottom: var(--section-title-gap);
}

.why-choose-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.5vw, 52px);
  flex-wrap: nowrap;
  opacity: 1;
  visibility: visible;
}

.why-rating-block,
.why-rating {
  flex: 0 0 auto;
  width: auto;
}

.why-rating-tilt {
  transform: rotate(-5deg);
  transform-origin: left center;
  display: inline-block;
}

.why-rating-number {
  font-family: var(--font-pricedown);
  font-size: clamp(96px, 11vw, 128px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 0;
  color: var(--why-num-color);
  -webkit-text-fill-color: var(--why-num-color);
  background: none;
  -webkit-text-stroke: 0;
  paint-order: fill;
  text-shadow: none;
  filter: none;
}

.why-rating-tag,
.why-rating-label {
  margin: 10px 0 0 8px;
  padding: 0;
}

.why-rating-tag span,
.why-rating-label .rating-tag,
.why-rating-label span {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  /* solid opaque black box — no city BG bleed-through */
  background: #000 !important;
  opacity: 1;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  border-radius: 6px;
  padding: 8px 20px;
  display: inline-block;
  line-height: 1.1;
  box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.6);
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  /* slight rotation on the tag itself */
  transform: rotate(-3deg);
  transform-origin: left center;
}

.why-stats-block,
.why-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 24px);
  flex: 0 0 auto;
  width: auto;
}

.why-stats-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(28px, 5.5vw, 68px);
  width: 100%;
  max-width: none;
  overflow: visible;
}

.why-stat {
  flex: 0 0 auto;
  text-align: center;
  min-width: 96px;
  overflow: visible;
}

.why-stat-support,
.why-stat-uptime {
  min-width: max(9ch, 148px);
  flex: 0 0 auto;
  overflow: visible;
}

/* Locked stats: label rendered via CSS ::before — immune to JS textContent / HTML parsing */
.why-stat-number.why-stat-locked {
  display: inline-block;
  min-width: 5.5em;
  overflow: visible;
  text-transform: none;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.why-stat-val-support::before {
  content: '24/7';
}

.why-stat-val-uptime::before {
  content: '99.9%';
}

/* metallic gradient shared by both real and pseudo-element stat numbers */
.why-stat-number.why-stat-locked::before {
  display: inline-block;
  line-height: inherit;
  color: var(--why-num-color);
  -webkit-text-fill-color: var(--why-num-color);
  background: none;
  font-family: var(--font-pricedown);
  font-weight: 400;
  font-size: inherit;
  letter-spacing: inherit;
  text-shadow: none;
}

#why-choose .why-stat-number,
.why-stat-number {
  font-family: var(--font-pricedown);
  font-size: clamp(40px, 4.2vw, 52px);
  font-weight: 400;
  display: block;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--why-num-color);
  -webkit-text-fill-color: var(--why-num-color);
  background: none;
  -webkit-text-stroke: 0;
  text-shadow: none;
  filter: none;
}

#why-choose .why-stat-label,
.why-stat-label {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-top: 8px;
  display: block;
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
  text-shadow: 2px 2px 0 #000;
}

.why-trustpilot,
.why-badges {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 692px;
  margin: clamp(20px, 2.5vw, 28px) auto 0;
}

#why-choose .badge-trustpilot-pill {
  margin: 0;
}

.badge-trustpilot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}

.badge-trustpilot .tp-stars { color: #00b67a; font-size: 16px; }

.badge-excellent {
  padding: 10px 20px;
  background: var(--color-accent-red);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
#how-it-works {
  min-height: 780px;
  padding: var(--section-gap) 0 var(--section-py);
  position: relative;
  overflow: visible;
  background: transparent;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
}

#how-it-works .section-title,
#how-it-works .hiw-title {
  display: block;
  padding: 0;
  margin-bottom: var(--section-title-gap);
  min-height: 0;
  border: none;
  border-radius: 0;
  background: none;
  font-family: var(--font-heading);
  font-size: var(--mb-section-title-size);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke-width: var(--mb-section-title-stroke);
  -webkit-text-stroke-color: #000;
  paint-order: stroke fill;
  text-shadow: var(--mb-section-title-shadow);
}

.hiw-character,
#how-it-works .hiw-character {
  display: none !important;
}

.hiw-stage {
  position: relative;
  width: min(var(--figma-hiw-max), calc(100% - 2 * var(--container-px)));
  max-width: var(--figma-hiw-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  min-height: 640px;
  overflow: visible;
}

/* Figma 460:915 — steps left; figure anchored to section right (same as FAQ) */
.hiw-layout {
  display: block;
  min-height: 640px;
  overflow: visible;
}

/* Warm yellow/orange glow behind character (right side) */
.mb-hiw-promo-bridge::after {
  content: '';
  position: absolute;
  right: -4%;
  top: 14%;
  width: min(46%, 520px);
  height: 82%;
  background: var(--hiw-glow-right);
  filter: blur(88px);
  border-radius: 48% 52% 44% 56%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.82;
}

.hiw-steps-col {
  position: relative;
  z-index: 4;
  min-width: 0;
}

/* Purple glow behind step cards (left only) */
.hiw-steps-col::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 26%;
  width: min(52%, 620px);
  height: 68%;
  background: var(--hiw-glow-left);
  filter: blur(72px);
  border-radius: 42% 58% 48% 52%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
}

#how-it-works::before {
  display: none;
}

.hiw-bg {
  display: none !important;
}

/* Figma 460:1130 — HIW glow asset (right/warm accent behind figure) */
#how-it-works .mb-shade--hiw {
  position: absolute;
  left: auto;
  right: -8%;
  top: 18%;
  bottom: auto;
  width: min(72vw, 980px);
  max-width: 980px;
  height: auto;
  aspect-ratio: 1517 / 1219;
  transform: rotate(-52deg);
  transform-origin: center center;
  filter: blur(72px);
  z-index: 1;
  opacity: 0.72;
  pointer-events: none;
}

#how-it-works .hiw-title {
  text-align: center;
  width: 100%;
}

.hiw-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--figma-hiw-steps);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.hiw-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--figma-hiw-steps);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .hiw-steps-col {
    margin-left: auto;
    margin-right: auto;
  }
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: var(--hiw-card-gap);
  width: 100%;
}

/* Figma: circle column + glass card column (not one pill) */
.hiw-step-row {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  min-height: var(--hiw-card-min-h);
  box-sizing: border-box;
}

.hiw-step-num {
  flex: 0 0 var(--hiw-num-size);
  width: var(--hiw-num-size);
  height: var(--hiw-num-size);
  border-radius: 50%;
  background: var(--hiw-num-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Anton, Impact, sans-serif;
  font-size: var(--hiw-num-font-size);
  font-weight: 400;
  line-height: 1;
  color: var(--hiw-num-color);
  -webkit-text-fill-color: var(--hiw-num-color);
  -webkit-text-stroke-width: var(--hiw-num-stroke);
  -webkit-text-stroke-color: #000;
  paint-order: stroke fill;
  text-shadow: var(--hiw-num-stroke-shadow);
  flex-shrink: 0;
  box-shadow: none;
  border: none;
}

.hiw-step-card {
  flex: 1 1 auto;
  min-width: 0;
  min-height: var(--hiw-card-min-h);
  padding: var(--hiw-card-pad-y) var(--hiw-card-pad-x);
  box-sizing: border-box;
  border-radius: var(--hiw-card-radius);
  background: rgba(7, 7, 8, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s var(--ease-out);
}

.hiw-step-row:hover .hiw-step-card,
.hiw-step-row.active .hiw-step-card {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(240, 171, 252, 0.45);
  box-shadow: 0 8px 32px rgba(147, 51, 234, 0.25);
}

body #how-it-works {
  --hiw-cycle-duration: 10000ms;
  --hiw-active-card: linear-gradient(135deg, rgba(129, 4, 203, 0.96) 0%, rgba(255, 0, 187, 0.92) 100%);
  --hiw-active-glow: rgba(219, 61, 255, 0.38);
}

body #how-it-works .hiw-step-row {
  transition: filter 0.3s ease, transform 0.3s ease;
}

body #how-it-works .hiw-step-card {
  position: relative;
  overflow: hidden;
}

body #how-it-works .hiw-step-row.hiw-step-current .hiw-step-card,
body #how-it-works .hiw-step-row.hiw-step-current:hover .hiw-step-card {
  background: var(--hiw-active-card) !important;
  border-color: rgba(255, 0, 187, 0.72) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 28px var(--hiw-active-glow) !important;
}

body #how-it-works .hiw-step-row.hiw-step-current .hiw-step-num {
  background: var(--hiw-num-gradient);
  box-shadow: none;
}

body #how-it-works .hiw-step-progress {
  height: 6px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

body #how-it-works .hiw-step-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f0abfc 0%, #ff00bb 48%, #8104cb 100%);
  box-shadow: 0 0 16px rgba(255, 0, 187, 0.56);
}

body #how-it-works .hiw-step-row.hiw-step-current.hiw-step-animating .hiw-step-progress-fill {
  animation: hiw-progress-fill var(--hiw-cycle-duration) linear forwards;
}

body #how-it-works .hiw-step-row:not(.hiw-step-current) .hiw-step-progress-fill {
  animation: none;
  width: 0;
}

@keyframes hiw-progress-fill {
  from { width: 0; }
  to { width: 100%; }
}

@media (min-width: 769px) {
  body #how-it-works .hiw-step-row:not(.hiw-step-current) .hiw-step-card,
  body #how-it-works .hiw-step-row:not(.hiw-step-current):hover .hiw-step-card {
    background: rgba(7, 7, 8, 0.42) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    box-shadow: none !important;
  }
}

@media (max-width: 768px) {
  body #how-it-works .hiw-step-row:not(.hiw-step-current) .hiw-step-card,
  body #how-it-works .hiw-step:not(.hiw-step-current) .hiw-step-card,
  body #how-it-works .hiw-step-row:first-child:not(.hiw-step-current) .hiw-step-card,
  body #how-it-works .hiw-step:first-child:not(.hiw-step-current) .hiw-step-card {
    background: rgba(7, 7, 8, 0.55) !important;
    border: 1px solid rgba(129, 4, 203, 0.45) !important;
    box-shadow: 0 0 16px rgba(219, 61, 255, 0.15) !important;
  }

  body #how-it-works .hiw-step-progress {
    height: 5px;
    margin-top: 12px;
  }
}

.hiw-step-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: var(--hiw-step-title-size);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke-width: var(--hiw-step-stroke);
  -webkit-text-stroke-color: #000;
  paint-order: stroke fill;
  text-shadow: var(--hiw-step-stroke-shadow);
  line-height: 1.08;
}

.hiw-step-text {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 500;
  color: #fff;
  -webkit-text-fill-color: #fff;
  line-height: 1.55;
  max-width: 744px;
}

/* GTA figure — width-driven scale; feet sit on bridge bottom (padding extends section down) */
.hiw-figure,
#how-it-works .hiw-figure,
#how-it-works img.hiw-figure {
  position: absolute;
  width: var(--hiw-figure-width);
  height: auto;
  min-height: 0;
  max-height: none;
  max-width: none;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  object-fit: contain;
  object-position: right bottom;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 16px 56px rgba(147, 51, 234, 0.45));
}

.mb-hiw-promo-bridge > .hiw-figure,
.mb-hiw-promo-bridge > .mb-gta-figure {
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: var(--hiw-figure-width);
  transform: none;
}

.hiw-figure--right {
  right: max(-64px, -4vw);
  left: auto;
}

.hiw-character {
  display: none !important;
}

/* Never show footer car, CTA float cards, legacy car JPG, or stray imgs in HIW */
/* Do NOT use [src*="boost"] — matches myboost-theme URLs and hides HIW figure + shade */
#how-it-works .footer-car,
#how-it-works .cta-floating-cards,
#how-it-works .cta-float-card,
#how-it-works img[src*="BoostCar"],
#how-it-works img[src*="Mercedes"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* ── TRUSTED BY PROMOTERS — see assets/css/promoters-hotfix.css ─ */

/* ── REVIEWS + FAQ — shared sunset panel (Figma Group 16) ─ */
.reviews-faq-panel {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: #000;
  margin-top: -36px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
}

.reviews-faq-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #000;
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  filter: brightness(0.95);
}

.reviews-faq-photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 22%,
    rgba(0, 0, 0, 0.03) 32%,
    rgba(0, 0, 0, 0) 48%,
    rgba(0, 0, 0, 0.06) 72%,
    rgba(0, 0, 0, 0.28) 92%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

.reviews-faq-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

/* Figma 460:769 — FAQ accent (1777×1428 @ -75.12°, panel offset 69px) */
.reviews-faq-panel .mb-shade--faq {
  position: absolute;
  left: max(-0.49%, calc(-7 * min(100vw, 1440px) / 1440));
  top: min(4.79vw, 69px);
  width: min(123.4vw, 1777px);
  max-width: 1777px;
  height: auto;
  aspect-ratio: 1777 / 1428;
  transform: rotate(-75.12deg);
  transform-origin: center center;
  mix-blend-mode: lighten;
  opacity: 0.82;
  filter: blur(34px);
  z-index: 1;
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-clip-path: inset(18% 0 4% 0);
  clip-path: inset(18% 0 4% 0);
}

.reviews-faq-panel #reviews .reviews-layout {
  text-align: center;
}

.reviews-faq-panel #reviews .reviews-heading,
.reviews-faq-panel #faq .faq-title,
.reviews-faq-panel .section-title.reviews-heading,
.reviews-faq-panel .section-title.faq-title {
  display: inline-block;
  width: auto;
  min-height: 0;
  background: none;
  position: relative;
  z-index: 3;
}

#reviews .reviews-bg,
#faq .faq-bg {
  display: none !important;
}

.reviews-faq-panel #reviews::before,
.reviews-faq-panel #reviews::after,
.reviews-faq-panel #faq::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

/* ── REVIEWS — see assets/css/reviews-hotfix.css (Figma 460:1012) ─ */

/* ── FAQ (Figma 460:1057 — 1200×468, accordion 800×328 @ y=140) ─ */
#faq {
  min-height: clamp(520px, 52vw, 780px);
  padding: var(--section-gap) var(--container-px) var(--section-py);
  margin-top: -2px;
  position: relative;
  z-index: 2;
  overflow: visible;
  background: transparent;
  box-sizing: border-box;
  clear: none;
}

#faq::after {
  display: none;
}

.faq-shell {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-character {
  position: absolute;
  bottom: 0;
  height: auto;
  z-index: 1;
  pointer-events: none;
  object-fit: contain;
}

.faq-character--left {
  left: max(-72px, -4.5vw);
  width: min(695px, 44vw);
  max-height: min(1043px, 78vh);
  object-position: left bottom;
}

.faq-character--right {
  right: max(-36px, -2vw);
  width: min(499px, 34vw);
  max-height: min(749px, 72vh);
  object-position: right bottom;
}

.faq-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

#faq .faq-title {
  margin-bottom: var(--section-title-gap);
  scroll-margin-top: calc(var(--mb-header-offset, 96px) + 16px);
}

#mb-cat-faq-title,
#mb-cat-faq .faq-title {
  scroll-margin-top: calc(var(--mb-header-offset, 96px) + 16px);
}

.faq-list {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  min-height: 328px;
}

.faq-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 56px;
  border: none;
  overflow: visible;
  box-sizing: border-box;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:not(.open) {
  min-height: 72px;
  align-items: center;
}

.faq-item.open {
  min-height: 0;
  align-items: flex-start;
  padding-bottom: 8px;
}

.faq-item-main {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 701px;
}

.faq-question {
  margin: 0;
  padding: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  -webkit-text-stroke: 3px #000;
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 #000;
  user-select: none;
  transition: color 0.2s;
}

.faq-item:not(.open) .faq-question {
  min-height: 0;
}

.faq-question:hover {
  color: rgba(255, 255, 255, 0.88);
}

.faq-toggle {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(180deg, #f0abfc 0%, #d946ef 38%, #9333ea 72%, #7c3aed 100%);
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.35);
  cursor: pointer;
  position: relative;
  z-index: 3;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.faq-item.open .faq-toggle {
  align-self: flex-start;
  margin-top: 8px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.faq-item:not(.open) .faq-toggle {
  align-self: center;
  margin-top: 0;
}

.faq-icon {
  display: block;
  width: 32px;
  height: 32px;
  position: relative;
  flex-shrink: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

.faq-item.open .faq-icon {
  transform: none;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  background: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center center;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.faq-icon::before {
  width: 22px;
  height: 3px;
}

.faq-icon::after {
  width: 3px;
  height: 22px;
}

.faq-item.open .faq-icon::after {
  opacity: 0;
}

.faq-item.open .faq-icon::before {
  background: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

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

.faq-answer-inner {
  margin-top: 20px;
  padding: 0 0 12px;
  max-width: 701px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

/* Smooth fade from reviews-faq-panel into final CTA */
.reviews-faq-panel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, #000 100%);
  z-index: 8;
  pointer-events: none;
}

/* ── FINAL CTA (Figma 460:1076) ─────────────────────────────── */
#final-cta {
  padding: var(--section-gap) var(--container-px) 0;
  position: relative;
  z-index: 2;
  overflow: visible;
  background: #000;
  box-sizing: border-box;
  clear: both;
}

.cta-frame {
  position: relative;
  max-width: 1440px;
  width: 100%;
  min-height: 744px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: visible;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.06);
}

#final-cta .cta-shell {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  min-height: 744px;
  padding: 80px var(--container-px) 96px;
  box-sizing: border-box;
  /* Let floating game cards receive clicks; re-enable on text + CTA only */
  pointer-events: none;
}

/* Figma Group 12 (460:1077) — blurred cityscape behind final CTA */
.cta-beach-bg {
  position: absolute;
  inset: 0;
  background-image: var(--mb-bg-cta);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: inherit;
  overflow: hidden;
  z-index: 0;
}

.cta-beach-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.cta-bg-glow {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1200px, 100vw);
  height: min(720px, 78vh);
  border-radius: inherit;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 60% at 72% 38%, rgba(56, 189, 248, 0.24) 0%, transparent 68%),
    radial-gradient(ellipse 52% 58% at 28% 42%, rgba(147, 51, 234, 0.58) 0%, transparent 68%),
    radial-gradient(ellipse 70% 52% at 50% 56%, rgba(236, 72, 153, 0.36) 0%, transparent 70%),
    radial-gradient(ellipse 88% 82% at 50% 50%, rgba(88, 28, 135, 0.32) 0%, transparent 78%);
  pointer-events: none;
  z-index: 1;
  filter: blur(1px);
}

.cta-floating-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.cta-float-card {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.08);
  pointer-events: auto;
  cursor: pointer;
  z-index: 5;
  text-decoration: none;
  color: inherit;
}

.cta-float-card img { width: 100%; height: 100%; object-fit: cover; }

.cta-float-card:nth-child(n+5) {
  display: none;
}

/* Figma Group 13 / 15 — floating game cards (Arc Raiders + GTA bottom corners) */
.cta-float-card:nth-child(1) {
  width: 168px;
  height: 224px;
  left: clamp(40px, 4vw, 64px);
  bottom: clamp(88px, 10vw, 112px);
  transform: rotate(-12deg);
}
.cta-float-card:nth-child(2) {
  width: 126px;
  height: 168px;
  left: 8%;
  top: 14%;
  transform: rotate(-7deg);
}
.cta-float-card:nth-child(3) {
  width: 182px;
  height: 243px;
  right: clamp(40px, 4vw, 64px);
  bottom: clamp(96px, 11vw, 120px);
  transform: rotate(11deg);
}
.cta-float-card:nth-child(4) {
  width: 138px;
  height: 184px;
  right: 9%;
  top: 10%;
  transform: rotate(7deg);
}

/* ── FOOTER (Figma: car + bar) ───────────────────────────────── */
.site-footer-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 97px;
  padding: 32px var(--container-px) 24px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0;
  clear: both;
  box-sizing: border-box;
}

.site-footer-glow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 200px;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 100% at 20% 0%, rgba(147, 51, 234, 0.35) 0%, transparent 70%);
}

@media (min-width: 769px) {
  .site-footer-glow {
    display: none;
  }

  .site-footer-section {
    background: #000;
  }
}

.footer-car {
  position: absolute;
  right: var(--container-px);
  left: auto;
  bottom: 0;
  transform: none;
  width: min(340px, 24vw);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  filter: drop-shadow(0 0 36px rgba(147, 51, 234, 0.40));
}

.cta-inner {
  position: relative;
  z-index: 6;
  pointer-events: auto;
  text-align: center;
  width: 100%;
  max-width: 630px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
  overflow: visible;
}

.cta-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.17;
  margin: 0;
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: clamp(3px, 0.3vw, 4px) #000;
  paint-order: stroke fill;
  text-shadow: 4px 4px 0 #000;
}

.cta-subtitle {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  margin: 0;
  max-width: 440px;
}

.btn-cta-final,
#final-cta .btn-primary.btn-cta-final {
  min-width: var(--mb-btn-min-width);
  min-height: var(--mb-btn-height);
  padding: 16px 32px;
  border-radius: var(--mb-radius-pill);
  font-size: var(--mb-body-16);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: var(--mb-grad);
  box-shadow: var(--mb-glow-button);
}

.site-footer-section .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1232px;
  margin: 0 auto;
  width: 100%;
}

.footer-logo {
  flex: 0 0 auto;
}

.site-footer-section .footer-logo.site-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex: 1 1 auto;
  justify-content: center;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
}

.footer-lang {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.footer-lang-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.footer-lang-link:hover,
.footer-lang-link.is-active {
  color: #fff;
}

.footer-lang-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  user-select: none;
}

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

.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.25s var(--ease-out);
  text-decoration: none;
}

.social-btn.telegram,
.social-btn.youtube,
.social-btn.discord {
  background: linear-gradient(135deg, #7c3aed 0%, #c026d3 100%);
  color: #fff;
}

.social-btn:hover { transform: translateY(-3px) scale(1.1); }

/* ── ANIMATION STATES (GSAP init states) ─────────────────────── */
.fade-up   { opacity: 0; transform: translateY(50px); }
.fade-in   { opacity: 0; }
.slide-left  { opacity: 0; transform: translateX(-60px); }
.slide-right { opacity: 0; transform: translateX(60px); }


/* Trustpilot — weiße Pille (Figma) */
.badge-trustpilot-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 999px;
  padding: 14px 28px 14px 22px;
  width: 100%;
  min-width: min(100%, 400px);
  max-width: 692px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
}
.tp-star-icon {
  color: #00b67a;
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}
.tp-label {
  font-family: 'Inter', 'Noto Sans', system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #191919;
  flex: 1;
  letter-spacing: -0.02em;
}
.tp-excellent {
  background: none;
  color: var(--why-excellent-red);
  -webkit-text-fill-color: var(--why-excellent-red);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0;
  border: none;
  font-family: var(--font-pricedown);
  font-style: normal;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
  -webkit-text-stroke: 1.5px #000;
  paint-order: stroke fill;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
  box-shadow: none;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-py: 48px;
    --section-gap: clamp(56px, 8vw, 96px);
    --container-px: 28px;
  }

  #best-sellers .products-grid {
    min-height: 0;
    padding: 0 16px 48px;
  }
  #best-sellers .products-grid .product-card {
    width: 170px;
    margin-left: -36px;
  }

  #best-sellers .products-grid .product-card:nth-child(1) { z-index: 5; transform: rotate(2.5deg); }
  #best-sellers .products-grid .product-card:nth-child(2) { z-index: 4; transform: rotate(3.5deg); }
  #best-sellers .products-grid .product-card:nth-child(3) { z-index: 3; transform: rotate(4.5deg); }
  #best-sellers .products-grid .product-card:nth-child(4) { z-index: 2; transform: rotate(5.5deg); }
  #best-sellers .products-grid .product-card:nth-child(5),
  #best-sellers .products-grid .product-card:nth-child(n+6) { z-index: 1; transform: rotate(6.5deg); }
  .hiw-character {
    width: min(420px, 45vw);
    max-width: 420px;
    right: -12px;
    transform: translateY(-42%);
  }
  .faq-character { max-width: min(620px, 48vw); }
  .why-choose-inner {
    gap: clamp(16px, 2.5vw, 36px);
  }
  .why-rating-number {
    font-size: clamp(96px, 12vw, 140px);
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 40px;
    --section-gap: clamp(64px, 14vw, 96px);
    --container-px: 20px;
  }

  #site-header {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
  }

  .header-inner {
    padding: 16px 20px;
  }

  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 12px);
    left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px 24px;
    gap: 18px;
  }
  .site-nav.open .nav-search {
    display: block;
  }
  .site-nav.open .nav-search-result {
    font-size: 14px;
  }

  .site-nav.open .nav-games {
    width: 100%;
  }

  .site-nav.open .nav-games__trigger {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav.open .nav-games__menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    padding: 6px 0 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.28s var(--ease-out), visibility 0.22s;
  }

  .site-nav.open .nav-games.is-open .nav-games__menu {
    visibility: visible;
    max-height: 480px;
    pointer-events: auto;
  }

  .site-nav.open .nav-games__item {
    padding: 12px 4px;
  }

  .menu-toggle { display: flex; }

  #hero,
  .hero-stage {
    min-height: 640px;
  }

  .hero-stage {
    padding-top: 72px;
  }

  .hero-composition {
    min-height: 520px;
    padding: 0 12px;
  }

  .hero-stack {
    position: relative;
    display: block;
    --hero-m-cta-h: clamp(168px, 30vh, 204px);
    --hero-m-char-w: min(64vw, 240px);
    --hero-m-car-w: min(112px, 29vw);
    --hero-m-crates-w: min(96px, 25vw);
    --hero-m-deco-sit: -16px;
    --hero-m-car-overlap: 88px;
    --hero-m-crates-overlap: 52px;
    --hero-m-car-optical-nudge: calc(var(--hero-m-car-w) * 147 / 274 - var(--hero-m-crates-w) * 30 / 262);
    --hero-m-figures-bottom: var(--hero-m-cta-h);
    --hero-m-title-top: clamp(56px, 10vh, 88px);
    min-height: calc(var(--hero-m-cta-h) + 320px);
    padding: 0 10px var(--hero-m-cta-h);
    overflow: visible;
  }

  .hero-title {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--hero-m-title-top);
    margin: 0 auto;
    transform: none;
    font-family: 'Pricedown Bl', Pricedown, 'Bowlby One', Impact, sans-serif;
    font-size: clamp(28px, 8vw, 34px);
    font-weight: 400;
    line-height: 1.05;
    color: #fff;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: var(--hero-title-stroke-mobile);
    -webkit-text-stroke-color: #000;
    text-shadow: var(--hero-title-stroke-shadow-mobile);
    paint-order: stroke fill;
    max-width: calc(100% - 8px);
    z-index: 5;
  }

  .hero-title-line { white-space: normal; }

  .hero-figure-row {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--hero-m-figures-bottom, var(--hero-m-cta-h, clamp(168px, 30vh, 204px)));
    width: 100%;
    max-width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    transform: none;
    overflow: visible;
    pointer-events: none;
  }

  .hero-character {
    left: auto;
    right: auto;
    width: auto;
    max-width: none;
    bottom: auto;
    margin: 0;
    transform: none;
  }

  .hero-figure-row .hero-character {
    position: absolute;
    flex: none;
    align-self: auto;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    z-index: 6;
    display: block;
    width: var(--hero-m-char-w, min(64vw, 240px));
    height: auto;
    max-width: var(--hero-m-char-w, min(64vw, 240px));
    max-height: min(44vh, 300px);
    margin: 0 auto;
    object-fit: contain;
    object-position: center bottom;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
  }

  .hero-figure-row .hero-deco {
    position: absolute;
    top: auto;
    display: block;
    flex: none;
    align-self: auto;
    object-fit: contain;
    object-position: center bottom;
    pointer-events: none;
    z-index: 4;
  }

  .hero-figure-row .hero-deco-car {
    left: auto;
    right: calc(50% + (var(--hero-m-char-w, min(64vw, 240px)) / 2) - var(--hero-m-car-overlap, 88px));
    bottom: calc(var(--hero-m-deco-sit, -16px) - var(--hero-m-car-optical-nudge));
    width: var(--hero-m-car-w, min(112px, 29vw));
    height: auto;
    margin: 0;
    transform: rotate(4.75deg);
    transform-origin: center bottom;
  }

  .hero-figure-row .hero-deco-crates {
    left: calc(50% + (var(--hero-m-char-w, min(64vw, 240px)) / 2) - var(--hero-m-crates-overlap, 52px));
    right: auto;
    bottom: var(--hero-m-deco-sit, -16px);
    width: var(--hero-m-crates-w, min(96px, 25vw));
    margin: 0;
    transform: none;
  }

  .hero-figures {
    display: none;
  }

  .hero-cta-row {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    flex: none;
    z-index: 8;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin: 0;
    padding: 12px;
    background: #fff !important;
    border: none;
    border-left: 4px solid #070708;
    border-top: 4px solid #070708;
    border-radius: 24px;
    box-shadow:
      0 10px 0 0 #000,
      0 16px 32px rgba(0, 0, 0, 0.22);
  }
  .hiw-step-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hiw-step-num {
    align-self: flex-start;
  }

  .hiw-layout {
    min-height: auto;
  }

  .hiw-inner {
    padding-right: 0;
  }

  #how-it-works .mb-shade--hiw {
    display: none;
  }

  #how-it-works .hiw-figure,
  #how-it-works .hiw-figure--right {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(320px, 88vw);
    max-width: 320px;
    max-height: none;
    margin: 24px auto 0;
    object-position: center bottom;
    display: block;
  }

  #choose-game {
    min-height: auto;
    padding-top: 120px;
  }

  .choose-game-carousel,
  .choose-game-swiper {
    height: 620px;
    max-height: 620px;
    --figma-cg-active-w: 400px;
    --figma-cg-active-h: 544px;
    --figma-cg-side-w: 280px;
    --figma-cg-side-h: 380px;
  }

  .choose-game-swiper .swiper-slide {
    width: var(--figma-cg-active-w) !important;
    height: var(--figma-cg-active-h) !important;
    max-width: var(--figma-cg-active-w) !important;
    max-height: var(--figma-cg-active-h) !important;
  }

  .choose-game-swiper .game-slide-card {
    width: var(--figma-cg-side-w) !important;
    height: var(--figma-cg-side-h) !important;
    max-width: var(--figma-cg-side-w) !important;
    max-height: var(--figma-cg-side-h) !important;
  }

  .choose-game-swiper .swiper-slide-active .game-slide-card {
    width: var(--figma-cg-active-w) !important;
    height: var(--figma-cg-active-h) !important;
    max-width: var(--figma-cg-active-w) !important;
    max-height: var(--figma-cg-active-h) !important;
  }

  .choose-game-swiper .game-slide-card img {
    max-width: 100% !important;
    max-height: 100% !important;
  }
  .mb-shade--cg,
  #choose-game .mb-shade--cg,
  .cg-bs-panel > .mb-shade--cg {
    left: 9.03%;
    top: min(7.708vw, 111px);
    width: min(98.33vw, 1416px);
    transform: none;
    filter: blur(60px);
    opacity: 0.85;
  }

  .cg-bs-panel > .mb-shade--bs-left {
    width: min(63.61vw, 916px);
    filter: blur(56px);
    opacity: 0.78;
  }

  .why-hiw-panel > .mb-shade--why {
    opacity: 0.72;
    filter: blur(56px);
  }

  #best-sellers .products-grid {
    min-height: 0;
    padding: 0 12px 40px;
  }
  #best-sellers .products-grid .product-card {
    width: 130px;
    margin-left: -28px;
    border-radius: 18px;
    border: var(--mb-cover-border);
    border-color: var(--mb-cover-border-color);
  }
  #best-sellers .products-grid .product-card:nth-child(1) { z-index: 5; transform: rotate(2deg); }
  #best-sellers .products-grid .product-card:nth-child(2) { z-index: 4; transform: rotate(3deg); }
  #best-sellers .products-grid .product-card:nth-child(3) { z-index: 3; transform: rotate(4deg); }
  #best-sellers .products-grid .product-card:nth-child(4) { z-index: 2; transform: rotate(4.5deg); }
  #best-sellers .products-grid .product-card:nth-child(5),
  #best-sellers .products-grid .product-card:nth-child(n+6) { z-index: 1; transform: rotate(5deg); }
  #best-sellers .products-grid .product-card-name {
    font-size: 9px;
    padding: 6px 12px;
  }

  .why-choose-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .why-rating-block,
  .why-rating,
  .why-stats-block,
  .why-stats {
    width: auto;
    max-width: 100%;
    flex: 0 0 auto;
  }
  .why-rating-tilt {
    transform: rotate(-6deg);
    transform-origin: center center;
  }
  .why-stats-block,
  .why-stats {
    align-items: center;
    gap: 24px;
  }
  .why-stats-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 36px;
  }
  .why-trustpilot,
  .why-badges {
    justify-content: center;
  }
  #why-choose .badge-trustpilot-pill {
    max-width: 100%;
  }
  .site-footer-section { padding-top: 32px; }
  .why-rating-number {
    font-size: clamp(72px, 18vw, 96px);
  }

  #why-choose .why-stat-number,
  .why-stat-number {
    font-size: clamp(34px, 8vw, 44px);
  }

  .hiw-inner {
    max-width: 100%;
    min-height: auto;
  }

  .hiw-stage { min-height: auto; }

  .hiw-step-card {
    padding: 24px 20px;
  }

  .faq-character--left {
    left: -18vw;
    opacity: 0.55;
  }

  .faq-character--right {
    right: -12vw;
    opacity: 0.55;
  }

  .cg-bs-panel > .mb-shade--bs-left {
    left: max(-14.65%, calc(-211 * min(100vw, 1440px) / 1440));
    top: min(91.25vw, 1314px);
    width: min(63.61vw, 916px);
    transform: none;
  }

  .why-hiw-panel > .mb-shade--why {
    left: max(-42.36%, calc(-610 * min(100vw, 1440px) / 1440));
    top: min(47.29vw, 681px);
    width: min(191.67vw, 2760px);
    opacity: 0.75;
    filter: blur(64px);
  }

  .mb-shade--hiw,
  #how-it-works .mb-shade--hiw {
    left: auto;
    right: -8%;
    top: 18%;
    width: min(72vw, 980px);
    transform: rotate(-52deg);
    opacity: 0.72;
  }

  .reviews-faq-panel .mb-shade--faq {
    left: max(-0.49%, calc(-7 * min(100vw, 1440px) / 1440));
    top: min(4.79vw, 69px);
    width: min(123.4vw, 1777px);
    transform: rotate(-75.12deg);
    mix-blend-mode: lighten;
    opacity: 0.55;
    filter: blur(32px);
    -webkit-clip-path: inset(32% 0 10% 0);
    clip-path: inset(32% 0 10% 0);
  }

  .footer-inner { flex-direction: column; text-align: center; }

  .cta-floating-cards { display: none; }
  .footer-car { width: min(240px, 60vw); }
  .bs-header { min-height: 72px; padding-top: 2px; }
  .bs-deco-youtube { width: 44px; height: 44px; left: calc(50% - 168px); top: 10px; }
  .bs-deco-gamepad { width: 68px; height: 68px; left: calc(50% + 124px); top: 2px; }

}

@media (max-width: 639px) {
}

@media (max-width: 480px) {
  #best-sellers .products-grid {
    min-height: 0;
    padding: 0 8px 36px;
  }
  #best-sellers .products-grid .product-card {
    width: 108px;
    margin-left: -24px;
    border-radius: 16px;
    border: var(--mb-cover-border);
    border-color: var(--mb-cover-border-color);
  }
  #best-sellers .products-grid .product-card:nth-child(1) { z-index: 5; transform: rotate(1.5deg); }
  #best-sellers .products-grid .product-card:nth-child(2) { z-index: 4; transform: rotate(2.5deg); }
  #best-sellers .products-grid .product-card:nth-child(3) { z-index: 3; transform: rotate(3deg); }
  #best-sellers .products-grid .product-card:nth-child(4) { z-index: 2; transform: rotate(3.5deg); }
  #best-sellers .products-grid .product-card:nth-child(5),
  #best-sellers .products-grid .product-card:nth-child(n+6) { z-index: 1; transform: rotate(4deg); }
  #best-sellers .products-grid .product-card-name {
    font-size: 8px;
    padding: 5px 10px;
    letter-spacing: 0.06em;
  }
  .hero-cta-row {
    flex-direction: column;
    padding: 16px 20px;
    border-radius: 24px;
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    gap: 16px;
    box-shadow:
      0 8px 0 0 #000,
      0 12px 24px rgba(0, 0, 0, 0.25);
  }
  .hero-cta-text { text-align: center; max-width: none; }
}

/* ──────────────────────────────────────────────────────────────
   QA LOOP — canonical overrides synced with the wp_footer block.
   Desktop hero rules scoped to min-width:769px only.
   ────────────────────────────────────────────────────────────── */
@media (min-width: 769px) {
  body #hero { display: block !important; align-items: initial !important; overflow: visible !important; min-height: 800px !important; }
  body #hero .hero-stage { width: 100% !important; flex: 1 1 auto !important; }
  body .hero-stack, body .hero-composition { width: 100% !important; }
  body .hero-cta-row { width: min(680px, calc(100% - 32px)) !important; max-width: 680px !important; min-width: 280px !important; }
  body .hero-cta-text { color: #070708 !important; -webkit-text-fill-color: #070708 !important; text-shadow: none !important; font-size: 13px !important; font-weight: 600 !important; line-height: 1.45 !important; max-width: 386px !important; flex: 1 1 auto !important; min-width: 0 !important; text-align: left !important; }
}

body .filter-tab.active,
body #choose-game .filter-tab.active,
body #best-sellers .filter-tab.active,
body .filter-tabs .filter-tab.active {
  background: #fff !important;
  color: #070708 !important;
  -webkit-text-fill-color: #070708 !important;
  border-color: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body #best-sellers { background: transparent !important; z-index: 2 !important; position: relative !important; }
body .cg-bs-panel { background: #000 !important; }
@media (min-width: 769px) {
  body .site-footer-section .footer-car { display: none !important; visibility: hidden !important; opacity: 0 !important; }
  body .site-footer-glow { display: none !important; background: none !important; }
  body .site-footer-section { background: #000 !important; }
}
body #why-choose .why-rating-number {
  color: #c6e4ff !important;
  -webkit-text-fill-color: #c6e4ff !important;
  background: none !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  font-family: var(--font-pricedown) !important;
  font-weight: 400 !important;
}
body #why-choose .why-stat-number,
body #why-choose .why-stat-number.why-stat-locked::before {
  color: #c6e4ff !important;
  -webkit-text-fill-color: #c6e4ff !important;
  background: none !important;
  text-shadow: none !important;
  font-family: var(--font-pricedown) !important;
  font-weight: 400 !important;
}
body #why-choose .why-stat-label,
body #why-choose .why-rating-tag span,
body #why-choose .why-rating-label span { color: #fff !important; -webkit-text-fill-color: #fff !important; }

body .hiw-step-row,
body .review-card,
body .faq-item,
body .promoter-card { opacity: 1 !important; visibility: visible !important; }
body .hiw-step-title,
body .hiw-step-text,
body .review-name,
body .review-text,
body .faq-question { color: #fff !important; -webkit-text-fill-color: #fff !important; }
body .hiw-step-text { color: rgba(255, 255, 255, 0.92) !important; -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important; }
body .faq-answer-inner { color: rgba(255, 255, 255, 0.85) !important; -webkit-text-fill-color: rgba(255, 255, 255, 0.85) !important; }

body #final-cta .cta-title { line-height: 0.95 !important; letter-spacing: -0.01em !important; }

