/* /styles/variables.css */
/* Dark Theme with Neon Accents - GitHub Style */
:root {
    /* Dark Theme Colors */
    --color-black: #0d1117;
    --color-dark: #161b22;
    --color-darker: #010409;
    --color-white: #ffffff;
    
    /* Dark Gray Scale */
    --gray-50: #f0f6fc;
    --gray-100: #c9d1d9;
    --gray-200: #b1bac4;
    --gray-300: #8b949e;
    --gray-400: #6e7681;
    --gray-500: #484f58;
    --gray-600: #30363d;
    --gray-700: #21262d;
    --gray-800: #161b22;
    --gray-900: #0d1117;
    
    /* Neon Accent Colors */
    --neon-cyan: #00d9ff;
    --neon-blue: #58a6ff;
    --neon-purple: #bc8cff;
    --neon-green: #3fb950;
    --neon-pink: #ff7eb6;
    
    /* Primary Colors */
    --primary: var(--neon-cyan);
    --primary-dark: #00b8d9;
    --primary-light: #7ee7ff;
    --accent: var(--neon-blue);
    
    /* Semantic Colors */
    --success: var(--neon-green);
    --warning: #d29922;
    --danger: #f85149;
    
    /* Background Colors */
    --bg-primary: var(--color-darker);
    --bg-secondary: var(--gray-900);
    --bg-tertiary: var(--gray-800);
    --bg-overlay: rgba(13, 17, 23, 0.8);
    
    /* Text Colors */
    --text-primary: var(--gray-50);
    --text-secondary: var(--gray-200);
    --text-tertiary: var(--gray-300);
    --text-muted: var(--gray-400);
    
    /* Border Colors */
    --border-primary: var(--gray-700);
    --border-secondary: var(--gray-800);
    --border-accent: var(--neon-cyan);
    
    /* Layout */
    --max-width: 1280px;
    --header-height: 64px;
    --section-padding: 120px;
    --container-padding: 24px;
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    --font-mono: "SF Mono", "Fira Code", "Consolas", Monaco, "Cascadia Code", monospace;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-neon: 0 0 20px rgba(0, 217, 255, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Z-Index Scale */
    --z-base: 0;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    
    /* Glassmorphism */
    --glass-bg: rgba(22, 27, 34, 0.6);
    --glass-border: rgba(139, 148, 158, 0.2);
}