/* 
 * BesserGrowen US - Design Variables
 * Modern, dopamine-inducing US-style theme
 * Version: 1.0.0
 */

:root {
  /* Primary Palette - Electric Neon Vibes */
  --primary: #00ff88;
  --primary-glow: rgba(0, 255, 136, 0.3);
  --primary-dark: #00cc6a;
  
  --secondary: #ff3366;
  --secondary-glow: rgba(255, 51, 102, 0.3);
  
  --accent: #7c3aed;
  --accent-glow: rgba(124, 58, 237, 0.3);
  
  /* Neon Accents */
  --neon-blue: #00d4ff;
  --neon-pink: #ff006e;
  --neon-purple: #9d4edd;
  --neon-orange: #ff9500;
  --neon-yellow: #ffd60a;
  
  /* Dark Theme Base */
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-elevated: #1a1a24;
  --bg-hover: #22222e;
  
  /* Glass Morphism */
  --glass-bg: rgba(18, 18, 26, 0.8);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shine: rgba(255, 255, 255, 0.05);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7a;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
  --gradient-card: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary) 0%, var(--neon-blue) 100%);
  --gradient-fire: linear-gradient(135deg, var(--neon-orange) 0%, var(--secondary) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px var(--primary-glow);
  
  /* Typography */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
  
  /* Container */
  --container-max: 1400px;
  --container-padding: 1.5rem;
}

/* Media Query Variables via Custom Properties */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
  }
}
