/* ═══════════════════════════════════════════════════════════════
   VARIABLES.CSS - GrowTycoon Design Tokens
   Max 300 Lines | Strainverse Style
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* ─── Colors: Neon Palette ─── */
    --neon-green: #39FF14;
    --neon-green-dim: #2ecc71;
    --neon-purple: #bc13fe;
    --neon-blue: #00FFFF;
    --neon-orange: #FF6B35;
    --neon-pink: #FF69B4;
    
    /* ─── Colors: Backgrounds ─── */
    --dark-bg: #0a0a0f;
    --dark-surface: #14141f;
    --dark-elevated: #1a1a2e;
    --glass-bg: rgba(20, 20, 30, 0.85);
    --glass-border: rgba(57, 255, 20, 0.2);
    
    /* ─── Colors: Grays ─── */
    --gray-100: #1a1a2e;
    --gray-200: #2d2d44;
    --gray-300: #404060;
    --gray-400: #6b6b8a;
    --gray-500: #9999b3;
    --gray-600: #ccccdd;
    
    /* ─── Colors: Status ─── */
    --success: #39FF14;
    --warning: #FFD93D;
    --error: #FF4757;
    --info: #00FFFF;
    
    /* ─── Typography ─── */
    --font-display: 'Orbitron', monospace;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* ─── Font Sizes ─── */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-base: 0.875rem;
    --text-lg: 1rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    
    /* ─── Font Weights ─── */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-black: 800;
    
    /* ─── Spacing ─── */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-10: 4rem;
    
    /* ─── Border Radius ─── */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* ─── Shadows ─── */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px var(--neon-green);
    --shadow-glow-purple: 0 0 20px var(--neon-purple);
    
    /* ─── Transitions ─── */
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-snap: cubic-bezier(0, 0, 0.2, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    
    /* ─── Z-Index Layers ─── */
    --z-base: 0;
    --z-above: 10;
    --z-nav: 100;
    --z-panel: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
    
    /* ─── Layout ─── */
    --container-max: 430px;
    --container-padding: 1rem;
    --hud-height: 80px;
    --nav-height: 70px;
    --safe-area-top: env(safe-area-inset-top, 0px);
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

/* ─── Dark Theme (Default) ─── */
[data-theme="dark"] {
    color-scheme: dark;
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
    :root {
        --duration-fast: 0ms;
        --duration-normal: 0ms;
        --duration-slow: 0ms;
    }
}
