:root {
  --bg: #0a0a0f;
  --bg-alt: #0f0f18;
  --surface: #13131e;
  --surface-2: #1a1a27;
  --fg: #f0ece4;
  --fg-muted: #7a7a8c;
  --accent: #ff6b35;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --accent-glow: rgba(255, 107, 53, 0.25);
  --border: rgba(255, 107, 53, 0.12);
  --radius: 12px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
}
.logo-icon { color: var(--accent); font-size: 1.4rem; }
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,107,53,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-accent {
  background: linear-gradient(135deg, #ff6b35 0%, #ff9a5c 50%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions { margin-bottom: 48px; }

/* Spin wheel */
.spin-preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.spin-wheel {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  animation: spin-slow 12s linear infinite;
  box-shadow: 0 0 40px rgba(255,107,53,0.3);
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.spin-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  right: 0;
  border-radius: 0 100% 0 0;
}
.seg-1 { background: rgba(255,107,53,0.9); transform-origin: bottom left; }
.seg-2 { background: rgba(255,107,53,0.4); transform: rotate(90deg); transform-origin: bottom left; }
.seg-3 { background: rgba(255,107,53,0.2); transform: rotate(180deg); transform-origin: bottom left; }
.seg-4 { background: rgba(255,107,53,0.6); transform: rotate(270deg); transform-origin: bottom left; }
.spin-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  background: #0a0a0f;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--accent);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-alt);
  position: relative;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--fg-muted);
  max-width: 520px;
  font-size: 1.05rem;
  margin-bottom: 56px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step {
  text-align: center;
  padding: 0 20px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.step-icon {
  margin-bottom: 20px;
  display: inline-block;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 40px;
}
.step-connector svg { width: 60px; }

/* ── GAMES ── */
.games {
  padding: 100px 0;
  background: var(--bg);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.game-card:hover {
  border-color: rgba(255,107,53,0.4);
  transform: translateY(-3px);
}
.game-card--featured {
  background: var(--surface-2);
  border-color: rgba(255,107,53,0.3);
  box-shadow: 0 0 40px rgba(255,107,53,0.08);
}
.game-card-tag {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 100px;
}
.game-icon {
  margin-bottom: 18px;
}
.game-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.game-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.game-prize {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* Mini wheel in card */
.mini-wheel {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: conic-gradient(
    rgba(255,107,53,0.9) 0deg 90deg,
    rgba(255,107,53,0.4) 90deg 180deg,
    rgba(255,107,53,0.2) 180deg 270deg,
    rgba(255,107,53,0.6) 270deg 360deg
  );
  box-shadow: 0 0 16px rgba(255,107,53,0.3);
}
.mw-center {
  width: 14px; height: 14px;
  background: var(--surface);
  border-radius: 50%;
  position: relative;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--accent);
}

/* ── PRICING ── */
.pricing {
  padding: 100px 0;
  background: var(--bg-alt);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}
.pricing-card--pro {
  background: var(--surface-2);
  border-color: rgba(255,107,53,0.3);
  box-shadow: 0 0 60px rgba(255,107,53,0.1);
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0f;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 100px;
}
.pricing-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-period {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '→';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}
.pricing-card--pro .pricing-features li strong {
  color: var(--fg);
}
.pricing-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.7;
  font-style: italic;
}
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
}
.pricing-guarantee strong { color: var(--fg); }

/* ── VIRAL ── */
.viral {
  padding: 100px 0;
  background: var(--bg);
}
.viral .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.viral-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.viral-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.viral-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.viral-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.viral-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.vs-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.vs-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.viral-tiktok {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tiktok-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.tiktok-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.tiktok-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 6px;
}
.tiktok-caption {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 0;
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.closing-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,107,53,0.08) 0%, transparent 70%);
}
.closing-content { position: relative; z-index: 1; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.closing-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.closing-categories span {
  padding: 6px 16px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
}
.closing-vision {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
  font-style: italic;
}

/* ── FOOTER ── */
.footer {
  padding: 60px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--fg-muted);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.footer-legal {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.6;
  max-width: 500px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-headline { font-size: 2.4rem; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.4rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .viral .container { grid-template-columns: 1fr; }
  .viral-stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
/* ── SPIN SECTION ── */
.spin-section {
  padding: 80px 0 100px;
  background: var(--bg-alt);
  position: relative;
}
.spin-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spin-wheel-wrapper {
  position: relative;
  margin: 40px 0;
}
.spin-wheel-container {
  width: 340px;
  height: 340px;
  position: relative;
}
.spin-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
  box-shadow: 0 0 60px rgba(255,107,53,0.25), 0 0 120px rgba(255,107,53,0.1);
}
.spin-wheel.spinning {
  animation: none;
}
.spin-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  right: 0;
  overflow: hidden;
  border-radius: 0 100% 0 0;
}
.spin-segment::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: 0;
  left: 0;
  background: conic-gradient(
    from 0deg,
    rgba(255,107,53,0.95) 0deg 30deg,
    rgba(255,107,53,0.55) 30deg 90deg,
    rgba(255,107,53,0.25) 90deg 150deg,
    rgba(255,107,53,0.70) 150deg 210deg,
    rgba(255,107,53,0.40) 210deg 270deg,
    rgba(255,107,53,0.80) 270deg 330deg,
    rgba(255,107,53,0.60) 330deg 360deg
  );
  transform-origin: bottom left;
  transform: rotate(0deg);
}
.seg-label {
  position: absolute;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  white-space: nowrap;
}
.seg-label.l1 { top: 14%; right: 10%; transform: rotate(-15deg); }
.seg-label.l2 { top: 32%; right: 5%; transform: rotate(40deg); }
.seg-label.l3 { bottom: 36%; right: 4%; transform: rotate(80deg); }
.seg-label.l4 { bottom: 14%; right: 16%; transform: rotate(145deg); }
.seg-label.l5 { bottom: 8%; left: 16%; transform: rotate(190deg); }
.seg-label.l6 { bottom: 20%; left: 6%; transform: rotate(240deg); }
.seg-label.l7 { top: 36%; left: 6%; transform: rotate(300deg); }

.spin-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: #0a0a0f;
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 20px rgba(255,107,53,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.spin-center:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 30px rgba(255,107,53,0.6);
}
.spin-center:active { transform: translate(-50%, -50%) scale(0.95); }
.spin-center svg { width: 22px; height: 22px; fill: var(--accent); }

.spin-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
.spin-pointer::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid var(--accent);
  filter: drop-shadow(0 2px 6px rgba(255,107,53,0.5));
}

.spin-cta {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.spin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(255,107,53,0.35);
}
.spin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255,107,53,0.5);
}
.spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Spin result modal */
.spin-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.spin-modal.active { display: flex; }
.spin-modal-card {
  background: var(--surface-2);
  border: 1px solid rgba(255,107,53,0.35);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 80px rgba(255,107,53,0.15);
  animation: modal-pop 0.4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}
@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.spin-modal-icon {
  width: 64px; height: 64px;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
}
.spin-modal h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.spin-modal .reward-value {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #ff9a5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.spin-modal .reward-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.spin-modal form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spin-modal input {
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.spin-modal input:focus { border-color: var(--accent); }
.spin-modal input::placeholder { color: var(--fg-muted); }
.claim-btn {
  padding: 14px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.claim-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(255,107,53,0.4);
}
.claim-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.7;
  margin-top: 4px;
}
.skip-claim {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 8px;
  opacity: 0.6;
}
.skip-claim:hover { opacity: 1; }

/* ── FLASH DEALS ── */
.flash-deals {
  padding: 80px 0;
  background: var(--bg);
}
.flash-deals .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.flash-deals .section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
}
.flash-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,50,50,0.12);
  border: 1px solid rgba(255,50,50,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff4444;
}
.flash-live-badge .pulse-dot {
  background: #ff4444;
  width: 6px; height: 6px;
  border-radius: 50%;
}
.flash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.flash-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.flash-card:hover {
  border-color: rgba(255,107,53,0.4);
  transform: translateY(-2px);
}
.flash-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}
.flash-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flash-discount-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.flash-timer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ff4444;
  display: flex;
  align-items: center;
  gap: 6px;
}
.flash-timer svg { width: 12px; height: 12px; fill: #ff4444; }
.flash-body {
  padding: 18px;
}
.flash-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}
.flash-prices {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.flash-price-now {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}
.flash-price-was {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}
.flash-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.flash-spin-btn {
  width: 100%;
  padding: 11px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.flash-spin-btn:hover {
  background: rgba(255,107,53,0.2);
  transform: translateY(-1px);
}

/* ── TRENDING ── */
.trending {
  padding: 80px 0;
  background: var(--bg-alt);
}
.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.trending-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.product-card:hover {
  border-color: rgba(255,107,53,0.35);
  transform: translateY(-3px);
}
.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
}
.product-body { padding: 16px; }
.product-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.price-now {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}
.price-was {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.stars { color: #f59e0b; font-size: 0.85rem; }
.rating-count { font-size: 0.78rem; color: var(--fg-muted); }
.buy-btn {
  width: 100%;
  padding: 10px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.buy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(255,107,53,0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .flash-grid, .trending-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-headline { font-size: 2.4rem; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.4rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .viral .container { grid-template-columns: 1fr; }
  .viral-stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .spin-wheel-container { width: 280px; height: 280px; }
  .flash-deals .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .viral-stats { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .flash-grid, .trending-grid { grid-template-columns: 1fr; }
  .spin-wheel-container { width: 240px; height: 240px; }
  .spin-modal-card { padding: 32px 24px; }
}