/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #badd00;
    --accent-hover: #9abc00;
    --background-color: #000000;
    --text-color: #ffffff;
    --text-muted: #a1a1aa;
    --border-color: #27272a;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}