:root {
    /* Colors */
    --color-primary: #0a0f1c; /* Deep Midnight Blue */
    --color-secondary: #1a2332; /* Lighter Blue-Grey for cards/sections */
    --color-accent: #00f2ff; /* Electric Blue */
    --color-accent-hover: #00c8d4;
    --color-text-main: #ffffff;
    --color-text-muted: #94a3b8;
    --color-border: #2d3748;
    --color-bg-body: #05080f; /* Very dark background */

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(10,15,28,0.95) 0%, rgba(5,8,15,0.95) 100%);
    --gradient-metallic: linear-gradient(145deg, #1a2332, #0a0f1c);
    --gradient-accent: linear-gradient(90deg, #00f2ff, #00a8ff);

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;

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

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 15px rgba(0, 242, 255, 0.3);

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