:root {
  /* Colors */
  --bg-midnight: #0A192F;
  --bg-midnight-light: #112240;
  --sportpesa-blue: #3B82F6;
  --sportpesa-blue-glow: rgba(59, 130, 246, 0.6);
  --betika-lime: #FACC15;
  --betika-lime-glow: rgba(250, 204, 21, 0.4);
  --text-primary: #FFFFFF;
  --text-secondary: #8892B0;
  --gold: #FFD700;
  --gold-glow: rgba(255, 215, 0, 0.4);
  --danger: #EF4444;
  --success: #22C55E;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

.ambient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background-color: var(--bg-midnight);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.bg-beams {
  background-image: url('assets/energy_beams.png');
}

/* ============================================ */
/* UTILITIES                                    */
/* ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-lime { color: var(--betika-lime); }
.text-blue { color: var(--sportpesa-blue); filter: brightness(1.5); }
.text-gold, .gold-text { color: var(--gold); text-shadow: 0 0 10px var(--gold-glow); }
.lime-bg { background-color: var(--betika-lime); color: #000; }
.blue-bg { background-color: var(--sportpesa-blue); color: #fff; }
.relative { position: relative; }
.z-10 { z-index: 10; }

.glow-text {
  text-shadow: 0 0 10px var(--sportpesa-blue-glow), 0 0 20px var(--sportpesa-blue);
  color: #fff;
}

/* ============================================ */
/* TYPOGRAPHY                                   */
/* ============================================ */
h1, h2, h3 {
  font-family: var(--font-heading);
  letter-spacing: 1px;
}
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.section-desc {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* ============================================ */
/* NAVIGATION                                   */
/* ============================================ */
.glass-nav {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10, 25, 47, 0.7);
  border-bottom: 1px solid var(--glass-border);
  z-index: 100;
  padding: 15px 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nav-user-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sportpesa-blue), var(--betika-lime));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.user-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--betika-lime);
  letter-spacing: 1px;
}
.nav-logout {
  font-size: 0.75rem !important;
  padding: 6px 12px !important;
}

/* ============================================ */
/* BUTTONS                                      */
/* ============================================ */
.cta-button {
  font-family: var(--font-heading);
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.primary-cta {
  background: linear-gradient(135deg, var(--betika-lime), #EAB308);
  color: #0A192F;
  box-shadow: 0 0 15px var(--betika-lime-glow);
}
.primary-cta:hover {
  box-shadow: 0 0 25px var(--betika-lime-glow);
  transform: translateY(-2px);
}
.secondary-cta {
  background: var(--sportpesa-blue);
  color: white;
  box-shadow: 0 0 15px var(--sportpesa-blue-glow);
}
.secondary-cta:hover {
  background: #2563EB;
  filter: brightness(1.2);
  transform: translateY(-2px);
}
.ghost-cta {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}
.ghost-cta:hover {
  background: var(--glass-bg);
  border-color: var(--text-secondary);
}
.nav-cta {
  font-size: 0.85rem;
  padding: 8px 16px;
  background: transparent;
  color: var(--betika-lime);
  border: 1px solid var(--betika-lime);
}
.nav-cta:hover {
  background: var(--betika-lime);
  color: #000;
  box-shadow: 0 0 15px var(--betika-lime-glow);
}

/* Pulse Animation */
.pulse-anim {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--betika-lime-glow); }
  70% { box-shadow: 0 0 0 20px rgba(250, 204, 21, 0); }
  100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

/* ============================================ */
/* TICKER                                       */
/* ============================================ */
.ticker-wrapper {
  margin-top: 70px;
  background: #0a0a0a;
  border-bottom: 1px solid var(--sportpesa-blue);
  overflow: hidden;
  padding: 8px 0;
  position: relative;
  box-shadow: 0 2px 15px var(--sportpesa-blue-glow);
}
.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--betika-lime);
}
.ticker-item {
  display: inline-block;
  padding: 0 30px;
}
@keyframes tickerScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ============================================ */
/* HERO SECTION                                 */
/* ============================================ */
.hero {
  padding: 80px 0 60px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-content {
  flex: 1;
  max-width: 600px;
}
.hero-headline {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--betika-lime);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.floating-tablet {
  width: 100%;
  max-width: 500px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px var(--sportpesa-blue-glow));
}
@keyframes float {
  0% { transform: translateY(0px) rotateX(10deg); }
  50% { transform: translateY(-20px) rotateX(15deg); }
  100% { transform: translateY(0px) rotateX(10deg); }
}

/* ============================================ */
/* SECTIONS BASE                                */
/* ============================================ */
section {
  padding: 100px 0;
  position: relative;
}

/* ============================================ */
/* GRID SYSTEM                                  */
/* ============================================ */
.cards-grid {
  display: grid;
  gap: 30px;
}
.dual-grid { grid-template-columns: repeat(2, 1fr); }
.tri-grid { grid-template-columns: repeat(3, 1fr); }

/* ============================================ */
/* GLASSMORPHISM CARDS                          */
/* ============================================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px var(--glass-border);
  border-color: rgba(255,255,255,0.2);
}

/* Card Internals */
.card-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--glass-border);
  border: 1px solid rgba(255,255,255,0.1);
}
.premium-border {
  border: 1px solid var(--betika-lime);
  box-shadow: inset 0 0 20px rgba(250, 204, 21, 0.1);
}
.glass-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.multiplier, .price {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--betika-lime);
}
.subtext {
  font-size: 1rem;
  color: var(--text-secondary);
}
.currency {
  font-size: 1rem;
  vertical-align: middle;
}
.glass-card p {
  color: var(--text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}
.features {
  list-style: none;
  margin-bottom: 30px;
}
.features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #ddd;
}
.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--betika-lime);
  font-weight: bold;
}
.inst-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.pop-card {
  transform: scale(1.05);
  border-color: var(--sportpesa-blue);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}
.pop-card:hover {
  transform: scale(1.05) translateY(-10px);
}

/* ============================================ */
/* TIER HEADERS (Odds Store)                    */
/* ============================================ */
.tier-header {
  text-align: center;
  margin: 60px 0 30px 0;
  position: relative;
}
.tier-header:first-of-type {
  margin-top: 0;
}
.tier-badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.starter-badge {
  background: rgba(34, 197, 94, 0.2);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.midrange-badge {
  background: rgba(59, 130, 246, 0.2);
  color: var(--sportpesa-blue);
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.highvalue-badge {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.premium-badge {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(250, 204, 21, 0.3));
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.4);
  font-size: 0.85rem;
  padding: 6px 20px;
}
.tier-name {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.tier-desc {
  color: var(--text-secondary);
  font-size: 1rem;
}
.premium-tier-header {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* ============================================ */
/* ODDS PRODUCT CARDS                           */
/* ============================================ */
.odds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 20px;
}
.single-grid {
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 0 auto;
}

.odds-product-card {
  text-align: center;
  padding: 25px 20px;
  overflow: hidden;
}
.odds-img-wrap {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.odds-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.odds-product-card:hover .odds-img {
  transform: scale(1.08);
}
.odds-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.odds-x {
  font-size: 1.5rem;
  color: var(--betika-lime);
}
.odds-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--betika-lime);
  margin-bottom: 20px;
}

/* Elite Card */
.elite-card {
  border-color: var(--betika-lime);
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.15);
}
.elite-card:hover {
  box-shadow: 0 0 40px rgba(250, 204, 21, 0.3);
}

/* Vault Card (Fixed Odds) */
.vault-card {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.06) 0%, var(--glass-bg) 100%);
  box-shadow: 0 0 30px var(--gold-glow);
  padding: 40px 30px;
}
.vault-card:hover {
  box-shadow: 0 0 50px var(--gold-glow);
}
.vault-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.vault-img-wrap {
  height: 250px;
}
.vault-desc {
  color: #ccc !important;
  font-size: 1.05rem;
}
.vault-cta {
  background: linear-gradient(135deg, var(--gold), #B8860B);
  color: #000;
  font-size: 1.1rem;
  padding: 14px 28px;
  box-shadow: 0 0 20px var(--gold-glow);
}
.vault-cta:hover {
  box-shadow: 0 0 35px var(--gold-glow);
  transform: translateY(-3px);
}

/* ============================================ */
/* ROLLOVER PLANS                               */
/* ============================================ */
.rollovers {
  background: linear-gradient(180deg, var(--bg-midnight) 0%, var(--bg-midnight-light) 50%, var(--bg-midnight) 100%);
}

/* Loyalties Banner */
.loyalties-banner {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  margin-bottom: 50px;
  border-color: var(--sportpesa-blue);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(250, 204, 21, 0.05));
  flex-wrap: wrap;
}
.loyalties-icon {
  font-size: 3rem;
  flex-shrink: 0;
}
.loyalties-info {
  flex: 1;
  min-width: 250px;
}
.loyalties-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.loyalties-info p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.loyalties-split {
  width: 100%;
  max-width: 400px;
}
.split-bar {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  height: 38px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
}
.split-owner {
  background: linear-gradient(135deg, var(--betika-lime), #EAB308);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-house {
  background: var(--sportpesa-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rollover Cards */
.rollover-card {
  padding: 30px 25px;
}
.rollover-grid {
  align-items: stretch;
}

/* Compounding Table */
.compound-table {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin: 20px 0;
  font-size: 0.82rem;
  overflow-x: auto;
}
.compound-header {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 8px 5px;
  border-bottom: 1px solid var(--glass-border);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.compound-row {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 6px 5px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  color: #ccc;
  font-size: 0.8rem;
}
.compound-row:last-child {
  border-bottom: none;
}
.highlight-row {
  background: rgba(250, 204, 21, 0.08);
  border-radius: 6px;
  font-weight: 700;
  color: #fff;
}

/* Loyalties Breakdown */
.loyalties-breakdown {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0 25px 0;
}
.loyalty-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  color: #ccc;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.loyalty-line:last-child {
  border-bottom: none;
}
.loyalty-line.owner {
  color: var(--betika-lime);
}
.loyalty-line.house {
  color: var(--sportpesa-blue);
}

/* Risk Disclaimer */
.risk-disclaimer {
  margin-top: 40px;
  padding: 20px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  text-align: center;
}
.risk-disclaimer p {
  color: #ccc;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 40px 0;
  background: var(--bg-midnight-light);
  text-align: center;
}
.footer-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 15px 0;
}
.footer-links a {
  color: var(--betika-lime);
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* ============================================ */
/* AUTH MODAL                                   */
/* ============================================ */
.auth-modal-card {
  max-width: 420px;
  width: 90%;
  text-align: center;
  padding: 40px 35px;
  border-color: var(--sportpesa-blue);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
  position: relative;
}
.auth-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}
.auth-close-btn:hover {
  color: #fff;
}
.auth-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.auth-subtitle {
  color: var(--text-secondary) !important;
  font-size: 0.9rem !important;
  margin-bottom: 25px !important;
  flex-grow: 0 !important;
}
.auth-tabs {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid var(--glass-border);
}
.auth-tab {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.auth-tab.active {
  background: var(--sportpesa-blue);
  color: #fff;
}
.auth-tab:hover:not(.active) {
  color: #fff;
  background: rgba(255,255,255,0.05);
}
.auth-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #EF4444;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}
.auth-form .stylish-input {
  margin: 0 0 12px 0;
}
.auth-submit-btn {
  width: 100%;
  margin-top: 5px;
}
.auth-divider {
  position: relative;
  margin: 20px 0;
  text-align: center;
}
.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--glass-border);
}
.auth-divider span {
  position: relative;
  background: var(--bg-midnight);
  padding: 0 15px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.google-btn {
  width: 100%;
  padding: 12px 20px;
  background: #fff;
  color: #333;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s;
}
.google-btn:hover {
  background: #f1f1f1;
  box-shadow: 0 2px 10px rgba(255,255,255,0.1);
}

/* ============================================ */
/* PAYMENT MODAL                                */
/* ============================================ */
.custom-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.custom-modal.active {
  opacity: 1;
  pointer-events: all;
}
.modal-content {
  max-width: 450px;
  width: 90%;
  text-align: center;
  border-color: var(--betika-lime);
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.2);
}
.stylish-input {
  width: 100%;
  padding: 15px;
  margin: 25px 0;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--sportpesa-blue);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  border-radius: 8px;
  outline: none;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  letter-spacing: 2px;
}
.stylish-input:focus {
  border-color: var(--betika-lime);
  box-shadow: 0 0 15px var(--betika-lime-glow);
}
.modal-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.modal-actions .cta-button {
  flex: 1;
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 900px) {
  .dual-grid, .tri-grid, .odds-grid {
    grid-template-columns: 1fr;
  }
  .pop-card {
    transform: scale(1);
  }
  .pop-card:hover {
    transform: scale(1) translateY(-10px);
  }
  .hero-layout {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }
  .hero-headline {
    font-size: 2.5rem;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .loyalties-banner {
    flex-direction: column;
    text-align: center;
  }
  .loyalties-split {
    max-width: 100%;
  }
  .compound-header, .compound-row {
    font-size: 0.7rem;
    gap: 4px;
  }
  .odds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .single-grid {
    grid-template-columns: 1fr;
  }
  .nav-user-area {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  .odds-grid {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: 2rem;
  }
  .odds-value {
    font-size: 2.2rem;
  }
  .bot-grid {
    grid-template-columns: 1fr;
  }
  .sticky-footer-nav {
    padding: 10px 0;
  }
}

/* ============================================ */
/* NAV LINKS                                    */
/* ============================================ */
.nav-links {
  display: flex;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: var(--betika-lime);
  background: rgba(250, 204, 21, 0.1);
}
.nav-link.active-link {
  color: var(--betika-lime);
  background: rgba(250, 204, 21, 0.15);
  border: 1px solid rgba(250, 204, 21, 0.3);
}

/* ============================================ */
/* STICKY FOOTER NAV                            */
/* ============================================ */
.sticky-footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  gap: 0;
  z-index: 99;
  padding: 8px 0;
}
.sticky-nav-item {
  flex: 1;
  max-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-secondary);
  padding: 8px 0;
  transition: all 0.3s ease;
}
.sticky-nav-item:hover {
  color: var(--betika-lime);
}
.sticky-nav-item.active-sticky {
  color: var(--betika-lime);
}
.sticky-nav-item.active-sticky .sticky-icon {
  transform: scale(1.2);
}
.sticky-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}
.sticky-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Extra bottom padding for sticky footer */
body {
  padding-bottom: 80px;
}

/* ============================================ */
/* HERO BADGES                                  */
/* ============================================ */
.hero-badge-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-micro-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

/* ============================================ */
/* HUB CARDS (Landing Page)                     */
/* ============================================ */
.hub-card {
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.hub-card:hover {
  border-color: var(--betika-lime);
}
.hub-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.hub-highlight {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

/* ============================================ */
/* TESTIMONIALS                                 */
/* ============================================ */
.testimonials {
  background: linear-gradient(180deg, var(--bg-midnight) 0%, var(--bg-midnight-light) 50%, var(--bg-midnight) 100%);
}
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}
.testimonial-card {
  padding: 30px 25px;
}
.testimonial-stars {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.testimonial-text {
  color: #ccc !important;
  font-style: italic;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 20px !important;
  flex-grow: 1 !important;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sportpesa-blue), var(--betika-lime));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: #000;
  flex-shrink: 0;
}
.author-info {
  display: flex;
  flex-direction: column;
}
.author-info strong {
  font-size: 0.95rem;
}
.author-info span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.testimonial-payout {
  padding-top: 12px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: #ccc;
}

/* ============================================ */
/* TRUST SECTION                                */
/* ============================================ */
.trust-section {
  padding: 60px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.trust-item {
  padding: 30px 15px;
}
.trust-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--betika-lime);
  margin-bottom: 8px;
}
.trust-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================ */
/* FINAL CTA SECTION                            */
/* ============================================ */
.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-midnight-light) 0%, var(--bg-midnight) 100%);
}

/* ============================================ */
/* BOT MARKETPLACE                              */
/* ============================================ */
.bot-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.bot-filter {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  padding: 8px 20px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-secondary);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bot-filter:hover {
  border-color: var(--betika-lime);
  color: var(--betika-lime);
}
.bot-filter.active {
  background: var(--betika-lime);
  color: #000;
  border-color: var(--betika-lime);
}
.bot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bot-card {
  padding: 25px 20px;
  position: relative;
}
.bot-price-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--betika-lime);
  background: rgba(250, 204, 21, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(250, 204, 21, 0.2);
}
.bot-name {
  font-size: 1.2rem !important;
  margin-bottom: 8px !important;
  padding-right: 80px;
}
.bot-desc {
  font-size: 0.9rem;
  margin-bottom: 15px !important;
}
.bot-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.bot-meta-item {
  font-size: 0.8rem;
  color: var(--sportpesa-blue);
  filter: brightness(1.4);
}
.bot-brokers {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.2);
  border-radius: 6px;
}

/* ============================================ */
/* BROKER GRID                                  */
/* ============================================ */
.broker-section {
  padding: 60px 0;
}
.broker-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.broker-chip {
  padding: 15px 25px !important;
  text-align: center;
  border-radius: 10px !important;
  min-width: 140px;
}
.broker-chip strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}
.broker-chip span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ============================================ */
/* RESPONSIVE ADDITIONS                         */
/* ============================================ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .bot-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================ */
/* ONBOARDING WIZARD MODAL                      */
/* ============================================ */
.onboarding-card {
  max-width: 500px;
  padding: 0;
  overflow: hidden;
  text-align: left;
}
.wizard-header {
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wizard-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--betika-lime);
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wizard-progress {
  display: flex;
  gap: 8px;
}
.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.progress-dot.active {
  background: var(--betika-lime);
  box-shadow: 0 0 10px var(--betika-lime-glow);
  transform: scale(1.2);
}
.wizard-body {
  padding: 30px;
  min-height: 280px;
  position: relative;
}
.wizard-step {
  display: none;
  animation: fadeInStep 0.4s ease forwards;
}
.wizard-step.active {
  display: block;
}
@keyframes fadeInStep {
  from { opacity: 0; transform: translateX(15px); }
  to { opacity: 1; transform: translateX(0); }
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: inline-block;
}
.wizard-step h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #fff;
}
.wizard-step p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.wizard-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.wizard-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #e0e0e0;
  font-size: 0.95rem;
}
.wizard-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--betika-lime);
  font-weight: bold;
}
.wizard-footer {
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wizard-btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 8px 15px;
  transition: color 0.3s;
}
.wizard-btn-ghost:hover {
  color: #fff;
}
.wizard-btn-primary {
  padding: 10px 25px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  color: #000;
  background: linear-gradient(135deg, var(--betika-lime), #EAB308);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wizard-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--betika-lime-glow);
}
.wizard-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s;
}
.wizard-close-btn:hover {
  color: #fff;
}

/* ============================================ */
/* NEW LANDING PAGE STYLES                      */
/* ============================================ */
.hero-badge-row {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.hero-micro-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hub-showcase {
}
.hub-card {
  text-decoration: none;
  color: inherit;
}
.hub-card:hover h3 {
  color: var(--betika-lime);
}
.hub-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hub-highlight {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.testimonials {}
.testimonial-grid {
  gap: 25px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  border-top: 1px solid var(--glass-border);
  padding-top: 15px;
}
.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sportpesa-blue), var(--betika-lime));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
}
.author-info {
  display: flex;
  flex-direction: column;
}
.author-info strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
}
.author-info span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.testimonial-payout {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  background: rgba(0,0,0,0.2);
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
}

.trust-section {
  background: linear-gradient(180deg, transparent, rgba(10, 25, 47, 0.8), transparent);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 60px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .tri-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.8rem; }
  .hero-layout { flex-direction: column; text-align: center; }
  .hero-cta-group { justify-content: center; }
  .floating-tablet { max-width: 80%; }
}
.trust-item {
  text-align: center;
}
.trust-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--betika-lime);
  text-shadow: 0 0 20px var(--betika-lime-glow);
  margin-bottom: 10px;
}
.trust-label {
  font-size: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.sticky-footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  display: none;
  justify-content: space-around;
  padding: 12px 0 25px 0;
  z-index: 100;
}
@media (max-width: 768px) {
  .sticky-footer-nav {
    display: flex;
  }
  .footer {
    padding-bottom: 100px;
  }
}
.sticky-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  flex: 1;
}
.sticky-nav-item:hover, .sticky-nav-item.active {
  color: var(--betika-lime);
}
.sticky-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.sticky-label {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

/* ============================================ */
/* SHARE BUTTON                                 */
/* ============================================ */
.share-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  text-decoration: none;
  font-size: 1.2rem;
}
.share-btn:hover {
  background: var(--sportpesa-blue);
  color: #fff;
  border-color: var(--sportpesa-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--sportpesa-blue-glow);
}
.share-tooltip {
  position: absolute;
  top: -35px;
  right: 0;
  background: var(--betika-lime);
  color: #000;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.share-tooltip.show {
  opacity: 1;
}
.product-highlight {
  animation: productHighlight 2s ease;
}
@keyframes productHighlight {
  0% { box-shadow: 0 0 0px transparent; }
  20% { box-shadow: 0 0 30px var(--sportpesa-blue); border-color: var(--sportpesa-blue); transform: scale(1.02); }
  100% { box-shadow: 0 0 0px transparent; }
}
