/* ===== DESIGN TOKENS ===== */
:root {
  --bg-primary: #06030f;
  --bg-secondary: #0d0823;
  --bg-card: rgba(255,255,255,0.04);
  --cyan: #00f0ff;
  --gold: #ffd040;
  --gold-dark: #c89b00;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --red-alert: #ff3b5c;
  --text: #ffffff;
  --text-muted: #8b87b0;
  --glow-cyan: 0 0 24px rgba(0,240,255,.7), 0 0 60px rgba(0,240,255,.3);
  --glow-gold: 0 0 24px rgba(255,208,64,.8), 0 0 60px rgba(255,208,64,.3);
  --glow-purple: 0 0 24px rgba(124,58,237,.8), 0 0 60px rgba(124,58,237,.3);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-primary);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; outline: none; font-family: inherit; }

/* ===== CUSTOM CURSOR ===== */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 12px; height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
  box-shadow: var(--glow-cyan);
  mix-blend-mode: screen;
}
#cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(0,240,255,.5);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .12s ease-out, width .3s, height .3s, border-color .3s;
}
body.cursor-hover #cursor { width: 20px; height: 20px; background: var(--gold); box-shadow: var(--glow-gold); }
body.cursor-hover #cursor-ring { width: 60px; height: 60px; border-color: rgba(255,208,64,.6); }

/* ===== WEBGL CANVAS ===== */
#bg-canvas {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* ===== NOISE OVERLAY ===== */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .4;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(6,3,15,.9), transparent);
  backdrop-filter: blur(0px);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.4rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo span { color: var(--cyan); -webkit-text-fill-color: var(--cyan); }
.nav-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  color: var(--gold);
  border: 1px solid rgba(255,208,64,.3);
  padding: 6px 14px; border-radius: 50px;
  background: rgba(255,208,64,.08);
}
.nav-badge::before {
  content: ''; display: block;
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ===== HERO ===== */
#hero {
  position: relative; z-index: 10;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--cyan);
  border: 1px solid rgba(0,240,255,.25);
  padding: 8px 20px; border-radius: 50px;
  background: rgba(0,240,255,.06);
  margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
}
.hero-eyebrow svg { width: 14px; height: 14px; fill: var(--gold); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  opacity: 0;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; transform: translateY(110%); }
.title-gold { background: linear-gradient(135deg, #ffe566, var(--gold), #ff9f0a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.title-cyan { background: linear-gradient(135deg, var(--cyan), #4facfe); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 44px;
  opacity: 0; transform: translateY(20px);
}
.hero-sub strong { color: var(--text); }
.hero-stats {
  display: flex; gap: 40px; margin-bottom: 52px;
  opacity: 0; transform: translateY(20px);
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #ff9f0a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .75rem; color: var(--text-muted); letter-spacing: .06em; }
.stat-sep { width: 1px; background: rgba(255,255,255,.1); }

/* ===== CTA BUTTON ===== */
.btn-primary {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 48px;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, #ffe566, var(--gold), #ff9f0a);
  border-radius: 100px;
  box-shadow: 0 0 40px rgba(255,208,64,.5), inset 0 1px 0 rgba(255,255,255,.4);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
  opacity: 0;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.3), transparent, rgba(255,255,255,.1));
  border-radius: inherit;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold), var(--cyan), var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity .3s;
  animation: rotate-border 3s linear infinite;
  background-size: 200% 200%;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 60px rgba(255,208,64,.7), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-primary svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-pulse {
  position: absolute; inset: 0; border-radius: 100px;
  background: rgba(255,208,64,.4);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.4);opacity:0} }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--cyan);
  border: 1.5px solid rgba(0,240,255,.4);
  border-radius: 100px;
  background: rgba(0,240,255,.06);
  box-shadow: inset 0 0 20px rgba(0,240,255,.05);
  transition: all .3s ease;
}
.btn-secondary:hover { background: rgba(0,240,255,.12); box-shadow: var(--glow-cyan); border-color: var(--cyan); }

/* ===== FLOATING DIAMONDS ===== */
.floating-gems {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.gem {
  position: absolute;
  animation: float-gem linear infinite;
  opacity: 0;
}
.gem svg { filter: drop-shadow(0 0 8px rgba(0,240,255,.8)); }
@keyframes float-gem {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  5% { opacity: .7; }
  95% { opacity: .5; }
  100% { transform: translateY(-120px) rotate(720deg); opacity: 0; }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-hint {
  position: absolute; bottom: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .7rem; letter-spacing: .12em; color: var(--text-muted);
  opacity: 0; animation: fade-in 1s 3s forwards;
}
.scroll-hint .arrow {
  width: 24px; height: 24px; border-right: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg);
  animation: bounce-arrow 1.4s ease-in-out infinite;
}
@keyframes bounce-arrow { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(6px)} }
@keyframes fade-in { to { opacity: 1; } }

/* ===== WHEEL SECTION ===== */
#wheel-section {
  position: relative; z-index: 10;
  padding: 100px 24px;
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(to bottom, transparent, rgba(124,58,237,.06), transparent);
}
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--purple-light);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -.03em;
  text-align: center; margin-bottom: 12px;
}
.section-sub {
  font-size: 1.1rem; color: var(--text-muted);
  text-align: center; max-width: 480px; margin-bottom: 60px;
  line-height: 1.6;
}
.wheel-container {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.wheel-wrapper {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.wheel-glow-ring {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--purple), var(--cyan), var(--gold), var(--purple));
  animation: rotate-ring 8s linear infinite;
  filter: blur(2px);
  opacity: .35;
}
@keyframes rotate-ring { to { transform: rotate(360deg); } }
.wheel-glow-ring-inner {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--bg-primary);
}
#wheel-canvas {
  position: relative; z-index: 2;
  border-radius: 50%;
  filter: drop-shadow(0 0 30px rgba(124,58,237,.5)) drop-shadow(0 0 60px rgba(0,240,255,.2));
}
.wheel-pointer {
  position: absolute; top: -18px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 0; height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 36px solid var(--gold);
  filter: drop-shadow(0 0 10px var(--gold));
}
.wheel-pointer::before {
  content: '';
  position: absolute; top: -44px; left: -12px;
  width: 24px; height: 12px;
  background: var(--gold);
  border-radius: 4px 4px 0 0;
}
#spin-btn {
  position: relative;
  padding: 22px 72px;
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
  color: #06030f;
  background: linear-gradient(135deg, #ffe566, var(--gold), #ff9f0a);
  border-radius: 100px;
  box-shadow: 0 0 50px rgba(255,208,64,.6), 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.5);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  animation: spin-btn-pulse 2s ease-in-out infinite;
}
#spin-btn:disabled { opacity: .5; animation: none; transform: none; }
#spin-btn:not(:disabled):hover { transform: scale(1.08) translateY(-4px); box-shadow: 0 0 80px rgba(255,208,64,.8), 0 16px 40px rgba(0,0,0,.4); }
@keyframes spin-btn-pulse {
  0%,100% { box-shadow: 0 0 50px rgba(255,208,64,.6), 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.5); }
  50% { box-shadow: 0 0 80px rgba(255,208,64,.9), 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.5); }
}
.spin-count {
  font-size: .85rem; color: var(--text-muted);
  letter-spacing: .06em; margin-top: -20px;
}
.spin-count span { color: var(--gold); font-weight: 700; }

/* ===== POPUP NEAR-WIN ===== */
#popup-nearwin {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  align-items: center; justify-content: center;
  background: rgba(6,3,15,.85);
  backdrop-filter: blur(12px);
}
#popup-nearwin.show { display: flex; }
.popup-box {
  position: relative;
  background: linear-gradient(145deg, #12092b, #1a0f3a);
  border: 1px solid rgba(0,240,255,.2);
  border-radius: 24px;
  padding: 52px 48px;
  text-align: center;
  max-width: 420px; width: 90%;
  box-shadow: 0 0 80px rgba(0,240,255,.15), 0 40px 80px rgba(0,0,0,.6);
  animation: popup-enter .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popup-enter { from { transform: scale(.7); opacity: 0; } }
.popup-emoji { font-size: 4rem; margin-bottom: 20px; }
.popup-title {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 900;
  margin-bottom: 12px;
  color: var(--cyan);
}
.popup-text { color: var(--text-muted); line-height: 1.6; margin-bottom: 32px; }
.popup-text strong { color: var(--gold); }
.popup-btn {
  width: 100%;
  padding: 18px;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  color: #06030f;
  background: linear-gradient(135deg, #ffe566, var(--gold), #ff9f0a);
  border-radius: 100px;
  box-shadow: 0 0 30px rgba(255,208,64,.5);
  transition: all .3s ease;
}
.popup-btn:hover { transform: scale(1.03); }
.popup-close {
  position: absolute; top: 16px; right: 20px;
  background: none; color: var(--text-muted);
  font-size: 1.4rem;
  transition: color .2s;
}
.popup-close:hover { color: var(--text); }

/* ===== JACKPOT WIN SECTION ===== */
#win-section {
  display: none;
  position: fixed; inset: 0; z-index: 600;
  align-items: center; justify-content: center;
  background: rgba(6,3,15,.95);
  backdrop-filter: blur(16px);
  flex-direction: column;
  text-align: center; padding: 24px;
}
#win-section.show { display: flex; }
.win-confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.win-badge {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(255,208,64,.4);
  padding: 8px 20px; border-radius: 50px;
  background: rgba(255,208,64,.08);
  margin-bottom: 24px;
  animation: popup-enter .5s ease;
}
.win-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900; letter-spacing: -.04em;
  line-height: .95; margin-bottom: 12px;
  animation: popup-enter .5s .1s both ease;
}
.win-title .amount {
  display: block;
  background: linear-gradient(135deg, #ffe566, var(--gold), #ff9f0a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255,208,64,.5));
}
.win-sub {
  font-size: 1.2rem; color: var(--text-muted);
  margin-bottom: 40px;
  animation: popup-enter .5s .2s both ease;
}
.win-sub strong { color: var(--cyan); }
.win-countdown-wrap {
  margin-bottom: 40px;
  animation: popup-enter .5s .3s both ease;
}
.win-countdown-label {
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--red-alert); margin-bottom: 10px;
  animation: blink 1s ease-in-out infinite;
}
#win-countdown {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900; letter-spacing: .04em;
  color: var(--red-alert);
  text-shadow: 0 0 30px rgba(255,59,92,.7), 0 0 60px rgba(255,59,92,.3);
}
#claim-btn {
  position: relative; overflow: hidden;
  padding: 26px 72px;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase;
  color: #06030f;
  background: linear-gradient(135deg, #ffe566, var(--gold), #ff9f0a);
  border-radius: 100px;
  box-shadow: 0 0 60px rgba(255,208,64,.7), 0 12px 40px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.5);
  animation: claim-shake 2.5s ease-in-out infinite, popup-enter .5s .4s both ease;
  margin-bottom: 20px;
}
#claim-btn::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  animation: shimmer 2s 1s ease-in-out infinite;
}
@keyframes shimmer { to { left: 160%; } }
@keyframes claim-shake {
  0%,100%{transform:rotate(0)} 10%{transform:rotate(-1.5deg)} 20%{transform:rotate(1.5deg)}
  30%{transform:rotate(-1deg)} 40%{transform:rotate(1deg)} 50%{transform:rotate(0)}
}
.win-note {
  font-size: .8rem; color: var(--text-muted);
  animation: popup-enter .5s .5s both ease;
}
.win-note svg { vertical-align: middle; margin-right: 4px; }

/* ===== TICKER ===== */
#social-proof {
  position: relative; z-index: 10;
  padding: 80px 24px;
}
.ticker-header {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 48px;
}
.ticker-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 12px #22c55e;
  animation: blink 1.2s ease-in-out infinite;
}
.ticker-title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted);
}
.ticker-track {
  position: relative; overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.ticker-inner {
  display: flex; gap: 20px;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
.ticker-card {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 14px 20px;
  backdrop-filter: blur(8px);
  transition: border-color .3s;
}
.ticker-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ticker-info { min-width: 0; }
.ticker-name { font-weight: 700; font-size: .9rem; white-space: nowrap; }
.ticker-detail { font-size: .78rem; color: var(--text-muted); white-space: nowrap; }
.ticker-amount {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap; margin-left: 8px;
}

/* ===== FEATURES ===== */
#features {
  position: relative; z-index: 10;
  padding: 100px 24px;
  max-width: 1200px; margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 60px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  transition: border-color .4s, transform .4s cubic-bezier(.34,1.56,.64,1);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity .4s;
}
.feature-card:hover { border-color: rgba(0,240,255,.2); transform: translateY(-6px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(124,58,237,.3), rgba(0,240,255,.15));
  border: 1px solid rgba(0,240,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 800;
  margin-bottom: 10px; letter-spacing: -.01em;
}
.feature-text { color: var(--text-muted); line-height: 1.7; font-size: .95rem; }

/* ===== HOW IT WORKS ===== */
#how-it-works {
  position: relative; z-index: 10;
  padding: 100px 24px;
  background: linear-gradient(to bottom, transparent, rgba(124,58,237,.04), transparent);
}
.steps-container {
  display: flex; gap: 0; max-width: 900px; margin: 60px auto 0;
  position: relative;
}
.steps-container::before {
  content: '';
  position: absolute; top: 40px; left: calc(16.6% + 20px); right: calc(16.6% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--gold));
}
.step-item {
  flex: 1; text-align: center; padding: 0 20px;
  position: relative;
}
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #1a0f3a);
  border: 2px solid rgba(124,58,237,.5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 900; color: var(--cyan);
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(124,58,237,.3);
}
.step-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem;
  margin-bottom: 8px;
}
.step-text { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== TRUST ===== */
#trust {
  position: relative; z-index: 10;
  padding: 80px 24px;
  max-width: 1100px; margin: 0 auto;
}
.trust-numbers {
  display: flex; justify-content: center; gap: 60px;
  flex-wrap: wrap; margin-bottom: 72px;
}
.trust-num-item { text-align: center; }
.trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--purple-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.trust-num-label { font-size: .8rem; color: var(--text-muted); margin-top: 6px; }
.trust-payments {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; margin-bottom: 40px;
}
.payment-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 700; font-size: .9rem;
  transition: border-color .3s, background .3s;
}
.payment-badge:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }
.payment-badge svg { width: 28px; height: 28px; }
.trust-badges-row {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--text-muted);
  border: 1px solid rgba(255,255,255,.08);
  padding: 10px 18px; border-radius: 8px;
}
.trust-badge svg { color: #22c55e; width: 16px; height: 16px; flex-shrink: 0; }

/* ===== SEO CONTENT ===== */
#seo-content {
  position: relative; z-index: 10;
  padding: 80px 24px;
  max-width: 900px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.06);
}
.seo-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800;
  margin-bottom: 16px; color: var(--text);
}
.seo-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  margin: 28px 0 10px; color: var(--purple-light);
}
.seo-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; font-size: .95rem; }
.seo-content ul { padding-left: 20px; margin-bottom: 14px; }
.seo-content li { color: var(--text-muted); line-height: 1.8; font-size: .95rem; }

/* ===== FINAL CTA ===== */
#final-cta {
  position: relative; z-index: 10;
  padding: 120px 24px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124,58,237,.12), transparent);
}
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900; letter-spacing: -.04em;
  line-height: .95; margin-bottom: 24px;
}
.final-cta-sub {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 480px; margin: 0 auto 48px; line-height: 1.6;
}
.final-cta-sub strong { color: var(--gold); }

/* ===== FOOTER ===== */
footer {
  position: relative; z-index: 10;
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
  color: var(--text-muted); font-size: .78rem; line-height: 1.7;
}
footer strong { color: var(--text); }
.footer-links {
  display: flex; justify-content: center; gap: 24px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.footer-links a { color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--cyan); }

/* ===== UTILS ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-cyan { color: var(--cyan); }
.reveal { opacity: 0; transform: translateY(40px); }

/* ===== RESPONSIVE ===== */

/* --- Touch devices: disable custom cursor --- */
@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
  #cursor, #cursor-ring { display: none; }
}

/* --- Tablet (≤900px) --- */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-numbers { gap: 36px; }
}

/* --- Mobile landscape + large phones (≤768px) --- */
@media (max-width: 768px) {
  /* Navbar */
  nav { padding: 14px 20px; gap: 8px; }
  .nav-logo { font-size: 1.1rem; }
  .nav-badge { font-size: .68rem; padding: 5px 10px; }

  /* Hero */
  #hero { padding: 100px 20px 60px; }
  .hero-eyebrow { font-size: .72rem; padding: 7px 14px; margin-bottom: 20px; }
  .hero-sub { font-size: .95rem; margin-bottom: 32px; }
  .hero-stats {
    gap: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    padding: 16px 8px;
    margin-bottom: 36px;
  }
  .stat-sep { display: none; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: .62rem; }
  .btn-primary {
    width: 100%; max-width: 340px;
    padding: 18px 28px;
    font-size: 1rem;
    justify-content: center;
  }
  .scroll-hint { display: none; }

  /* Wheel section */
  #wheel-section { padding: 70px 20px; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .section-sub { font-size: .95rem; margin-bottom: 40px; }
  .wheel-glow-ring { width: 330px; height: 330px; }
  .wheel-glow-ring-inner { width: 312px; height: 312px; }
  #spin-btn { padding: 18px 44px; font-size: 1.1rem; width: 100%; max-width: 320px; }
  .spin-count { font-size: .8rem; }

  /* Popups */
  .popup-box { padding: 40px 28px; }
  .popup-title { font-size: 1.35rem; }
  .popup-emoji { font-size: 3rem; margin-bottom: 14px; }

  /* Win section */
  #win-section { padding: 32px 20px; }
  .win-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .win-sub { font-size: 1rem; margin-bottom: 28px; }
  #win-countdown { font-size: clamp(3rem, 16vw, 5rem); }
  #claim-btn {
    width: 100%; max-width: 360px;
    padding: 20px 24px;
    font-size: 1.15rem;
  }

  /* Social proof / Ticker */
  #social-proof { padding: 60px 0; }
  .ticker-header { padding: 0 20px; }
  .ticker-title { font-size: .8rem; }

  /* How it works */
  #how-it-works { padding: 70px 20px; }
  .steps-container {
    flex-direction: column;
    gap: 28px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .steps-container::before { display: none; }
  .step-num { width: 64px; height: 64px; font-size: 1.3rem; margin-bottom: 16px; }
  .step-title { font-size: .95rem; }

  /* Features */
  #features { padding: 70px 20px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .feature-card { padding: 28px 24px; }
  .feature-icon { width: 48px; height: 48px; font-size: 1.4rem; margin-bottom: 14px; }
  .feature-title { font-size: 1.05rem; }
  .feature-text { font-size: .88rem; }

  /* Trust */
  #trust { padding: 60px 20px; }
  .trust-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
    margin-bottom: 48px;
  }
  .trust-num { font-size: 2.2rem; }
  .trust-payments { gap: 10px; }
  .payment-badge { padding: 10px 16px; font-size: .82rem; }
  .payment-badge svg { width: 22px; height: 22px; }
  .trust-badges-row { gap: 10px; }
  .trust-badge { font-size: .74rem; padding: 8px 12px; }

  /* SEO */
  #seo-content { padding: 60px 20px; }
  .seo-content h2 { font-size: 1.4rem; }
  .seo-content h3 { font-size: 1.05rem; }
  .seo-content p, .seo-content li { font-size: .88rem; }

  /* Final CTA */
  #final-cta { padding: 80px 20px; }
  .final-cta-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .final-cta-sub { font-size: .95rem; }
  .btn-secondary { width: 100%; max-width: 320px; justify-content: center; padding: 14px 28px; }

  /* Footer */
  footer { padding: 32px 20px; }
  .footer-links { gap: 14px; font-size: .8rem; }
}

/* --- Small phones (≤480px) --- */
@media (max-width: 480px) {
  nav { padding: 12px 16px; }
  .nav-badge { display: none; }

  #hero { padding: 88px 16px 52px; }
  .hero-eyebrow { font-size: .68rem; }
  .hero-stats { padding: 12px 4px; }
  .stat-num { font-size: 1.2rem; }

  .wheel-glow-ring { width: 300px; height: 300px; }
  .wheel-glow-ring-inner { width: 282px; height: 282px; }

  .popup-box { padding: 32px 20px; max-width: 100%; border-radius: 20px 20px 0 0; }
  #popup-nearwin { align-items: flex-end; }

  #win-section { padding: 24px 16px; }
  #claim-btn { padding: 18px 20px; font-size: 1rem; }

  .features-grid { gap: 12px; }
  .feature-card { padding: 22px 18px; }

  .trust-numbers { gap: 20px 12px; }
  .trust-num { font-size: 1.9rem; }

  .payment-badge { padding: 8px 12px; font-size: .78rem; }
  .trust-badge { font-size: .7rem; }

  .footer-links { flex-direction: column; gap: 8px; align-items: center; }
}

/* --- Very small phones (≤360px) --- */
@media (max-width: 360px) {
  .nav-logo { font-size: 1rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 10px; border: none; background: none; padding: 0; }
  .stat-sep { display: block; width: 100%; height: 1px; background: rgba(255,255,255,.08); }
  .trust-numbers { grid-template-columns: 1fr; }
  .trust-num { font-size: 2rem; }
  .wheel-glow-ring { width: 272px; height: 272px; }
  .wheel-glow-ring-inner { width: 254px; height: 254px; }
}

/* ===== iOS SAFE AREA (notch / dynamic island) ===== */
@supports (padding-top: env(safe-area-inset-top)) {
  nav {
    padding-top: calc(14px + env(safe-area-inset-top));
  }
  footer {
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }
  #win-section, #popup-nearwin {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }
