/* =====================================================
   PREMIUM LANDING PAGE STYLES
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  --gold: #D4AF37; --gold-light: #f0d060; --gold-dim: rgba(212,175,55,0.15);
  --red: #c0392b; --red-light: #e74c3c;
  --bg: #05050f; --bg2: #08081a; --bg3: #0d0d22;
  --border: rgba(212,175,55,0.18);
  --text: #f0f0f8; --text2: #8888aa; --text3: #44445a;
  --success: #00c896; --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

.landing-body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #ff6b35 50%, var(--red-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── TICKER BAR ─────────────────────────────────────── */
.ticker-bar {
  background: linear-gradient(90deg, #0a0a1e, #12122a, #0a0a1e);
  border-bottom: 1px solid var(--border);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  overflow: hidden;
}
.ticker-label {
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 10px;
  letter-spacing: 1px;
  border-radius: 0 4px 4px 0;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 16px;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100% { opacity:1 } 50% { opacity:0.6 } }
.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
  font-size: 0.8rem;
  color: var(--text2);
}
.ticker-track span strong { color: var(--gold); }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.landing-nav {
  position: fixed;
  top: 36px;
  left: 0; right: 0;
  z-index: 200;
  padding: 0 32px;
  height: 66px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.landing-nav.scrolled {
  background: rgba(5,5,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-icon {
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-item {
  padding: 8px 16px;
  color: var(--text2);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-item:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.btn-nav-play {
  background: linear-gradient(135deg, var(--gold), #b8960c);
  color: #000 !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  margin-left: 8px;
  -webkit-text-fill-color: #000;
}
.btn-nav-play:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,175,55,0.4); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
  z-index: 999;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  padding-top: 102px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.orb-1 { width: 600px; height: 600px; background: rgba(212,175,55,0.08); top: -100px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: rgba(192,57,43,0.1); top: 200px; right: -150px; }
.orb-3 { width: 400px; height: 400px; background: rgba(41,128,185,0.06); bottom: 0; left: 30%; }
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.3);opacity:0.7} }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title-sub { color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: 1.08rem;
  color: var(--text2);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 24px;
}
.hero-bonus-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(192,57,43,0.2), rgba(212,175,55,0.15));
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 32px;
}
.pill-icon { font-size: 1.1rem; }
.hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, #c8960a 100%);
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  -webkit-text-fill-color: #000;
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.45);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-text-fill-color: #000;
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text2);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.25s;
}
.cta-secondary:hover { border-color: var(--border); color: var(--text); }
.hero-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.h-stat { padding: 0 24px; }
.h-stat:first-child { padding-left: 0; }
.h-val { font-size: 1.7rem; font-weight: 900; color: var(--gold); font-family: 'Playfair Display', serif; }
.h-lbl { font-size: 0.75rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 2px; }
.h-divider { width: 1px; height: 36px; background: var(--border); }

/* ─── Hero Wheel ─────────────────────────────────────── */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.wheel-glow-ring {
  width: 440px; height: 440px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(212,175,55,0.3), rgba(192,57,43,0.2), rgba(212,175,55,0.3));
  display: flex; align-items: center; justify-content: center;
  animation: rotateSlow 12s linear infinite;
  padding: 4px;
}
.wheel-glow-ring-2 {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.hero-wheel-wrap {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(212,175,55,0.25), 0 0 120px rgba(192,57,43,0.12);
}
#hero-canvas { display: block; border-radius: 50%; }
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.hero-chips { position: absolute; inset: 0; pointer-events: none; }
.floating-chip {
  position: absolute;
  left: calc(50% + var(--x));
  top: calc(50% + var(--y));
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: #fff;
  animation: chipFloat 3s ease-in-out var(--d) infinite alternate;
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  z-index: 10;
}
.chip-red   { background: radial-gradient(circle at 35% 35%, #e74c3c, #922b21); }
.chip-blue  { background: radial-gradient(circle at 35% 35%, #3498db, #1a5276); }
.chip-gold  { background: radial-gradient(circle at 35% 35%, var(--gold), #8a6914); color: #000; }
.chip-black { background: radial-gradient(circle at 35% 35%, #555, #111); }
@keyframes chipFloat {
  from { transform: translateY(0) rotate(-5deg); }
  to   { transform: translateY(-12px) rotate(5deg); }
}

/* ─── TRUST STRIP ────────────────────────────────────── */
.trust-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px;
}
.trust-container {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 28px;
  font-size: 0.85rem; color: var(--text2); font-weight: 500;
  white-space: nowrap;
}
.t-icon { font-size: 1rem; }
.trust-sep { width: 1px; height: 24px; background: var(--border); }

/* ─── SECTIONS ───────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-p { font-size: 1rem; color: var(--text2); line-height: 1.7; max-width: 500px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-p { margin: 0 auto; }

/* ─── LIVE SECTION ───────────────────────────────────── */
.live-section { padding: 100px 32px; background: var(--bg); }
.live-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.live-feed-widget {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.lfw-header {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem; font-weight: 600;
}
.lfw-dot { width: 8px; height: 8px; background: #00c896; border-radius: 50%; box-shadow: 0 0 8px #00c896; animation: pulse 2s infinite; flex-shrink: 0; }
.lfw-count { margin-left: auto; font-size: 0.75rem; color: var(--text2); font-weight: 400; }
.lfw-list { padding: 8px; max-height: 340px; overflow: hidden; }
.lfw-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 12px;
  border-radius: 10px;
  margin-bottom: 4px;
  background: rgba(255,255,255,0.02);
  font-size: 0.83rem;
  animation: slideDown 0.4s ease;
}
@keyframes slideDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.lfw-icon { font-size: 1.1rem; flex-shrink: 0; }
.lfw-text { flex: 1; color: var(--text2); }
.lfw-text strong { color: var(--text); }
.lfw-time { font-size: 0.7rem; color: var(--text3); flex-shrink: 0; }

/* ─── FEATURES ───────────────────────────────────────── */
.features-section { padding: 100px 32px; background: var(--bg2); }
.features-container { max-width: 1100px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-block:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.feature-block:hover::before { opacity: 1; }
.fb-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.fb-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.fb-desc { font-size: 0.85rem; color: var(--text2); line-height: 1.65; margin-bottom: 16px; }
.fb-badge {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── HOW IT WORKS ───────────────────────────────────── */
.hiw-section { padding: 100px 32px; background: var(--bg); }
.hiw-container { max-width: 1100px; margin: 0 auto; }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.hiw-step {
  position: relative;
  padding: 32px 24px;
  text-align: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin: 0 8px;
}
.hiw-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212,175,55,0.15);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.hiw-step-icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.hiw-step-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.hiw-step-desc { font-size: 0.83rem; color: var(--text2); line-height: 1.6; }
.hiw-arrow {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  z-index: 10;
  background: var(--bg);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
}

/* ─── BONUS SECTION ──────────────────────────────────── */
.bonus-section { padding: 80px 32px; background: var(--bg2); }
.bonus-container { max-width: 900px; margin: 0 auto; }
.bonus-card {
  background: linear-gradient(135deg, #0e0820 0%, #1a0a2e 40%, #0d1a0a 100%);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.1) inset;
}
.bonus-bg-effect {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(212,175,55,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 110%, rgba(192,57,43,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.bonus-content { position: relative; z-index: 2; }
.bonus-amount-display { margin: 24px 0; }
.bonus-pct {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-shadow: none;
}
.bonus-label-big {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text2);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.bonus-desc { font-size: 1.05rem; color: var(--text2); line-height: 1.7; max-width: 500px; margin: 0 auto 32px; }
.bonus-timer { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 32px; }
.bt-block { background: rgba(0,0,0,0.4); border: 1px solid var(--border); border-radius: 10px; padding: 12px 20px; min-width: 72px; text-align: center; }
.bt-num { font-size: 2rem; font-weight: 900; color: var(--gold); font-family: 'Playfair Display', serif; line-height: 1; }
.bt-lbl { font-size: 0.65rem; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.bt-sep { font-size: 2rem; color: var(--gold); font-weight: 900; }
.bonus-fine { font-size: 0.72rem; color: var(--text3); margin-top: 16px; }
.bonus-coins span {
  position: absolute;
  left: var(--x); top: var(--y);
  font-size: calc(1.2rem * var(--s));
  animation: coinFloat 4s ease-in-out var(--d) infinite alternate;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}
@keyframes coinFloat {
  from { transform: translateY(0) rotate(-10deg); opacity: 0.4; }
  to   { transform: translateY(-20px) rotate(10deg); opacity: 0.8; }
}

/* ─── REVIEWS ────────────────────────────────────────── */
.reviews-section { padding: 100px 32px; background: var(--bg); }
.reviews-container { max-width: 1100px; margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.review-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.review-card:hover { border-color: rgba(212,175,55,0.35); transform: translateY(-4px); }
.rv-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rv-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; color: #000; flex-shrink: 0;
}
.rv-name { font-weight: 700; font-size: 0.9rem; }
.rv-loc { font-size: 0.75rem; color: var(--text3); margin-top: 2px; }
.rv-badge-win {
  margin-left: auto;
  background: rgba(0,200,150,0.12);
  border: 1px solid rgba(0,200,150,0.3);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.7rem;
  color: var(--success);
  font-weight: 700;
  white-space: nowrap;
}
.rv-stars { font-size: 0.82rem; margin-bottom: 10px; color: var(--gold); }
.rv-text { font-size: 0.83rem; color: var(--text2); line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.rv-verified { font-size: 0.72rem; color: var(--text3); }

/* ─── PAYOUT TABLE ───────────────────────────────────── */
.preview-section { padding: 100px 32px; background: var(--bg2); }
.preview-container { max-width: 1100px; margin: 0 auto; }
.payout-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.payout-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}
.payout-card:hover { border-color: rgba(212,175,55,0.4); }
.pc-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.pc-type { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.pc-desc { font-size: 0.8rem; color: var(--text2); margin-bottom: 12px; line-height: 1.5; }
.pc-payout {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--gold);
  display: block; margin-bottom: 4px;
}
.pc-max { font-size: 0.75rem; color: var(--text3); }

/* ─── FINAL CTA ──────────────────────────────────────── */
.final-cta-section {
  padding: 120px 32px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fcta-container { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.fcta-orb-1 { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,175,55,0.08), transparent); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.fcta-orb-2 { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(192,57,43,0.07), transparent); border-radius: 50%; left: 30%; top: 20%; }
.fcta-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900; margin-bottom: 16px; }
.fcta-sub { font-size: 1.05rem; color: var(--text2); margin-bottom: 40px; }
.fcta-btns { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.fcta-note { font-size: 0.78rem; color: var(--text3); margin-top: 24px; }

/* ─── FOOTER ─────────────────────────────────────────── */
.landing-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 32px 32px; }
.footer-container { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand .footer-tagline { font-size: 0.85rem; color: var(--text2); line-height: 1.7; margin-bottom: 20px; max-width: 340px; }
.footer-cryptos { display: flex; gap: 12px; }
.footer-cryptos span {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text2);
}
.footer-links { display: flex; gap: 48px; }
.fl-group { display: flex; flex-direction: column; gap: 10px; }
.fl-title { font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 4px; }
.fl-group a { font-size: 0.85rem; color: var(--text2); text-decoration: none; transition: color 0.2s; }
.fl-group a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text3); flex-wrap: wrap; gap: 8px; }
.footer-legal { font-size: 0.75rem; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .hiw-steps { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .hiw-arrow { display: none; }
  .live-container { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .landing-nav { padding: 0 18px; height: 60px; }
  .nav-container { height: 60px; }

  /* Mobile nav dropdown */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    background: rgba(5,5,15,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    gap: 4px;
    z-index: 998;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  }
  .nav-links.open .nav-item {
    padding: 13px 16px;
    font-size: 1rem;
    border-radius: 8px;
    display: block;
  }
  .nav-links.open .btn-nav-play {
    margin-top: 8px;
    text-align: center;
    display: block;
    padding: 14px;
    font-size: 1rem;
  }

  /* Hamburger animation */
  .nav-hamburger { display: flex; }
  .nav-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Hero */
  .hero-section { padding-top: 80px; }
  .hero-container { padding: 50px 20px 40px; }
  .hero-content { text-align: center; }
  .h-badge { margin: 0 auto 20px; }
  .h-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .h-sub   { font-size: 0.95rem; }
  .h-cta   { flex-direction: column; gap: 10px; }
  .h-cta .btn-hero-primary,
  .h-cta .btn-hero-secondary { width: 100%; justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 0; }
  .h-stat { padding: 0 14px; }
  .h-divider { display: none; }

  /* Features, reviews, payout */
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .payout-grid   { grid-template-columns: repeat(2,1fr); }
  .hiw-steps     { grid-template-columns: 1fr; }

  /* Trust strip */
  .trust-container { gap: 0; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .trust-item { flex-shrink: 0; }
  .trust-sep  { display: none; }

  /* Bonus card */
  .bonus-card { padding: 36px 18px; }
  .bonus-pct  { font-size: clamp(4rem, 18vw, 7rem); }
  .bonus-actions { flex-direction: column; gap: 10px; }
  .bonus-actions a { width: 100%; justify-content: center; }

  /* Live section */
  .live-container { grid-template-columns: 1fr; }

  /* Footer */
  .footer-links { flex-wrap: wrap; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Ticker */
  .ticker-bar { height: 32px; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .reviews-grid  { grid-template-columns: 1fr; }
  .payout-grid   { grid-template-columns: 1fr; }
  .h-title       { font-size: 1.75rem; }
  .section-heading { font-size: 1.6rem; }
  .bonus-pct     { font-size: 5rem; }
  .hiw-step      { padding: 20px 16px; }
  .lfw-item      { grid-template-columns: auto 1fr auto auto; }
  .lfw-time      { display: none; }
  .review-card   { padding: 20px 16px; }
}
