:root {
  --primary: #12b76a;
  --secondary: #facc15;
  --accent: #ef4444;
  --ink: #101828;
  --muted: #667085;
  --surface: #ffffff;
  --line: rgba(16, 24, 40, 0.12);
  --shadow: 0 18px 60px rgba(16, 24, 40, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #eef7f1;
  overflow-x: hidden;
}

body.theme-neon,
body.theme-fantasy,
body.theme-gold {
  background: #090516;
}

button,
input,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 18px clamp(14px, 3vw, 40px) 96px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(140deg, rgba(18, 183, 106, 0.22), rgba(250, 204, 21, 0.24)),
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.88), transparent 28%),
    #e9f8ef;
}

body.theme-neon .hero__bg {
  background:
    radial-gradient(circle at 22% 18%, rgba(236, 72, 153, 0.28), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(139, 92, 246, 0.36), transparent 30%),
    linear-gradient(145deg, #130522 0%, #25063d 48%, #07020d 100%);
}

body.has-image-bg .hero__bg {
  background:
    linear-gradient(90deg, rgba(5, 3, 15, 0.82), rgba(5, 3, 15, 0.28) 45%, rgba(5, 3, 15, 0.5)),
    var(--hero-bg-desktop);
  background-position: center;
  background-size: cover;
}

body.kit-mb .hero__bg {
  background:
    linear-gradient(180deg, rgba(2, 6, 28, 0.12) 0%, rgba(2, 6, 28, 0.08) 45%, rgba(2, 6, 28, 0.86) 100%),
    var(--hero-bg-desktop);
  background-position: center top;
  background-size: cover;
}

body.theme-fantasy .hero__bg {
  background:
    radial-gradient(circle at 75% 20%, rgba(34, 211, 238, 0.3), transparent 28%),
    radial-gradient(circle at 16% 18%, rgba(249, 115, 22, 0.22), transparent 24%),
    linear-gradient(145deg, #08111f 0%, #0f2a50 48%, #020713 100%);
}

body.theme-gold .hero__bg {
  background:
    radial-gradient(circle at 78% 16%, rgba(250, 204, 21, 0.38), transparent 28%),
    radial-gradient(circle at 22% 24%, rgba(22, 101, 52, 0.56), transparent 31%),
    linear-gradient(145deg, #07140a 0%, #123a1c 52%, #050906 100%);
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: auto -8% -22% -8%;
  height: 46%;
  background: var(--primary);
  clip-path: polygon(0 38%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.92;
}

body.theme-neon .hero__bg::before,
body.theme-fantasy .hero__bg::before,
body.theme-gold .hero__bg::before {
  opacity: 0.18;
}

body.has-image-bg .hero__bg::before {
  opacity: 0.08;
}

body.theme-neon .hero::after,
body.theme-fantasy .hero::after,
body.theme-gold .hero::after {
  content: "";
  position: absolute;
  inset: 70px 4% auto auto;
  z-index: -1;
  width: min(38vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.45;
  filter: blur(1px);
  background:
    radial-gradient(circle at 34% 30%, var(--secondary) 0 0.65rem, transparent 0.7rem),
    radial-gradient(circle at 64% 22%, #ffffff 0 0.45rem, transparent 0.5rem),
    radial-gradient(circle at 70% 62%, var(--accent) 0 0.75rem, transparent 0.8rem),
    radial-gradient(circle at 22% 70%, var(--primary) 0 0.65rem, transparent 0.7rem);
}

body.has-image-bg .hero::after {
  display: none;
}

body.has-ui-assets .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  background: var(--sparkle-overlay-image) center / cover no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

body.has-drive-kit .hero::before {
  content: "";
  position: absolute;
  left: max(18px, 4vw);
  bottom: 84px;
  z-index: 0;
  width: clamp(110px, 15vw, 190px);
  aspect-ratio: 250 / 445;
  background: var(--slot-machine-image) center / contain no-repeat;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

body.kit-mb .hero::before {
  display: none;
}

body.has-drive-kit .topbar,
body.has-drive-kit .hero__grid {
  position: relative;
  z-index: 2;
}

body.has-drive-kit .proof-toast,
body.has-drive-kit .sticky-whatsapp {
  z-index: 32;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto 22px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 900;
}

body.theme-neon .brand-mark,
body.theme-fantasy .brand-mark,
body.theme-gold .brand-mark {
  color: #111827;
  background: var(--secondary);
  box-shadow: 0 0 24px rgba(250, 204, 21, 0.32);
}

.brand-name,
.brand-subtitle {
  margin: 0;
}

.brand-name {
  font-size: 16px;
  font-weight: 900;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 13px;
}

body.theme-neon .brand-name,
body.theme-neon .brand-subtitle,
body.theme-fantasy .brand-name,
body.theme-fantasy .brand-subtitle,
body.theme-gold .brand-name,
body.theme-gold .brand-subtitle {
  color: #ffffff;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1fr) minmax(280px, 0.86fr);
  gap: 20px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-copy {
  padding: 12px 0;
}

.hero-title-art {
  display: none;
}

body.has-hero-title-art .hero-copy {
  display: grid;
  justify-items: start;
  padding: 0;
}

body.has-hero-title-art .hero-title-art {
  display: block;
  width: min(100%, 390px);
  aspect-ratio: 922 / 940;
  background: var(--hero-title-image) center / contain no-repeat;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.48));
}

body.has-hero-title-art .hero-copy .eyebrow,
body.has-hero-title-art .hero-copy h1,
body.has-hero-title-art .hero-copy .highlight,
body.has-hero-title-art .hero-copy .subheadline {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body.has-hero-title-art .hero-copy .jackpot {
  margin-top: -6px;
}

.eyebrow,
.chance {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}

.highlight {
  display: inline-block;
  margin: 14px 0 0;
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--secondary);
  color: #111827;
  font-size: 18px;
  font-weight: 950;
}

.subheadline {
  max-width: 36ch;
  margin: 14px 0 0;
  color: #344054;
  font-size: 17px;
  line-height: 1.45;
}

body.theme-neon .subheadline,
body.theme-fantasy .subheadline,
body.theme-gold .subheadline {
  color: rgba(255, 255, 255, 0.78);
}

.jackpot {
  width: min(100%, 350px);
  margin-top: 18px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

body.has-ui-assets .jackpot {
  display: grid;
  min-height: 116px;
  place-content: center;
  border: 0;
  background: var(--jackpot-banner-image) center / 100% 100% no-repeat;
  box-shadow: none;
  text-align: center;
  padding: 24px 56px 22px;
}

body.kit-mb .jackpot {
  min-height: 92px;
  width: min(100%, 360px);
  padding: 21px 42px 15px;
  background: var(--jackpot-banner-image) center / contain no-repeat;
}

body.has-drive-kit .jackpot {
  width: min(100%, 390px);
  margin-top: 12px;
}

body.theme-neon .jackpot,
body.theme-fantasy .jackpot,
body.theme-gold .jackpot,
body.theme-neon .game-panel,
body.theme-fantasy .game-panel,
body.theme-gold .game-panel,
body.theme-neon .lead-panel,
body.theme-fantasy .lead-panel,
body.theme-gold .lead-panel {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.jackpot span,
.jackpot strong {
  display: block;
}

.jackpot span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

body.has-ui-assets .jackpot span {
  color: #ffe477;
  font-size: 12px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95);
}

body.has-ui-assets .jackpot strong {
  color: #ffffff;
  font-size: clamp(27px, 3.5vw, 38px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 0 18px rgba(250, 204, 21, 0.8);
}

body.theme-neon .jackpot span,
body.theme-fantasy .jackpot span,
body.theme-gold .jackpot span,
body.theme-neon label,
body.theme-fantasy label,
body.theme-gold label,
body.theme-neon .modal p,
body.theme-fantasy .modal p,
body.theme-gold .modal p {
  color: rgba(255, 255, 255, 0.72);
}

.jackpot strong {
  margin-top: 2px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.game-panel,
.lead-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.game-panel {
  display: grid;
  justify-items: center;
  padding: clamp(16px, 3vw, 28px);
}

.wheel-wrap {
  position: relative;
  width: min(78vw, 380px);
  aspect-ratio: 1;
  margin: 2px auto 18px;
}

.wheel-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-right: 17px solid transparent;
  border-left: 17px solid transparent;
  border-top: 36px solid var(--accent);
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.22));
}

.wheel {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 12px solid #ffffff;
  border-radius: 50%;
  background: conic-gradient(
    var(--secondary) 0deg 60deg,
    #ffffff 60deg 120deg,
    var(--primary) 120deg 180deg,
    #ffffff 180deg 240deg,
    #ff8a00 240deg 300deg,
    #ffffff 300deg 360deg
  );
  box-shadow: inset 0 0 0 3px rgba(16, 24, 40, 0.12), 0 20px 40px rgba(16, 24, 40, 0.22);
  transition: transform 3.4s cubic-bezier(0.15, 0.84, 0.18, 1);
}

body.has-spin-asset .wheel {
  border: 0;
  background: var(--spin-wheel-image) center / contain no-repeat;
  box-shadow: none;
  filter: drop-shadow(0 0 22px rgba(250, 204, 21, 0.45)) drop-shadow(0 26px 30px rgba(0, 0, 0, 0.42));
}

body.has-wheel-frame .wheel-wrap::after {
  content: "";
  position: absolute;
  inset: -4% -3% -6%;
  z-index: 2;
  background: var(--wheel-frame-image) center / contain no-repeat;
  filter: drop-shadow(0 0 16px rgba(250, 204, 21, 0.45));
  pointer-events: none;
}

body.kit-mb .wheel-wrap {
  width: min(100%, 430px);
  aspect-ratio: 1350 / 1165;
  margin-top: 4px;
  margin-bottom: 12px;
}

body.kit-mb .wheel {
  inset: auto;
  left: 18.37%;
  top: 12.2%;
  width: 63.7%;
  height: auto;
  aspect-ratio: 1;
  z-index: 1;
  filter: none;
  transform-origin: 50% 50%;
}

body.kit-mb.has-wheel-frame .wheel-wrap::after {
  inset: 0;
  z-index: 3;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.52));
}

body.kit-mb .wheel-pointer,
body.kit-mb .wheel-center {
  display: none;
}

body.has-spin-asset .wheel span,
body.has-spin-asset .wheel-pointer {
  display: none;
}

body.has-drive-kit .wheel-pointer {
  display: block;
  top: -36px;
  width: 74px;
  height: 122px;
  border: 0;
  background: var(--pointer-image) center / contain no-repeat;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.55));
}

body.has-spin-asset .wheel-center {
  width: 78px;
  height: 78px;
  background: var(--knob-image) center / contain no-repeat;
  color: #3b1600;
  border: 0;
  box-shadow: none;
  font-size: 0;
}

body.has-spin-asset .wheel-center::after {
  content: "SPIN";
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #3b1600;
  font-size: 13px;
  font-weight: 950;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
}

body.has-drive-kit .game-panel::before,
body.has-drive-kit .game-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

body.has-drive-kit .game-panel::before {
  left: 16px;
  bottom: 16px;
  width: 64px;
  height: 72px;
  background-image: var(--gem-blue-image);
}

body.has-drive-kit .game-panel::after {
  right: 18px;
  top: 20px;
  width: 66px;
  height: 70px;
  background-image: var(--gem-red-image);
}

body.has-drive-kit .game-panel > * {
  position: relative;
  z-index: 1;
}

body.theme-neon .wheel {
  background: conic-gradient(#facc15 0deg 60deg, #7c3aed 60deg 120deg, #ec4899 120deg 180deg, #111827 180deg 240deg, #22d3ee 240deg 300deg, #ffffff 300deg 360deg);
  box-shadow: 0 0 0 8px rgba(236, 72, 153, 0.18), 0 0 60px rgba(236, 72, 153, 0.45);
}

body.theme-fantasy .wheel {
  background: conic-gradient(#22d3ee 0deg 60deg, #2563eb 60deg 120deg, #f97316 120deg 180deg, #ffffff 180deg 240deg, #7dd3fc 240deg 300deg, #0f172a 300deg 360deg);
  box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.16), 0 0 62px rgba(34, 211, 238, 0.3);
}

body.theme-gold .wheel {
  background: conic-gradient(#facc15 0deg 60deg, #166534 60deg 120deg, #fde68a 120deg 180deg, #dc2626 180deg 240deg, #22c55e 240deg 300deg, #fff7ed 300deg 360deg);
  box-shadow: 0 0 0 8px rgba(250, 204, 21, 0.2), 0 0 62px rgba(250, 204, 21, 0.34);
}

body.has-spin-asset .wheel {
  background: var(--spin-wheel-image) center / contain no-repeat;
  box-shadow: none;
}

.wheel span {
  position: absolute;
  width: 86px;
  margin-left: -43px;
  left: 50%;
  top: 50%;
  color: #111827;
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  transform-origin: 43px 0;
}

.wheel span:nth-child(1) { transform: rotate(28deg) translateY(-132px) rotate(-28deg); }
.wheel span:nth-child(2) { transform: rotate(88deg) translateY(-132px) rotate(-88deg); }
.wheel span:nth-child(3) { transform: rotate(148deg) translateY(-132px) rotate(-148deg); }
.wheel span:nth-child(4) { transform: rotate(208deg) translateY(-132px) rotate(-208deg); }
.wheel span:nth-child(5) { transform: rotate(268deg) translateY(-132px) rotate(-268deg); }
.wheel span:nth-child(6) { transform: rotate(328deg) translateY(-132px) rotate(-328deg); }

.wheel-center {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  width: 94px;
  height: 94px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.26);
  font-weight: 950;
  cursor: pointer;
}

.primary-btn,
.submit-btn,
.ghost-btn {
  min-height: 50px;
  border-radius: 8px;
  font-weight: 950;
  cursor: pointer;
}

.primary-btn,
.submit-btn {
  border: 0;
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(239, 68, 68, 0.26);
}

body.has-ui-assets .primary-btn,
body.has-ui-assets .submit-btn {
  border: 0;
  color: #fff7d6;
  background:
    linear-gradient(rgba(30, 8, 0, 0.02), rgba(30, 8, 0, 0.02)),
    var(--spin-button-image) center / 100% 100% no-repeat;
  box-shadow: none;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85), 0 0 10px rgba(250, 204, 21, 0.6);
}

body.kit-mb .primary-btn,
body.kit-mb .submit-btn {
  color: #ffffff;
  background: var(--spin-button-image) center / 100% 100% no-repeat;
  text-shadow: 0 2px 5px rgba(115, 28, 0, 0.75);
}

body.kit-mb .primary-btn {
  color: #fff8d7;
  border: 0;
  background: var(--spin-button-image) center / 100% 100% no-repeat;
  box-shadow: none;
  text-shadow: 0 3px 6px rgba(65, 0, 0, 0.88), 0 0 12px rgba(255, 255, 255, 0.28);
  width: min(100%, 300px);
  height: 82px;
  min-height: 82px;
  margin-top: 0;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
}

body.kit-mb .submit-btn {
  color: #ffffff;
  background: var(--submit-button-image, var(--spin-button-image)) center / 100% 100% no-repeat;
  box-shadow: none;
  min-height: 64px;
  text-shadow: 0 2px 5px rgba(115, 28, 0, 0.75), 0 0 10px rgba(255, 255, 255, 0.2);
}

body.kit-mb .game-panel {
  overflow: visible;
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(9, 25, 78, 0.56), rgba(2, 8, 33, 0.8));
}

body.kit-mb .game-panel::before,
body.kit-mb .game-panel::after {
  display: none;
}

body.kit-mb .chance {
  color: #facc15;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.primary-btn {
  width: min(100%, 260px);
  padding: 0 18px;
}

.lead-panel {
  padding: 18px;
}

.lead-panel h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

form {
  display: grid;
  gap: 11px;
}

label {
  display: grid;
  gap: 6px;
  color: #344054;
  font-size: 13px;
  font-weight: 850;
}

input,
select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #ffffff;
  color: var(--ink);
}

body.theme-neon input,
body.theme-neon select,
body.theme-fantasy input,
body.theme-fantasy select,
body.theme-gold input,
body.theme-gold select {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.submit-btn {
  width: 100%;
  padding: 0 16px;
}

.submit-btn:disabled,
.primary-btn:disabled,
.wheel-center:disabled {
  cursor: progress;
  opacity: 0.68;
}

.status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.proof-toast {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 30;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: min(340px, calc(100vw - 92px));
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(16, 24, 40, 0.2);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

body.has-ui-assets .proof-toast {
  min-height: 78px;
  border: 0;
  background: var(--proof-card-image) center / 100% 100% no-repeat;
  box-shadow: none;
  color: #fff7d6;
  padding: 18px 20px 14px 56px;
}

body.has-ui-assets .proof-dot {
  display: none;
}

body.has-ui-assets .proof-toast p {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95);
}

body.theme-neon .proof-toast,
body.theme-fantasy .proof-toast,
body.theme-gold .proof-toast {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 20, 0.9);
  color: #ffffff;
}

.proof-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.proof-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--primary);
}

.proof-toast p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.sticky-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 31;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.25);
  font-size: 28px;
  text-decoration: none;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.62);
}

.modal__panel {
  position: relative;
  width: min(420px, 100%);
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
}

body.has-ui-assets .modal__panel {
  min-height: 520px;
  border: 0;
  background: var(--win-popup-image) center / contain no-repeat;
  box-shadow: none;
  display: grid;
  align-content: center;
  padding: 140px 48px 76px;
}

body.kit-mb .modal__panel {
  background: var(--win-popup-image) center / contain no-repeat;
}

body.has-ui-assets .modal__badge {
  display: none;
}

body.has-ui-assets .modal h2,
body.has-ui-assets .modal p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}

body.theme-neon .modal__panel,
body.theme-fantasy .modal__panel,
body.theme-gold .modal__panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111827;
  color: #ffffff;
}

body.theme-neon .ghost-btn,
body.theme-fantasy .ghost-btn,
body.theme-gold .ghost-btn {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.modal__badge {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--primary);
  font-size: 32px;
  font-weight: 950;
}

.modal h2 {
  margin: 0 0 8px;
}

.modal p {
  margin: 0 0 18px;
  color: var(--muted);
}

.ghost-btn {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero {
    padding-bottom: 100px;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .hero-copy {
    grid-column: 1 / -1;
  }

  body.has-hero-title-art .hero-copy {
    justify-items: center;
  }

  body.has-hero-title-art .hero-title-art {
    width: min(76vw, 440px);
  }

  h1 {
    max-width: 13ch;
    font-size: 48px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 100svh;
    padding: 12px 12px 108px;
  }

  .topbar {
    margin-bottom: 8px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-copy {
    padding: 0;
    order: 1;
  }

  body.has-hero-title-art .hero-copy {
    justify-items: center;
  }

  body.has-hero-title-art .hero-title-art {
    width: min(86vw, 310px);
    margin-top: -8px;
  }

  body.has-hero-title-art .hero-copy .jackpot {
    margin-top: -14px;
  }

  .lead-panel {
    order: 2;
  }

  .game-panel {
    order: 3;
  }

  .eyebrow {
    margin-bottom: 5px;
    font-size: 11px;
  }

  h1 {
    max-width: none;
    font-size: 32px;
    line-height: 1;
  }

  .highlight {
    margin-top: 8px;
    padding: 6px 8px;
    font-size: 14px;
  }

  .subheadline {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.32;
  }

  .jackpot {
    margin-top: 10px;
    padding: 9px 10px;
  }

  body.has-ui-assets .jackpot {
    min-height: 78px;
    margin-top: 6px;
  }

  .jackpot strong {
    font-size: 27px;
  }

  .chance {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .wheel-wrap {
    width: min(60vw, 210px);
    margin-bottom: 8px;
  }

  body.has-image-bg .game-panel {
    padding: 10px 12px;
  }

  body.has-image-bg .wheel-wrap {
    display: none;
  }

  body.has-image-bg.has-spin-asset .wheel-wrap {
    display: block;
    width: min(64vw, 250px);
  }

  body.kit-mb.has-spin-asset .wheel-wrap {
    width: min(100%, 330px);
  }

  body.kit-mb .game-panel {
    padding: 12px 8px 16px;
  }

  body.kit-mb .primary-btn {
    width: min(82vw, 290px);
    height: 78px;
    min-height: 78px;
  }

  body.has-drive-kit .hero::before {
    width: 74px;
    left: 6px;
    bottom: 94px;
    opacity: 0.9;
  }

  body.has-drive-kit .wheel-pointer {
    top: -24px;
    width: 46px;
    height: 76px;
  }

  body.has-spin-asset .wheel-center {
    width: 56px;
    height: 56px;
  }

  body.has-spin-asset .wheel-center::after {
    font-size: 10px;
  }

  body.has-ui-assets .jackpot {
    padding: 14px 38px 12px;
  }

  body.has-image-bg .game-panel {
    background: rgba(255, 255, 255, 0.06);
  }

  .wheel {
    border-width: 8px;
  }

  .wheel span {
    display: none;
  }

  .wheel-center {
    width: 66px;
    height: 66px;
    font-size: 13px;
  }

  .primary-btn,
  .submit-btn,
  .ghost-btn {
    min-height: 44px;
  }

  .lead-panel {
    padding: 10px 12px;
  }

  .lead-panel h2 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  form {
    gap: 8px;
  }

  label {
    gap: 4px;
    font-size: 12px;
  }

  input,
  select {
    height: 42px;
  }

  .proof-toast {
    left: 12px;
    bottom: 12px;
    width: calc(100vw - 88px);
    max-width: 300px;
    padding: 10px;
  }

  body.has-ui-assets .proof-toast {
    width: calc(100vw - 92px);
    min-height: 64px;
    padding: 15px 14px 10px 44px;
  }

  body.has-ui-assets .modal__panel {
    min-height: 480px;
    padding: 132px 38px 72px;
  }

  .proof-toast p {
    font-size: 12px;
  }

  body.has-image-bg .hero__bg {
    background:
      linear-gradient(180deg, rgba(6, 3, 18, 0.42) 0%, rgba(6, 3, 18, 0.24) 36%, rgba(6, 3, 18, 0.9) 100%),
      var(--hero-bg-mobile);
    background-position: center top;
    background-size: cover;
  }

  body.kit-mb .hero__bg {
    background:
      linear-gradient(180deg, rgba(2, 6, 28, 0.08) 0%, rgba(2, 6, 28, 0.16) 46%, rgba(2, 6, 28, 0.9) 100%),
      var(--hero-bg-mobile);
    background-position: center top;
    background-size: cover;
  }

  .sticky-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 680px) and (max-height: 760px) {
  .hero {
    padding-top: 6px;
  }

  .topbar {
    margin-bottom: 4px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero__grid {
    gap: 8px;
  }

  .eyebrow {
    margin-bottom: 4px;
    font-size: 10px;
  }

  h1 {
    font-size: 28px;
  }

  .highlight {
    margin-top: 6px;
    padding: 5px 7px;
    font-size: 12px;
  }

  .subheadline {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.25;
  }

  body.kit-mb .jackpot {
    min-height: 64px;
    width: min(100%, 286px);
    margin-top: 2px;
    padding: 14px 34px 10px;
  }

  body.has-hero-title-art .hero-title-art {
    width: min(78vw, 214px);
    margin-top: -10px;
  }

  body.has-hero-title-art .hero-copy .jackpot {
    margin-top: -16px;
  }

  body.has-ui-assets .jackpot span {
    font-size: 10px;
  }

  .jackpot strong {
    font-size: 20px;
  }

  .lead-panel {
    padding: 10px;
  }

  .lead-panel h2 {
    margin-bottom: 6px;
    font-size: 16px;
  }

  form {
    gap: 6px;
  }

  label {
    gap: 3px;
    font-size: 11px;
  }

  input,
  select {
    height: 34px;
  }

  body.kit-mb .submit-btn {
    min-height: 48px;
  }

  .status {
    min-height: 0;
  }

  body.kit-mb.has-spin-asset .wheel-wrap {
    width: min(92vw, 304px);
  }

  body.kit-mb .primary-btn {
    width: min(78vw, 270px);
    height: 72px;
    min-height: 72px;
  }

  .proof-toast {
    bottom: 10px;
  }

  body.has-ui-assets .proof-toast {
    min-height: 58px;
    padding: 12px 12px 9px 40px;
  }

  .proof-toast p {
    font-size: 11px;
    line-height: 1.25;
  }

  .sticky-whatsapp {
    bottom: 10px;
    width: 52px;
    height: 52px;
  }
}

/* Olympus campaign layout: mirrors the reference game-page structure. */
body.kit-mb {
  background: #020616;
}

body.kit-mb .topbar {
  display: none;
}

body.kit-mb .hero {
  min-height: 100svh;
  padding: 0 0 108px;
}

body.kit-mb .hero__bg {
  background:
    linear-gradient(180deg, rgba(2, 6, 28, 0.02) 0%, rgba(2, 6, 28, 0.08) 44%, rgba(2, 6, 28, 0.72) 100%),
    var(--hero-bg-desktop);
  background-position: center top;
  background-size: cover;
}

.hero__grid.olympus-layout {
  display: grid;
  grid-template-columns: minmax(360px, 620px) minmax(360px, 620px);
  grid-template-areas:
    "hero jackpot"
    "hero wheel"
    "hero start"
    "form form";
  gap: 0 0;
  align-items: start;
  justify-content: center;
  width: min(100%, 1320px);
  max-width: none;
  min-height: 100svh;
  margin: 0 auto;
  padding: 28px 24px 40px;
}

.olympus-layout .hero-copy {
  grid-area: hero;
  display: grid;
  justify-items: center;
  align-self: start;
  padding: 0;
}

body.has-hero-title-art .olympus-layout .hero-title-art {
  width: min(45vw, 620px);
  aspect-ratio: 1122 / 1402;
  margin-top: 0;
  background: var(--hero-title-image) center / contain no-repeat;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.54));
}

body.kit-mb .olympus-layout .jackpot {
  grid-area: jackpot;
  z-index: 3;
  width: min(100%, 460px);
  min-height: 220px;
  margin: -4px auto -48px;
  padding: 80px 64px 38px;
  background: var(--jackpot-banner-image) center / contain no-repeat;
}

body.kit-mb .olympus-layout .jackpot span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

body.kit-mb .olympus-layout .jackpot strong {
  display: block;
  width: 100%;
  color: #ffe879;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  text-align: center;
  text-shadow:
    0 3px 0 rgba(6, 22, 78, 0.95),
    0 0 12px rgba(255, 255, 255, 0.76),
    0 0 22px rgba(250, 204, 21, 0.7);
}

body.kit-mb .olympus-layout .game-panel {
  grid-area: wheel;
  align-self: start;
  width: min(100%, 620px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.olympus-layout .chance {
  margin: 8px 0 -4px;
  color: #ffe75c;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.92);
}

body.kit-mb .olympus-layout .wheel-wrap {
  width: min(100%, 620px);
  aspect-ratio: 1350 / 1165;
  margin: 0 auto;
}

body.kit-mb .olympus-layout .wheel {
  left: 18.37%;
  top: 12.2%;
  width: 63.7%;
}

.olympus-layout #spinCta {
  grid-area: start;
  position: relative;
  z-index: 6;
  width: min(100%, 325px);
  height: 118px;
  min-height: 118px;
  margin: -134px auto 0;
  color: transparent;
  text-shadow: none;
  background: var(--spin-button-image) center / contain no-repeat;
}

body.kit-mb .olympus-layout .lead-panel {
  grid-area: form;
  width: min(100%, 520px);
  margin: 18px auto 0;
  padding: 16px;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(38, 87, 157, 0.72), rgba(23, 35, 92, 0.88));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

body.kit-mb .olympus-layout .submit-btn,
body.kit-mb .olympus-layout #modalCta {
  min-height: 82px;
  color: transparent;
  text-shadow: none;
  background: var(--submit-button-image, var(--spin-button-image)) center / contain no-repeat;
}

body.kit-mb .modal__panel {
  min-height: min(86svh, 620px);
  background: var(--win-popup-image) center / contain no-repeat;
  border: 0;
  box-shadow: none;
}

body.kit-mb .modal h2,
body.kit-mb .modal p {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 760px) {
  body.kit-mb .hero__bg {
    background:
      linear-gradient(180deg, rgba(2, 6, 28, 0.02) 0%, rgba(2, 6, 28, 0.06) 46%, rgba(2, 6, 28, 0.86) 100%),
      var(--hero-bg-mobile);
    background-position: center top;
    background-size: cover;
  }

  .hero__grid.olympus-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "start"
      "jackpot"
      "wheel"
      "form";
    width: min(100%, 430px);
    min-height: 0;
    padding: 8px 12px 124px;
  }

  body.has-hero-title-art .olympus-layout .hero-title-art {
    width: min(100%, 350px);
  }

  .olympus-layout #spinCta {
    width: min(70vw, 210px);
    height: 76px;
    min-height: 76px;
    margin: -10px auto -2px;
  }

  body.kit-mb .olympus-layout .jackpot {
    width: min(92vw, 340px);
    min-height: 164px;
    margin: 0 auto -10px;
    padding: 61px 44px 28px;
  }

  body.kit-mb .olympus-layout .jackpot strong {
    font-size: 27px;
  }

  .olympus-layout .chance {
    margin-bottom: -6px;
    font-size: 12px;
  }

  body.kit-mb .olympus-layout .wheel-wrap {
    width: min(100%, 350px);
  }

  body.kit-mb .olympus-layout .lead-panel {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
  }

  body.kit-mb .olympus-layout .submit-btn,
  body.kit-mb .olympus-layout #modalCta {
    min-height: 68px;
  }
}

@media (max-width: 390px) and (max-height: 740px) {
  body.has-hero-title-art .olympus-layout .hero-title-art {
    width: min(92vw, 300px);
  }

  .olympus-layout #spinCta {
    width: min(68vw, 190px);
    height: 66px;
    min-height: 66px;
  }

  body.kit-mb .olympus-layout .jackpot {
    width: min(88vw, 300px);
    min-height: 144px;
    padding: 54px 38px 24px;
  }

  body.kit-mb .olympus-layout .jackpot strong {
    font-size: 23px;
  }

  body.kit-mb .olympus-layout .wheel-wrap {
    width: min(92vw, 318px);
  }
}

@media (min-width: 761px) and (max-height: 820px) {
  .hero__grid.olympus-layout {
    grid-template-columns: minmax(320px, 560px) minmax(320px, 560px);
    width: min(100%, 1220px);
    padding-top: 18px;
  }

  body.has-hero-title-art .olympus-layout .hero-title-art {
    width: min(43vw, 560px);
  }

  body.kit-mb .olympus-layout .jackpot {
    width: min(100%, 410px);
    min-height: 196px;
    margin: -4px auto -50px;
    padding: 72px 56px 34px;
  }

  body.kit-mb .olympus-layout .jackpot strong {
    font-size: clamp(28px, 2.7vw, 38px);
  }

  body.kit-mb .olympus-layout .game-panel {
    width: min(100%, 560px);
  }

  body.kit-mb .olympus-layout .wheel-wrap {
    width: min(100%, 560px);
  }

  .olympus-layout #spinCta {
    width: min(100%, 300px);
    height: 108px;
    min-height: 108px;
    margin-top: -124px;
  }
}

@media (min-width: 761px) and (max-height: 700px) {
  .hero__grid.olympus-layout {
    grid-template-columns: minmax(280px, 480px) minmax(300px, 500px);
    width: min(100%, 1040px);
    padding-top: 12px;
  }

  body.has-hero-title-art .olympus-layout .hero-title-art {
    width: min(41vw, 480px);
  }

  body.kit-mb .olympus-layout .jackpot {
    width: min(100%, 360px);
    min-height: 172px;
    padding: 63px 48px 30px;
  }

  body.kit-mb .olympus-layout .game-panel,
  body.kit-mb .olympus-layout .wheel-wrap {
    width: min(100%, 500px);
  }

  .olympus-layout #spinCta {
    width: min(100%, 270px);
    height: 98px;
    min-height: 98px;
    margin-top: -112px;
  }
}

@media (orientation: landscape) and (max-width: 900px) and (max-height: 500px) {
  body.kit-mb .hero {
    padding-bottom: 72px;
  }

  .hero__grid.olympus-layout {
    grid-template-columns: minmax(220px, 44vw) minmax(220px, 44vw);
    grid-template-areas:
      "hero jackpot"
      "hero wheel"
      "hero start"
      "form form";
    width: min(100%, 860px);
    padding: 6px 12px 78px;
  }

  body.has-hero-title-art .olympus-layout .hero-title-art {
    width: min(41vw, 280px);
  }

  body.kit-mb .olympus-layout .jackpot {
    width: min(36vw, 232px);
    min-height: 110px;
    margin: -8px auto -32px;
    padding: 40px 30px 19px;
  }

  body.kit-mb .olympus-layout .jackpot strong {
    font-size: 18px;
  }

  body.kit-mb .olympus-layout .game-panel,
  body.kit-mb .olympus-layout .wheel-wrap {
    width: min(39vw, 268px);
  }

  .olympus-layout .chance {
    font-size: 10px;
    margin-bottom: -4px;
  }

  .olympus-layout #spinCta {
    width: min(30vw, 154px);
    height: 54px;
    min-height: 54px;
    margin: -70px auto 0;
  }

  body.kit-mb .olympus-layout .lead-panel {
    width: min(100%, 520px);
    margin-top: 12px;
  }
}
