/* ============================================
   PRIME ODDS — GLOBAL STYLES
   ============================================ */

:root {
  --green: #00A86B;
  --green-dark: #007a4d;
  --green-light: #00d488;
  --green-glow: rgba(0, 168, 107, 0.25);
  --gold: #FFD700;
  --gold-dark: #c9aa00;
  --dark: #050a0e;
  --dark2: #0a1219;
  --dark3: #101d27;
  --dark4: #162030;
  --card: #111c26;
  --card-border: rgba(0, 168, 107, 0.15);
  --text: #e8f4f0;
  --text-muted: #7a9bb0;
  --text-dim: #4a6a7a;
  --white: #ffffff;
  --red: #ff4757;
  --blue: #1e90ff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-green: 0 4px 24px rgba(0,168,107,0.3);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

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

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

img { max-width: 100%; }

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10002;
  padding: 16px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(5,10,14,0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--card-border);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  flex-shrink: 0;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}

.logo-fallback {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.logo-name {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  flex: 1;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.btn-telegram {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-telegram:hover {
  background: rgba(37,211,102,0.2);
  border-color: #25d366;
}

.btn-outline {
  padding: 9px 20px;
  border: 1.5px solid var(--card-border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-primary {
  padding: 9px 20px;
  background: var(--green);
  color: white;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: var(--shadow-green);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: relative;
  z-index: 10003; /* always above the fullscreen nav overlay */
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,168,107,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,107,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,168,107,0.15), transparent 70%);
  top: -100px; left: -100px;
}

.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,136,0.08), transparent 70%);
  bottom: 0; right: 10%;
  animation-delay: -4s;
}

.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,215,0,0.05), transparent 70%);
  top: 30%; right: 30%;
  animation-delay: -2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-20px) scale(1.05); }
  66% { transform: translate(-10px,10px) scale(0.98); }
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0,168,107,0.1);
  border: 1px solid var(--green);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green-light);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}

.title-line { display: block; }
.title-line.accent {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-sub strong { color: var(--green-light); }

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-hero-primary {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0,168,107,0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,168,107,0.5);
}

.btn-hero-secondary {
  padding: 16px 32px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-secondary:hover {
  border-color: var(--green);
  color: var(--green-light);
}

.play-icon {
  width: 30px; height: 30px;
  background: rgba(0,168,107,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--green-light);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--card-border);
}

/* HERO VISUAL */
.hero-visual {
  flex: 1;
  max-width: 500px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.odds-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 320px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,168,107,0.1);
  animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.odds-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.live-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  animation: pulse 1.5s ease infinite;
}

.match-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  background: var(--dark3);
  padding: 4px 8px;
  border-radius: 4px;
}

.match-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.team-flag { font-size: 24px; }

.team-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.team-score {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
}

.vs {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-dim);
}

.prediction-bar { }

.pred-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.pred-result {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.pred-result.win { color: var(--green-light); }

.confidence-bar {
  height: 6px;
  background: var(--dark3);
  border-radius: 3px;
  margin-bottom: 6px;
  overflow: hidden;
}

.confidence-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 3px;
  animation: fillBar 2s ease 1s both;
}

@keyframes fillBar {
  from { width: 0 !important; }
}

.confidence-text {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.floating-tip {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 200px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: cardFloat 4s ease-in-out infinite;
}

.tip1 { top: -20px; right: -40px; animation-delay: -1s; }
.tip2 { bottom: 40px; right: -50px; animation-delay: -2.5s; }
.tip3 { bottom: -30px; left: 0; animation-delay: -0.5s; }

.tip-odd {
  font-weight: 700;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--dark3);
  color: var(--text-muted);
}

.tip-odd.green {
  background: rgba(0,168,107,0.15);
  color: var(--green-light);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 12px;
  border: 1px solid rgba(0,168,107,0.3);
  border-radius: 50px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* TODAY'S PICKS */
.today-picks { background: var(--dark2); }

.picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.pick-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
  cursor: pointer;
}

.pick-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

.pick-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.sport-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  background: rgba(0,168,107,0.1);
  color: var(--green-light);
  border-radius: 4px;
}

.match-time-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
}

.pick-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.pick-vs { font-size: 11px; color: var(--text-dim); font-weight: 400; }

.pick-prediction {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--dark3);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.pick-tip { font-size: 14px; font-weight: 600; color: var(--text); }

.pick-odds {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.pick-confidence {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.pick-confidence-bar {
  flex: 1;
  height: 4px;
  background: var(--dark3);
  border-radius: 2px;
  overflow: hidden;
}

.pick-confidence-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 2px;
}

.pick-locked {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: rgba(255,215,0,0.05);
  border: 1px dashed rgba(255,215,0,0.3);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

.picks-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* HOW IT WORKS */
.how-it-works { background: var(--dark); }

.steps-grid {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  max-width: 280px;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
}

.step-num {
  position: absolute;
  top: -16px; left: 20px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--green);
  background: var(--dark);
  border: 1px solid var(--green);
  padding: 4px 10px;
  border-radius: 4px;
}

.step-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.step-arrow {
  font-size: 28px;
  color: var(--green);
  flex-shrink: 0;
}

/* SPORTS SCROLL */
.sports-section { background: var(--dark2); overflow: hidden; }

.sports-scroll { overflow: hidden; padding: 20px 0; }

.sports-track {
  display: flex;
  gap: 16px;
  animation: scroll 25s linear infinite;
  width: max-content;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.sport-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}

/* TESTIMONIALS */
.testimonials { background: var(--dark); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card.featured {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--card), rgba(0,168,107,0.05));
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

.stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-author div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong { font-size: 14px; color: var(--white); }
.testimonial-author span { font-size: 12px; color: var(--text-dim); display: block; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,168,107,0.15) 0%, rgba(0,168,107,0.05) 100%);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 80px 24px;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.cta-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-telegram-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(37,211,102,0.1);
  border: 1.5px solid rgba(37,211,102,0.4);
  color: #25d366;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-telegram-big:hover {
  background: rgba(37,211,102,0.2);
  border-color: #25d366;
  transform: translateY(-2px);
}

/* FOOTER */
.footer {
  background: var(--dark2);
  padding: 80px 0 40px;
  border-top: 1px solid var(--card-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer-telegram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.25);
  color: #25d366;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  width: fit-content;
}

.footer-telegram:hover { background: rgba(37,211,102,0.15); }

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul { list-style: none; }

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 14px;
  color: var(--text-dim);
  transition: var(--transition);
}

.footer-links ul li a:hover { color: var(--green-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--card-border);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p { font-size: 13px; color: var(--text-dim); }

.payment-badges { display: flex; gap: 8px; }

.pay-badge {
  padding: 4px 10px;
  background: var(--dark3);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
}

/* ============================================
   PRICING PAGE
   ============================================ */
.page-header {
  padding: 140px 24px 80px;
  text-align: center;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0,168,107,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,107,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-header .section-tag { margin-bottom: 12px; }

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.pricing-section { padding: 80px 24px; }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.toggle-label { font-size: 15px; color: var(--text-muted); font-weight: 500; }

.toggle-switch {
  width: 56px; height: 28px;
  background: var(--dark3);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.toggle-switch.active { background: var(--green); }

.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch.active .toggle-thumb { transform: translateX(28px); }

.save-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-light);
  background: rgba(0,168,107,0.15);
  border: 1px solid rgba(0,168,107,0.3);
  padding: 3px 8px;
  border-radius: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 80px;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.plan-card.featured {
  border-color: var(--green);
  background: linear-gradient(160deg, var(--card), rgba(0,168,107,0.08));
  box-shadow: 0 0 0 1px var(--green), var(--shadow-green);
  transform: scale(1.03);
}

.plan-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.plan-card.elite {
  border-color: var(--gold-dark);
  background: linear-gradient(160deg, var(--card), rgba(255,215,0,0.05));
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 50px;
}

.plan-icon { font-size: 40px; margin-bottom: 12px; }

.plan-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-currency { font-size: 22px; color: var(--text-muted); font-weight: 600; }

.price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.price-period { font-size: 14px; color: var(--text-dim); }

.price-original {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.plan-features li .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,168,107,0.15);
  color: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.plan-features li .cross {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,71,87,0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.plan-cta {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  display: block;
}

.plan-cta.primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
}

.plan-cta.primary:hover {
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}

.plan-cta.outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--card-border);
}

.plan-cta.outline:hover {
  border-color: var(--green);
  color: var(--green-light);
}

.plan-cta.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}

.plan-cta.gold:hover { box-shadow: 0 8px 24px rgba(255,215,0,0.3); transform: translateY(-2px); }

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.auth-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,168,107,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,107,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
}

.auth-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 32px;
}

.auth-logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}

.auth-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
}

.auth-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input {
  padding: 14px 16px;
  background: var(--dark3);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-body);
  transition: var(--transition);
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,168,107,0.15);
}

.form-input::placeholder { color: var(--text-dim); }

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 16px;
}

.input-group .form-input { padding-left: 42px; }

.input-toggle {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.remember-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
}

.check-label input[type="checkbox"] { accent-color: var(--green); }

.forgot-link { font-size: 14px; color: var(--green); font-weight: 600; }
.forgot-link:hover { color: var(--green-light); }

.btn-auth {
  padding: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-auth:hover {
  box-shadow: var(--shadow-green);
  transform: translateY(-1px);
}

.btn-auth:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 13px;
}

.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--card-border);
}

.auth-footer {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.auth-footer a { color: var(--green); font-weight: 600; }
.auth-footer a:hover { color: var(--green-light); }

.auth-social { display: flex; flex-direction: column; gap: 12px; }

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px;
  background: var(--dark3);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-social:hover { border-color: rgba(255,255,255,0.3); background: var(--dark4); }

.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
}

.alert-error { background: rgba(255,71,87,0.1); border: 1px solid rgba(255,71,87,0.3); color: #ff6b6b; }
.alert-success { background: rgba(0,168,107,0.1); border: 1px solid rgba(0,168,107,0.3); color: var(--green-light); }

/* ============================================
   PREDICTIONS PAGE
   ============================================ */
.predictions-toolbar {
  background: var(--dark2);
  border-bottom: 1px solid var(--card-border);
  padding: 20px 0;
  position: sticky;
  top: 72px;
  z-index: 100;
}

.toolbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-tab {
  padding: 8px 18px;
  background: transparent;
  border: 1.5px solid var(--card-border);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
}

.filter-tab:hover, .filter-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.predictions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
}

.prediction-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.prediction-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
}

.prediction-card.locked {
  position: relative;
  overflow: hidden;
}

.prediction-card.locked::after {
  content: '🔒 Premium Only';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(5,10,14,0.85);
  backdrop-filter: blur(4px);
}

/* DASHBOARD */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  padding-top: 72px;
}

.sidebar {
  background: var(--dark2);
  border-right: 1px solid var(--card-border);
  padding: 32px 20px;
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.sidebar-menu li a:hover, .sidebar-menu li a.active {
  background: rgba(0,168,107,0.1);
  color: var(--green-light);
}

.sidebar-menu li a .menu-icon { font-size: 18px; }

.dashboard-content {
  padding: 40px;
  background: var(--dark);
}

/* PAYMENT MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--white);
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: var(--transition);
}

.modal-close:hover { color: var(--white); }

.plan-summary {
  background: var(--dark3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-summary-name { font-weight: 700; color: var(--white); }
.plan-summary-price { font-family: var(--font-display); font-size: 22px; color: var(--green-light); }

.paystack-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #00b8d4, #0077b6);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.paystack-btn:hover {
  box-shadow: 0 8px 24px rgba(0,184,212,0.35);
  transform: translateY(-1px);
}

.paystack-logo { font-size: 12px; opacity: 0.8; }

.payment-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 12px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* SPINNER */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* TOAST */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  z-index: 3000;
  animation: slideIn 0.3s ease;
  max-width: 320px;
}

.toast-success { background: var(--green); color: white; }
.toast-error { background: var(--red); color: white; }

@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav/actions */
  .hamburger    { display: flex; margin-left: auto; }
  .nav-actions  { display: none !important; }

  /* Fullscreen overlay — overrides dropdown from old styles */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001; /* above overlay bg (10000), below hamburger/navbar (10002+) */
    background: rgba(7, 14, 22, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 80px 24px 40px;
    box-sizing: border-box;
    text-align: center;
    overflow-y: auto;
    /* Reset any dropdown positioning from old rules */
    top: 0; left: 0; right: 0; bottom: 0;
    border-bottom: none;
  }
  .nav-links.open {
    display: flex;
  }

  /* Nav link text */
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    font-family: var(--font-display);
    font-size: 34px;
    letter-spacing: 2px;
    color: var(--white);
    display: block;
    width: 100%;
    text-align: center;
    transition: color 0.2s, transform 0.15s;
  }
  .nav-links a::after { display: none; } /* hide underline indicator in mobile */
  .nav-links a:hover, .nav-links a.active { color: var(--green-light); transform: scale(1.04); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .step-arrow { display: none; }
  .steps-grid { flex-direction: column; align-items: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-6px); }
  .auth-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .dashboard-content { padding: 24px 16px; }
  .hero { padding-top: 100px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 52px; }
  .hero-badge { font-size: 10px; }
  .page-header { padding: 120px 16px 60px; }
}
