/* Design System Variables */

:root {
    /* Colors - Dark Cyber Theme */
    --bg-primary: #0a0e27;
    --bg-secondary: #141b33;
    --bg-card: #1a2238;

    --accent-primary: #00f6ff;
    --accent-secondary: #7000ff;
    --accent-tertiary: #00ff88;
    --accent-warning: #ff0080;

    --text-primary: #ffffff;
    --text-secondary: #b8c5db;
    --text-muted: #6b7a99;

    --border-color: #2a3a5a;
    --shadow-glow: rgba(0, 246, 255, 0.3);

    /* Typography */
    --font-heading: 'Inter', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Roboto', system-ui, sans-serif;
    --font-code: 'Fira Code', 'Consolas', monospace;

    /* Font Sizes - Desktop */
    --h1: 3.5rem;
    --h2: 2.5rem;
    --h3: 1.75rem;
    --h4: 1.5rem;
    --body: 1.125rem;
    --small: 0.875rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Layout */
    --max-width: 1200px;
    --header-height: 70px;
    --border-radius: 8px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.4);
    --shadow-glow-sm: 0 0 10px var(--shadow-glow);
    --shadow-glow-md: 0 0 20px var(--shadow-glow);
    --shadow-glow-lg: 0 0 30px var(--shadow-glow);
}
