/* Fun Of Vegas funnel — design system drawn from the game's own art:
   volcanic night sky, lava-to-gold fire, tiki glow. One job: the install tap.
   Display: Lilita One (chunky arcade). Body: Nunito (rounded, game-like). */

:root {
  --night: #160822;
  --night-2: #241035;
  --night-3: #2E1545;
  --lava: #FF3D0C;
  --flame: #FF9A00;
  --gold: #FFC93C;
  --gold-deep: #B96A00;
  --magenta: #C934D9;
  --paper: #FFF6E8;
  --paper-dim: rgba(255, 246, 232, 0.74);
  --line: rgba(255, 201, 60, 0.28);
  --r-card: 22px;
  --font-display: "Lilita One", "Arial Black", sans-serif;
  --font-body: "Nunito", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--night);
  color: var(--paper);
  font: 600 17px/1.6 var(--font-body);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; margin: 0; letter-spacing: 0.01em; }

/* gold 3D headline treatment, like the in-game jackpot titles */
.goldtext {
  background: linear-gradient(180deg, #FFF3C4 0%, #FFD34D 38%, #FF9A00 72%, #C96A00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 0 rgba(90, 30, 0, 0.9)) drop-shadow(0 8px 22px rgba(255, 122, 0, 0.35));
}

/* ---------- CTA buttons ---------- */

.fire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: #3A1400;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  padding: 18px 46px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FFE082 0%, #FFC93C 45%, #FF9A00 75%, #FF5A1F 100%);
  box-shadow: 0 6px 0 #8A3A00, 0 14px 40px rgba(255, 122, 0, 0.45), inset 0 2px 2px rgba(255, 255, 255, 0.65);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  animation: cta-pulse 2.2s ease-in-out infinite;
}
.fire-btn:hover { filter: brightness(1.07); transform: translateY(-2px); }
.fire-btn:active { transform: translateY(2px); box-shadow: 0 3px 0 #8A3A00, 0 8px 22px rgba(255, 122, 0, 0.4); }
.fire-btn--small { font-size: 17px; padding: 10px 24px; animation: none; box-shadow: 0 4px 0 #8A3A00, 0 8px 20px rgba(255, 122, 0, 0.35), inset 0 2px 2px rgba(255, 255, 255, 0.6); }
@keyframes cta-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

.store-badge img { height: 64px; width: auto; border-radius: 10px; }
.store-badge { display: inline-block; transition: transform 0.15s; }
.store-badge:hover { transform: translateY(-2px); }

/* ---------- top bar ---------- */

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 8, 34, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.top__in { display: flex; align-items: center; gap: 12px; height: 66px; }
.top__icon { width: 40px; height: 40px; border-radius: 10px; flex: none; }
.top__name { font-family: var(--font-display); font-size: 19px; letter-spacing: 0.02em; }
.top__spacer { margin-left: auto; }
.top__age {
  flex: none;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 999px;
  padding: 4px 10px;
}

/* ---------- hero ---------- */

.hero { position: relative; isolation: isolate; overflow: hidden; text-align: center; }
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 108%, rgba(255, 61, 12, 0.55), transparent 60%),
    linear-gradient(180deg, rgba(22, 8, 34, 0.88) 0%, rgba(22, 8, 34, 0.55) 40%, rgba(22, 8, 34, 0.94) 100%);
}
.hero__in { padding: 64px 24px 72px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.hero__icon {
  width: 128px;
  height: 128px;
  border-radius: 28px;
  border: 4px solid rgba(255, 227, 130, 0.9);
  box-shadow: 0 10px 40px rgba(255, 122, 0, 0.5), 0 0 0 6px rgba(255, 201, 60, 0.18);
}
.hero__title { font-size: clamp(52px, 9vw, 108px); text-transform: uppercase; }
.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 2px 12px rgba(201, 52, 217, 0.65);
}
.hero__pitch { max-width: 52ch; margin: 4px 0 6px; font-size: 19px; color: var(--paper-dim); }
.hero__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chip {
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 246, 232, 0.1);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
}
.chip b { color: var(--gold); }
.hero__cta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 10px; }
.hero__fine { font-size: 13px; color: var(--paper-dim); }

/* floating coins */
.coin {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #FFF3C4, #FFC93C 55%, #B96A00 100%);
  box-shadow: 0 0 18px rgba(255, 201, 60, 0.65);
  opacity: 0.85;
  animation: coin-float 7s ease-in-out infinite;
  pointer-events: none;
}
.coin--s { width: 16px; height: 16px; }
.coin--l { width: 36px; height: 36px; }
@keyframes coin-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(14deg); }
}

/* ---------- welcome bonus counter band (signature) ---------- */

.bonus {
  position: relative;
  background:
    radial-gradient(90% 160% at 50% -30%, rgba(255, 154, 0, 0.35), transparent 60%),
    linear-gradient(180deg, #33123F, #1D0A2E);
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  text-align: center;
  padding: 44px 24px 52px;
}
.bonus__label {
  font-family: var(--font-display);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--magenta);
  text-shadow: 0 0 14px rgba(201, 52, 217, 0.8);
}
.bonus__frame {
  display: inline-block;
  margin-top: 14px;
  padding: 18px 42px;
  border-radius: 20px;
  background: rgba(22, 8, 34, 0.75);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 201, 60, 0.15), 0 0 44px rgba(255, 154, 0, 0.35), inset 0 0 26px rgba(255, 61, 12, 0.25);
}
.bonus__num {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 92px);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.bonus__tail { margin: 14px 0 0; font-size: 18px; color: var(--paper-dim); }
.bonus__tail b { color: var(--gold); }

/* ---------- sections ---------- */

.sect { padding: 76px 0; }
.sect__head { text-align: center; font-size: clamp(30px, 4.6vw, 46px); text-transform: uppercase; }
.sect__lead { text-align: center; color: var(--paper-dim); max-width: 60ch; margin: 14px auto 0; }

/* why cards */
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.perk {
  background: linear-gradient(180deg, var(--night-3), var(--night-2));
  border: 2px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px 24px 28px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.perk:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 18px 44px rgba(255, 122, 0, 0.22); }
.perk__icon { font-size: 40px; line-height: 1; }
.perk__num {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  margin-top: 10px;
}
.perk p { margin: 8px 0 0; font-size: 15px; color: var(--paper-dim); }

/* screenshot gallery */
.shots {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 42px 4px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) transparent;
}
.shot { flex: none; scroll-snap-align: start; position: relative; }
.shot img {
  height: 320px;
  width: auto;
  border-radius: 18px;
  border: 3px solid rgba(255, 201, 60, 0.55);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6), 0 0 34px rgba(255, 122, 0, 0.18);
}
.shot figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  text-align: center;
  padding: 8px 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(22, 8, 34, 0.2), rgba(22, 8, 34, 0.9));
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}
.shots-cta { display: flex; justify-content: center; margin-top: 26px; }

/* store numbers */
.proof { background: linear-gradient(180deg, #1D0A2E, #241035); border-top: 2px solid var(--line); border-bottom: 2px solid var(--line); }
.proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 46px 0 12px; }
.proof__item { text-align: center; }
.proof__item b { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 4vw, 46px); }
.proof__item span { font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper-dim); }
.proof__foot { text-align: center; font-size: 13px; color: var(--paper-dim); padding: 10px 24px 40px; margin: 0; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; counter-reset: step; }
.step {
  position: relative;
  background: linear-gradient(180deg, var(--night-3), var(--night-2));
  border: 2px solid var(--line);
  border-radius: var(--r-card);
  padding: 34px 24px 26px;
  text-align: center;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: #3A1400;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #FFF3C4, #FFC93C 55%, #E09A00 100%);
  box-shadow: 0 4px 0 #8A3A00, 0 8px 20px rgba(255, 154, 0, 0.4);
}
.step h3 { font-size: 21px; text-transform: uppercase; }
.step p { margin: 10px 0 0; font-size: 15px; color: var(--paper-dim); }

/* faq */
.faq { max-width: 760px; margin: 42px auto 0; }
.faq details { border-top: 2px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 20px 44px 20px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 26px;
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin: 0 0 22px; color: var(--paper-dim); }

/* final cta */
.blast {
  position: relative;
  text-align: center;
  padding: 84px 24px 92px;
  background:
    radial-gradient(70% 120% at 50% 115%, rgba(255, 61, 12, 0.5), transparent 65%),
    linear-gradient(180deg, #241035, #160822);
  overflow: hidden;
}
.blast h2 { font-size: clamp(34px, 5.4vw, 58px); text-transform: uppercase; }
.blast p { color: var(--paper-dim); margin: 14px auto 26px; max-width: 46ch; }
.blast__row { display: flex; flex-direction: column; align-items: center; gap: 16px; }

/* footer */
.legal { border-top: 2px solid var(--line); padding: 40px 0 48px; font-size: 13.5px; color: var(--paper-dim); }
.legal__age {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
}
.legal__seal {
  font-family: var(--font-display);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 999px;
  padding: 5px 12px;
  flex: none;
}
.legal p { max-width: 90ch; margin: 0 auto 12px; text-align: center; }
.legal__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin: 18px 0; padding: 0; list-style: none; font-weight: 800; }
.legal__links a { color: var(--paper); text-decoration: none; }
.legal__links a:hover { color: var(--gold); }
.legal__brand { text-align: center; opacity: 0.8; }

/* ---------- legal pages ---------- */

.page { max-width: 780px; margin: 0 auto; padding: 56px 24px 96px; }
.page h1 { font-size: clamp(34px, 5vw, 48px); text-transform: uppercase; }
.page .updated { color: var(--paper-dim); font-size: 14px; margin: 12px 0 32px; }
.page h2 { font-size: 22px; margin: 38px 0 10px; text-transform: uppercase; letter-spacing: 0.02em; }
.page p, .page li { color: var(--paper-dim); font-size: 16px; }
.page ul { padding-left: 22px; }
.page li { margin: 8px 0; }

/* ---------- age gate ---------- */

.agegate { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 24px; background: rgba(10, 3, 18, 0.94); backdrop-filter: blur(6px); }
.agegate[hidden] { display: none; }
.agegate__card {
  max-width: 460px;
  width: 100%;
  text-align: center;
  background: linear-gradient(180deg, var(--night-3), var(--night-2));
  border: 3px solid var(--gold);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 0 60px rgba(255, 122, 0, 0.35);
}
.agegate__badge {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 20px;
  color: #3A1400;
  background: radial-gradient(circle at 34% 30%, #FFF3C4, #FFC93C 55%, #E09A00 100%);
  box-shadow: 0 4px 0 #8A3A00;
}
.agegate__title { font-size: 30px; text-transform: uppercase; margin-bottom: 12px; }
.agegate__text { font-size: 14.5px; color: var(--paper-dim); margin: 0 0 22px; }
.agegate__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.agegate__yes {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 14px 30px;
  font-family: var(--font-display);
  font-size: 17px;
  color: #3A1400;
  background: linear-gradient(180deg, #FFE082, #FFC93C 50%, #FF9A00);
  box-shadow: 0 4px 0 #8A3A00;
}
.agegate__yes:hover { filter: brightness(1.06); }
.agegate__no {
  display: inline-block;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 800;
  font-size: 15px;
  border: 2px solid rgba(255, 246, 232, 0.3);
  color: var(--paper);
  text-decoration: none;
}
.agegate__fine { margin-top: 16px; font-size: 12px; color: var(--paper-dim); opacity: 0.8; }

/* ---------- cookie bar ---------- */

.cookiebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000; display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; padding: 14px 20px; background: rgba(22, 8, 34, 0.97); border-top: 2px solid var(--line); font-size: 13px; }
.cookiebar[hidden] { display: none; }
.cookiebar__text { max-width: 780px; margin: 0; color: var(--paper-dim); }
.cookiebar__btn { cursor: pointer; border: 0; border-radius: 999px; padding: 9px 22px; font-family: var(--font-display); font-size: 14px; color: #3A1400; background: linear-gradient(180deg, #FFE082, #FFC93C 50%, #FF9A00); }

/* ---------- motion & responsive ---------- */

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

:where(a, button, [tabindex]):focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 8px; }

@media (max-width: 900px) {
  .perks { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .proof__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .perks { grid-template-columns: 1fr; }
  .hero__icon { width: 96px; height: 96px; }
  .fire-btn { font-size: 21px; padding: 15px 34px; }
  .shot img { height: 250px; }
  .top__name { font-size: 16px; }
}
