:root {
  --surface: #050505;
  --surface-elevated: #0e0e0e;
  --gold: #ffb020;
  --gold-deep: #c8891a;
  --champagne: #e8c99a;
  --crimson: #e11d48;
  --text: #ffffff;
  --text-muted: #9ca3af;
  --border: #2a2a2a;
  --slot: #141414;
  --font-display: "Anton", sans-serif;
  --font-body: "Geist Sans", Geist, Inter, system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  --font-luxury: "Cinzel", "Times New Roman", serif;
}

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

html {
  scroll-behavior: auto;
}

@media (prefers-reduced-motion: no-preference) {
  html.js-smooth {
    scroll-behavior: auto;
  }
}

body {
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}

/* GPU-friendly paint for smoother scroll */
img,
video,
.hero-visual,
.vip-art,
.glow,
.streak {
  transform: translateZ(0);
  backface-visibility: hidden;
}

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

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

.desk-only,
.desk-copy,
.logo-grid-desk {
  display: none !important;
}

span.desk-only {
  display: none !important;
}

.page {
  position: relative;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  min-height: 100vh;
  overflow: hidden;
  background: var(--surface);
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 54px 0 40px;
}

/* Atmosphere */
.glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
}

.glow-top {
  top: -80px;
  left: -40px;
  width: 470px;
  height: 320px;
  background: radial-gradient(ellipse at 50% 20%, #ffb02033 0%, #ffb02000 70%);
}

.glow-crimson {
  top: 900px;
  left: 180px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #e11d4822 0%, #e11d4800 70%);
}

.streak {
  position: absolute;
  z-index: 0;
  height: 4px;
  pointer-events: none;
  filter: blur(40px);
}

.s1 { top: 180px; left: 40px; width: 280px; background: #ffb02066; transform: rotate(-8deg); }
.s2 { top: 420px; left: 40px; width: 220px; background: #e11d4855; transform: rotate(12deg); }
.s3 { top: 780px; left: 40px; width: 300px; background: #e8c99a55; transform: rotate(-6deg); }
.s4 { top: 1180px; left: 40px; width: 240px; background: #ffb02044; transform: rotate(10deg); }

/* Nav */
.top-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  background: #000000;
  flex-shrink: 0;
  padding: 0;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.desk-nav-links {
  display: none;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1a1208;
  border: 1px solid #ffb02055;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--champagne);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* Hero */
.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 24px 28px;
  text-align: center;
}

.hero-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--champagne);
}

.headline {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.95;
  letter-spacing: 1px;
  font-weight: 400;
  color: var(--text);
}

.money-tagline {
  font-family: var(--font-luxury);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-align: center;
  text-wrap: balance;
  background: linear-gradient(90deg, #e8c99a 0%, #ffb020 42%, #ffe08a 68%, #c8891a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.subhead {
  font-size: 15px;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 100%;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--slot);
  border: 1px solid #ffb02044;
  box-shadow: 0 10px 28px #ffb02033;
}

.hero-visual.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
  padding: 12px;
  background: #000000;
}

.hero-visual.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.12);
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #050505cc 0%, #05050500 60%);
}

.hero-visual-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gold);
}

.cta-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}

.btn-primary {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: #1a1000;
  background: linear-gradient(180deg, #ffd56a 0%, #ffb020 45%, #c8891a 100%);
  box-shadow: 0 8px 24px #ffb02066;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px #ffb02088;
}

.btn-primary svg {
  stroke: #1a1000;
}

.btn-secondary {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  border-radius: 4px;
  border: 1px solid #ffb02066;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: #ffb02012;
}

/* Urgency */
.urgency {
  width: 100%;
  padding: 12px 24px 4px;
}

.urgency-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #3a0a14 0%, #1a0808 100%);
  border: 1px solid #e11d4866;
  box-shadow: 0 4px 16px #e11d4844;
  text-align: center;
}

.urgency-left {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gold);
}

.urgency-right {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--champagne);
}

/* Jackpot */
.jackpot {
  width: 100%;
  padding: 8px 24px;
}

.jackpot-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 8px;
  text-align: center;
  background: linear-gradient(180deg, #2a1800 0%, #120c04 50%, #2a1800 100%);
  border: 1px solid #ffb02088;
  box-shadow: 0 0 20px #ffb02044;
}

.jackpot-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--champagne);
}

.jackpot-amount {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--gold);
  text-shadow: 0 0 24px #ffb02066;
}

.jackpot-sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* Marquee / logos */
.marquee {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 0 12px;
}

.section-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--champagne);
  text-align: center;
  padding: 0 16px;
}

.logo-grid-mobile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 16px;
}

.logo-grid-desk {
  display: none;
}

.logo-slot {
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 8px 12px;
  border-radius: 8px;
  background: var(--slot);
  border: 1px solid #ffb02044;
  overflow: hidden;
}

.logo-slot img {
  width: 100%;
  height: 88px;
  object-fit: contain;
  object-position: center;
}

.logo-slot span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--champagne);
  text-align: center;
  line-height: 1.2;
}

/* Bonuses */
.bonuses {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 24px 8px;
}

.bonuses-title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0.95;
  letter-spacing: 1px;
  font-weight: 400;
}

.bonuses-sub {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-muted);
}

.casino-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: 120px;
}

.casino-strip figure {
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ffb02044;
  background: var(--slot);
}

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

.bonus-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 8px;
  background: var(--surface-elevated);
  border: 1px solid #ffb02044;
}

.bonus-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bonus-value {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--gold);
}

.bonus-card h3 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--champagne);
}

.bonus-card p {
  font-size: 12px;
  line-height: 1.35;
  color: var(--text-muted);
}

/* Featured */
.featured {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px 8px;
}

.featured-head h2 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 400;
}

.featured-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

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

.game-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: var(--surface-elevated);
  border: 1px solid #ffb02033;
}

.game-art {
  width: 100%;
  height: 88px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--slot);
  border: 1px solid #ffb02055;
}

.game-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 400;
}

.game-card p {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

/* Stats */
.stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 28px 24px 8px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 8px;
  border-radius: 8px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* VIP */
.vip {
  width: 100%;
  padding: 24px 24px 8px;
}

.vip-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a1208 0%, #0e0e0e 100%);
  border: 1px solid #ffb02066;
}

.vip-art {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 14;
  min-height: 440px;
  max-height: 620px;
  border-radius: 6px;
  overflow: hidden;
  background: #000000;
}

.vip-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.vip-inner h2 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.5px;
  font-weight: 400;
  line-height: 1.1;
}

.vip-inner > p:last-child {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-muted);
}

/* Bottom CTA */
.bottom-cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 24px 16px;
}

.btn-final {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border-radius: 4px;
  background: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: #1a1000;
  box-shadow: 0 6px 20px #ffb02055;
}

.btn-final:hover {
  filter: brightness(1.05);
}

.footer-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-align: center;
}

/* ========== Desktop (≥1024px) — 1440 frame ========== */
@media (min-width: 1024px) {
  .mobile-only,
  .mobile-copy,
  .logo-grid-mobile {
    display: none !important;
  }

  .desk-only,
  .desk-copy {
    display: block !important;
  }

  span.desk-only {
    display: inline !important;
  }

  .logo-grid-desk {
    display: grid !important;
  }

  .page {
    max-width: 1440px;
  }

  .content {
    padding: 40px 100px 48px;
    align-items: stretch;
  }

  .glow-top {
    width: 600px;
    height: 500px;
    top: -60px;
    left: -100px;
  }

  .glow-crimson {
    top: 400px;
    left: auto;
    right: -60px;
    width: 600px;
    height: 500px;
  }

  .top-nav {
    padding: 0;
  }

  .brand-lockup {
    gap: 12px;
  }

  .nav-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .brand {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .desk-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .desk-nav-links a {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-muted);
  }

  .desk-nav-links a:hover {
    color: var(--champagne);
  }

  .btn-nav-play {
    padding: 10px 18px !important;
    border-radius: 4px;
    background: var(--gold) !important;
    color: #1a1000 !important;
    font-family: var(--font-display) !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    gap: 56px;
    padding: 56px 0 40px;
    text-align: left;
  }

  .hero-copy {
    flex: 1;
    align-items: flex-start;
    text-align: left;
  }

  .eyebrow {
    font-size: 12px;
  }

  .headline {
    font-size: 72px;
    line-height: 0.92;
  }

  .money-tagline {
    font-size: 20px;
    letter-spacing: 0.08em;
    text-align: left;
  }

  .subhead {
    font-size: 17px;
    line-height: 1.5;
  }

  .cta-row {
    flex-direction: row;
    width: auto;
    align-items: stretch;
  }

  .btn-primary {
    width: auto;
    padding: 16px 28px;
  }

  .btn-secondary {
    width: auto;
    padding: 16px 24px;
    font-size: 13px;
  }

  .btn-secondary::after {
    content: none;
  }

  .hero-visual.desk-only {
    display: flex !important;
    width: min(620px, 46vw);
    flex-shrink: 0;
    height: 520px;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 16px 40px #ffb02044;
  }

  .hero-visual.hero-logo.desk-only img {
    object-fit: contain;
    transform: scale(1.18);
  }

  .urgency {
    padding: 0;
  }

  .urgency-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 14px 24px;
    background: linear-gradient(90deg, #3a0a14 0%, #1a0808 50%, #3a0a14 100%);
  }

  .urgency-left {
    font-size: 20px;
  }

  .urgency-right {
    font-size: 12px;
  }

  .jackpot {
    padding: 0;
    margin-top: 16px;
  }

  .jackpot-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 18px 28px;
    background: linear-gradient(90deg, #2a1800 0%, #120c04 50%, #2a1800 100%);
  }

  .jackpot-amount {
    font-size: 42px;
  }

  .jackpot-sub {
    font-size: 14px;
    max-width: 280px;
    text-align: right;
  }

  .jackpot-label {
    font-size: 11px;
  }

  .gallery {
    width: 100%;
    padding: 20px 0 8px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    height: 180px;
  }

  .gallery-grid figure {
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ffb02044;
    background: var(--slot);
  }

  .marquee {
    padding: 8px 0 24px;
    gap: 14px;
  }

  .section-hint {
    text-align: left;
    padding: 0;
    font-size: 11px;
  }

  .logo-grid-desk {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .logo-grid-desk .logo-slot {
    height: 180px;
    padding: 14px 10px 16px;
  }

  .logo-grid-desk .logo-slot img {
    height: 120px;
  }

  .logo-grid-desk .logo-slot span {
    font-size: 11px;
  }

  .bonuses {
    padding: 32px 0 8px;
    gap: 18px;
  }

  .bonuses-title {
    font-size: 36px;
  }

  .bonuses-title br {
    display: none;
  }

  .bonuses-sub {
    font-size: 15px;
  }

  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .bonus-card {
    padding: 20px;
    gap: 10px;
  }

  .bonus-value {
    font-size: 18px;
  }

  .bonus-card h3 {
    font-size: 11px;
  }

  .bonus-card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .featured {
    padding: 16px 0 0;
  }

  .featured-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .featured-head h2 {
    font-size: 28px;
  }

  .featured-hint {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--champagne);
    margin-top: 0;
  }

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

  .game-card {
    padding: 14px;
  }

  .game-art {
    height: 110px;
  }

  .game-card h3 {
    font-size: 16px;
  }

  .stats {
    padding: 32px 0 8px;
    gap: 14px;
  }

  .vip {
    padding: 24px 0 8px;
  }

  .vip-art {
    aspect-ratio: 16 / 9;
    min-height: 360px;
    max-height: 520px;
    height: auto;
  }

  .vip-video {
    object-position: center center;
  }

  .bottom-cta {
    padding: 40px 0 16px;
  }

  .btn-final {
    max-width: 420px;
  }
}

@media (min-width: 1024px) {
  .btn-secondary {
    font-size: 13px;
  }

  /* Sign in label shorter on desk in design */
  .btn-secondary {
    letter-spacing: 2px;
  }
}
