:root {
    /* Colors - Neon Dark Theme */
    --bg-primary: #0a0a0f;
    --bg-secondary: #13131f;
    --bg-tertiary: #1c1c2e;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;

    --accent-primary: #00ff9d; /* Neon Green */
    --accent-secondary: #00d2ff; /* Neon Blue */
    --accent-glow: rgba(0, 255, 157, 0.2);
    
    --border-color: #2a2a3f;
    --border-hover: #3a3a5f;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'Fira Code', monospace;

    /* Effects */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px var(--accent-glow);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}
