:root {
    --primary: #FFD700;
    --primary-rgb: 255, 215, 0;
    --secondary: #000000;
    --background: #FFFFFF;
    --text: #000000;
    --text-muted: #666666;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --radius: 0px; /* Sharp modern look */
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: #0a0a0a;
        --text: #ffffff;
        --text-muted: #a0a0a0;
    }
}
