/* ═══════════════════════════════════════════════════════════
   JAI CLUB – Premium Dark Gaming CSS
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #ff2d2d;
  --red-dark: #c00000;
  --red-glow: rgba(255,45,45,0.5);
  --green:    #00e676;
  --green-dark:#00a152;
  --green-glow:rgba(0,230,118,0.5);
  --gold:     #ffd700;
  --gold-dark:#b8860b;
  --gold-glow:rgba(255,215,0,0.5);
  --bg:       #050508;
  --bg2:      #0a0a0f;
  --bg3:      #0f0f1a;
  --card-bg:  rgba(255,255,255,0.03);
  --border:   rgba(255,255,255,0.08);
  --text:     #e8e8f0;
  --text-muted:#8888aa;
  --font-main:'Orbitron', 'Rajdhani', sans-serif;
  --font-body :'Rajdhani', 'Inter', sans-serif;
  --transition:0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

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

/* ─── PARTICLES CANVAS ───────────────────────────────────── */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ─── UTILITY ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.gold { color: var(--gold); }
.gold-glow { color: var(--gold); text-shadow: 0 0 20px var(--gold-glow), 0 0 40px var(--gold-glow); }

/* ─── KEYFRAMES ──────────────────────────────────────────── */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes floatBall {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.1); }
}
@keyframes floatBallAlt {
  0%, 100% { transform: translateY(-15px) scale(1); }
  50%       { transform: translateY(20px) scale(0.95); }
}
@keyframes blink {
  0%, 49%, 100% { opacity: 1; box-shadow: 0 0 12px 4px currentColor; }
  50%, 99%      { opacity: 0.15; box-shadow: none; }
}
@keyframes blinkAlt {
  0%, 49%, 100% { opacity: 0.2; box-shadow: none; }
  50%, 99%      { opacity: 1; box-shadow: 0 0 12px 4px currentColor; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,45,45,0.5); }
  50%       { transform: scale(1.05); box-shadow: 0 0 0 18px rgba(255,45,45,0); }
}
@keyframes pulseTelegram {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,136,204,0.6), 0 8px 40px rgba(0,136,204,0.4); }
  50%       { box-shadow: 0 0 0 20px rgba(0,136,204,0), 0 8px 40px rgba(0,136,204,0.2); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.5; }
}
@keyframes liveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.7); }
}
@keyframes countdownTick {
  0% { opacity: 1; } 50% { opacity: 0.6; } 100% { opacity: 1; }
}
@keyframes neonFlicker {
  0%,100% { opacity: 1; }
  92%      { opacity: 1; }
  93%      { opacity: 0.6; }
  94%      { opacity: 1; }
  96%      { opacity: 0.7; }
  97%      { opacity: 1; }
}
@keyframes barGrow {
  from { width: 0; }
  to   { width: 85%; }
}
@keyframes slideCard {
  from { opacity: 0; transform: translateY(60px) rotateX(10deg); }
  to   { opacity: 1; transform: translateY(0) rotateX(0deg); }
}
@keyframes heroTitleAnim {
  from { opacity: 0; transform: translateY(-30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes feedScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5,5,8,0.97);
  box-shadow: 0 4px 30px rgba(255,45,45,0.1);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; cursor: default;
}
.logo-icon { color: var(--gold); font-size: 1.5rem; animation: neonFlicker 4s infinite; }
.logo-text {
  font-family: var(--font-main);
  font-size: 1.4rem; font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 1px; text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--red), #ff6b35);
  color: #fff !important;
  padding: 8px 20px; border-radius: 6px;
  box-shadow: 0 0 14px rgba(255,45,45,0.4);
  transition: all var(--transition);
}
.nav-links .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(255,45,45,0.7);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: rgba(5,5,8,0.98); border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-muted); text-decoration: none;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 1px;
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .nav-cta {
  margin-top: 12px;
  background: linear-gradient(135deg, var(--red), #ff6b35);
  color: #fff !important; border-bottom: none !important;
  border-radius: 6px; padding: 12px 20px; text-align: center;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    -45deg,
    #050508, #0d0005, #000d05, #08000d,
    #1a0000, #001a00, #050508, #0a0505
  );
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(255,45,45,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(0,230,118,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 50% 50%, rgba(255,215,0,0.04) 0%, transparent 70%);
}

/* Floating Balls */
.floating-balls { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.ball {
  position: absolute; border-radius: 50%;
  filter: blur(1px);
}
.ball-red {
  background: radial-gradient(circle at 35% 35%, #ff6060, var(--red) 50%, var(--red-dark));
  box-shadow: 0 0 20px 6px var(--red-glow);
}
.ball-green {
  background: radial-gradient(circle at 35% 35%, #60ffa0, var(--green) 50%, var(--green-dark));
  box-shadow: 0 0 20px 6px var(--green-glow);
}
.ball-gold {
  background: radial-gradient(circle at 35% 35%, #ffe880, var(--gold) 50%, var(--gold-dark));
  box-shadow: 0 0 20px 6px var(--gold-glow);
}
.ball-1 { width:60px;height:60px; top:12%;  left:8%;   animation: floatBall 5s ease-in-out infinite; }
.ball-2 { width:45px;height:45px; top:20%;  right:10%; animation: floatBallAlt 6s ease-in-out infinite; }
.ball-3 { width:35px;height:35px; top:60%;  left:5%;   animation: floatBall 7s ease-in-out infinite 1s; }
.ball-4 { width:55px;height:55px; bottom:20%;right:8%;  animation: floatBallAlt 5.5s ease-in-out infinite 0.5s; }
.ball-5 { width:25px;height:25px; top:80%;  left:15%;  animation: floatBall 4.5s ease-in-out infinite 0.8s; }
.ball-6 { width:40px;height:40px; top:35%;  left:3%;   animation: floatBallAlt 6.5s ease-in-out infinite 0.3s; }
.ball-7 { width:20px;height:20px; top:15%;  left:40%;  animation: floatBall 4s ease-in-out infinite 1.2s; opacity:0.7;}
.ball-8 { width:18px;height:18px; bottom:30%;left:45%;  animation: floatBallAlt 5s ease-in-out infinite 0.6s; opacity:0.6;}

/* Signal Bar */
.signal-bar {
  position: absolute; top: 80px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 16px;
  z-index: 2; padding: 10px;
}
.signal-bar-bottom { top: auto; bottom: 70px; }
.signal {
  width: 14px; height: 14px; border-radius: 50%;
}
.red-signal {
  background: var(--red); color: var(--red);
  animation: blink 1.2s ease-in-out infinite;
}
.green-signal {
  background: var(--green); color: var(--green);
  animation: blinkAlt 1.2s ease-in-out infinite;
}
.red-signal:nth-child(2n)  { animation-delay: 0.3s; }
.green-signal:nth-child(2n){ animation-delay: 0.6s; }
.red-signal:nth-child(3n)  { animation-delay: 0.9s; }
.green-signal:nth-child(3n){ animation-delay: 1.1s; }

/* Hero Content */
.hero-content {
  position: relative; z-index: 3;
  text-align: center; max-width: 820px;
  padding: 0 20px;
  animation: fadeInUp 0.8s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,45,45,0.12); border: 1px solid rgba(255,45,45,0.3);
  color: var(--red); padding: 6px 16px; border-radius: 30px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(255,45,45,0.15);
}
.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 900; line-height: 1.1;
  color: #fff; letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(255,255,255,0.1);
  animation: heroTitleAnim 1s ease 0.2s both;
  margin-bottom: 16px;
}
.brand-name {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, var(--red) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255,215,0,0.4));
}
.hero-subtitle {
  font-family: var(--font-body); font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted); font-weight: 400; line-height: 1.7;
  animation: fadeInUp 1s ease 0.4s both;
  margin-bottom: 28px;
}
.br-hide { display: block; }

/* Prediction Preview Pill */
.prediction-preview {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 40px; padding: 10px 24px;
  margin-bottom: 32px;
  font-family: var(--font-main); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2px; color: var(--text-muted);
  animation: fadeInUp 1s ease 0.6s both;
}
.pred-dot { width: 14px; height: 14px; border-radius: 50%; }
.dot-red  { background: var(--red);  box-shadow: 0 0 10px var(--red); }
.dot-green{ background: var(--green);box-shadow: 0 0 10px var(--green);}
.dot-gold { background: var(--gold); box-shadow: 0 0 10px var(--gold);}
.pred-divider { width: 1px; height: 20px; background: var(--border); }

/* CTA Buttons */
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
  margin-bottom: 28px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 10px;
  font-family: var(--font-main); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, #0088cc, #229ed9);
  color: #fff;
  box-shadow: 0 6px 30px rgba(0,136,204,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,136,204,0.6);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--red), #ff6b35);
  color: #fff;
  box-shadow: 0 6px 30px rgba(255,45,45,0.4);
}
.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255,45,45,0.7);
}
.btn-pulse {
  background: linear-gradient(135deg, #0088cc, #229ed9);
  color: #fff;
  padding: 20px 48px; font-size: 1.1rem;
  box-shadow: 0 8px 40px rgba(0,136,204,0.4);
  animation: pulseTelegram 2s ease-in-out infinite;
}
.btn-pulse:hover {
  transform: translateY(-4px) scale(1.04);
  animation-play-state: paused;
  box-shadow: 0 16px 60px rgba(0,136,204,0.7);
}

/* Trust badges */
.trust-badges {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 1s ease 1s both;
}
.badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--text-muted);
  font-family: var(--font-body); font-weight: 600;
  letter-spacing: 0.5px;
}
.badge i { color: var(--green); }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
  opacity: 0.6;
}

/* ─── SECTION COMMON ──────────────────────────────────────── */
.features, .how-it-works, .community, .final-cta {
  padding: 100px 0; position: relative;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-main); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 4px; color: var(--gold); text-transform: uppercase;
  margin-bottom: 14px; opacity: 0.8;
}
.section-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; color: #fff; letter-spacing: 2px;
  margin-bottom: 12px;
  text-shadow: 0 0 30px rgba(255,255,255,0.08);
}
.section-sub {
  font-size: 1rem; color: var(--text-muted);
  font-family: var(--font-body); font-weight: 400;
}

/* ─── FEATURES ───────────────────────────────────────────── */
.features {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 24px;
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  cursor: default;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,45,45,0.05), rgba(0,230,118,0.03));
  opacity: 0; transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,215,0,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(255,215,0,0.1);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  position: relative;
}
.red-glow {
  background: rgba(255,45,45,0.12);
  color: var(--red);
  box-shadow: 0 0 20px rgba(255,45,45,0.2);
}
.green-glow {
  background: rgba(0,230,118,0.12);
  color: var(--green);
  box-shadow: 0 0 20px rgba(0,230,118,0.2);
}
.gold-glow {
  background: rgba(255,215,0,0.12);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(255,215,0,0.2);
}
.feature-label {
  font-family: var(--font-main); font-size: 0.65rem; font-weight: 700;
  color: var(--text-muted); letter-spacing: 3px;
  margin-bottom: 10px;
}
.feature-card h3 {
  font-family: var(--font-main); font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 10px; line-height: 1.4;
}
.feature-card p {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 16px;
}
.feature-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-family: var(--font-main); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 2px; padding: 3px 10px; border-radius: 20px;
}
.tag.red   { background: rgba(255,45,45,0.15); color: var(--red); border: 1px solid rgba(255,45,45,0.3); }
.tag.green { background: rgba(0,230,118,0.15); color: var(--green); border: 1px solid rgba(0,230,118,0.3); }
.tag.gold-tag { background: rgba(255,215,0,0.15); color: var(--gold); border: 1px solid rgba(255,215,0,0.3); }

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.how-it-works { background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; position: relative;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 24px;
  position: relative; overflow: hidden; text-align: center;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.step-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,215,0,0.3);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 30px rgba(255,215,0,0.08);
}
.step-num {
  font-family: var(--font-main); font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,0.04); position: absolute;
  top: 12px; right: 16px; line-height: 1; letter-spacing: -2px;
  pointer-events: none;
}
.step-icon {
  width: 70px; height: 70px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 20px;
  position: relative;
}
.step-icon::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 1px solid currentColor; opacity: 0.2;
  animation: pulse 2.5s ease-in-out infinite;
}
.step-card h3 {
  font-family: var(--font-main); font-size: 0.95rem; font-weight: 700;
  color: #fff; margin-bottom: 12px; line-height: 1.4;
}
.step-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.step-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  color: var(--gold); text-decoration: none; letter-spacing: 0.5px;
  transition: gap var(--transition);
}
.step-btn:hover { gap: 12px; }
.signal-mini {
  display: flex; justify-content: center; gap: 12px;
  font-family: var(--font-main); font-size: 0.75rem; font-weight: 700;
}
.sig-r { color: var(--red); text-shadow: 0 0 8px var(--red); }
.sig-g { color: var(--green); text-shadow: 0 0 8px var(--green); }
.win-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000; font-family: var(--font-main); font-size: 0.7rem;
  font-weight: 900; letter-spacing: 2px; padding: 6px 16px; border-radius: 20px;
  margin-top: 12px;
}

/* ─── COMMUNITY ──────────────────────────────────────────── */
.community {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.community-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(255,45,45,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(0,230,118,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; margin-bottom: 48px;
}
.counter-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 24px; text-align: center;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.counter-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,215,0,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.counter-icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
}
.counter-value {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
  line-height: 1; margin-bottom: 8px;
}
.counter-label {
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text-muted); font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px;
}
.counter-bar {
  height: 3px; background: rgba(255,255,255,0.06);
  border-radius: 3px; overflow: hidden;
}
.bar-fill {
  height: 100%; border-radius: 3px; width: 0;
  transition: width 2s cubic-bezier(0.4,0,0.2,1);
}
.red-fill   { background: linear-gradient(90deg, var(--red-dark), var(--red)); }
.green-fill { background: linear-gradient(90deg, var(--green-dark), var(--green)); }
.gold-fill  { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }

/* Live Feed */
.live-feed {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; max-width: 700px; margin: 0 auto;
}
.live-feed-header {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.03);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-main); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 3px; color: var(--text-muted);
  text-transform: uppercase;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); animation: liveDot 1s ease-in-out infinite;
  box-shadow: 0 0 8px var(--red);
}
.feed-scroll { padding: 0; overflow: hidden; max-height: 200px; }
.feed-item {
  display: grid; grid-template-columns: 80px 100px 1fr auto;
  align-items: center; gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  transition: background var(--transition);
}
.feed-item:hover { background: rgba(255,255,255,0.02); }
.feed-item:last-child { border-bottom: none; }
.feed-time { color: var(--text-muted); font-size: 0.75rem; }
.feed-color { font-family: var(--font-main); font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; }
.red-tag  { color: var(--red); }
.green-tag{ color: var(--green); }
.feed-game { color: var(--text-muted); font-size: 0.75rem; }
.win-tag {
  font-family: var(--font-main); font-size: 0.7rem; font-weight: 700;
  color: var(--green); background: rgba(0,230,118,0.1);
  padding: 3px 10px; border-radius: 20px; border: 1px solid rgba(0,230,118,0.2);
}

/* ─── FINAL CTA ──────────────────────────────────────────── */
.final-cta {
  background: var(--bg);
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,136,204,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(255,45,45,0.06) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 2; }
.cta-icon {
  font-size: 4rem; margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(255,215,0,0.6));
  animation: floatBall 3s ease-in-out infinite;
  display: inline-block;
}
.cta-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; color: #fff;
  line-height: 1.2; margin-bottom: 16px;
  letter-spacing: 2px;
}
.brand-glow {
  background: linear-gradient(135deg, var(--gold), var(--red));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255,215,0,0.3));
}
.cta-subtitle {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.urgency-bar {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,45,45,0.08);
  border: 1px solid rgba(255,45,45,0.2);
  border-radius: 8px; padding: 10px 20px;
  margin-bottom: 32px;
  font-size: 0.88rem; color: var(--text-muted);
}
.urgency-bar i { color: var(--red); }
.urgency-bar strong { color: var(--gold); font-family: var(--font-main); animation: countdownTick 1s ease infinite; }
.cta-note {
  margin-top: 20px; font-size: 0.83rem;
  color: var(--text-muted); display: flex; align-items: center;
  justify-content: center; gap: 6px; flex-wrap: wrap;
}
.cta-note i { color: var(--green); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 0; text-align: center;
  position: relative; z-index: 2;
}
.footer-logo {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 16px;
}
.footer-disclaimer {
  font-size: 0.78rem; color: rgba(255,255,255,0.2);
  max-width: 500px; margin: 0 auto 16px; line-height: 1.6;
}
.footer-links { margin-bottom: 12px; }
.footer-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.9rem; font-family: var(--font-body); font-weight: 600;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.15); letter-spacing: 1px; }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-in {
  opacity: 0; transform: translateY(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .feed-item { grid-template-columns: 70px 90px 1fr auto; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }

  .trust-badges { gap: 12px; }
  .prediction-preview { font-size: 0.7rem; gap: 10px; padding: 8px 16px; }
  .br-hide { display: none; }

  .signal-bar { gap: 10px; }
  .signal { width: 10px; height: 10px; }

  .feed-item { grid-template-columns: 1fr 1fr; row-gap: 4px; }
  .feed-game { display: none; }

  .ball-1,.ball-2,.ball-3,.ball-4 { width: 35px; height: 35px; }
  .ball-5,.ball-6,.ball-7,.ball-8 { display: none; }

  .section-header { margin-bottom: 40px; }
  .features, .how-it-works, .community, .final-cta { padding: 70px 0; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 2rem; }
  .cta-title  { font-size: 1.8rem; }
  .btn-pulse  { padding: 16px 32px; font-size: 0.95rem; }
}
