/* theme.css */
:root {
  /* Dark Theme Backgrounds (Bilkul neutral dark, koi blue/purple tint nahi) */
  --bg: #0B0E14; 
  --bg-card: #12161D; 
  --navy: #131821; 
  --navy-light: #1C2331;
  
  /* === MAIN THEME COLOR (RELAXING GREEN) === */
  --blue: #8CE942; 
  --blue-rgb: 140, 233, 66; /* YEH NAYA HAI: Shadows aur glows ke liye */
  --blue-glow: rgba(var(--blue-rgb), 0.35); 
  
  /* Typography & Borders */
  --text: #F0EFEC; 
  --text-muted: #8A8A99;
  --border: rgba(255, 255, 255, 0.08); 
  
  /* Button & Badge Text Color */
  --btn-text: #050505;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif; 
  --nav-height: 72px; 
  --transition: 0.3s ease;
}

/* Global Overrides for Buttons & Badges */
.btn-primary, .nav-links a.nav-cta, .mobile-nav .btn-primary, .popular-badge {
    color: var(--btn-text) !important;
    font-weight: 700 !important;
    background: var(--blue) !important;
}
.btn-primary:hover, .nav-links a.nav-cta:hover {
    color: var(--btn-text) !important;
}