:root {
    /* Color Palette */
    --color-primary: #DC143C;
    /* Crimson */
    --color-secondary: #E5E4E2;
    /* Platinum */
    --color-accent: #FFBF00;
    /* Amber */
    --color-background: linear-gradient(180deg, #000 10%, #0b1314 90%);
    /* Obsidian Gradient */
    --color-surface: rgba(255, 255, 255, 0.03);
    --color-text: #E5E4E2;
    --color-muted: #888888;
    --color-border: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 32px;
    --space-xl: 64px;
    --container-max: 1200px;
    --header-height: 80px;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --shadow-glow: 0 0 20px rgba(220, 20, 60, 0.2);
    --transition-fast: 0.2s ease;
}