:root {
    /* Colors - Dark Theme */
    --bg-primary: #0f0e17;
    --bg-secondary: #1a1a2e;
    --bg-card: #16213e;
    --bg-card-hover: #1e2a4a;
    --bg-input: #0d1117;
    --bg-overlay: rgba(0, 0, 0, 0.7);

    /* Accent Colors */
    --accent-cyan: #00d9ff;
    --accent-violet: #7b68ee;
    --accent-green: #00e676;
    --accent-red: #ff4757;
    --accent-orange: #ffa502;
    --accent-yellow: #ffd32a;
    --accent-cyan-10: rgba(0, 217, 255, 0.1);
    --accent-cyan-15: rgba(0, 217, 255, 0.15);
    --accent-cyan-30: rgba(0, 217, 255, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    --gradient-hover: linear-gradient(135deg, #00c4e6, #6a5acd);
    --gradient-dark: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));

    /* Text */
    --text-primary: #e0e0e0;
    --text-secondary: #8892b0;
    --text-muted: #5a6580;
    --text-white: #ffffff;
    --text-link: var(--accent-cyan);

    /* Border */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --border-active: var(--accent-cyan);

    /* Fonts */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* 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: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-glow-cyan: 0 0 20px rgba(0, 217, 255, 0.3);
    --shadow-glow-violet: 0 0 20px rgba(123, 104, 238, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-overlay: 400;
    --z-modal: 500;
    --z-toast: 600;

    /* Container */
    --container-max: 1280px;
    --container-padding: var(--space-4);

    /* Header */
    --header-height: 64px;
}
