/* Explain: Theme design tokens with dark, neon, and retro synthwave colors. - */
:root {
    --primary-color: #ff007f; /* Neon Pink */
    --primary-hover: #d9006c;
    --secondary-color: #000000; /* Deep Black */
    --accent-color: #ff8c00; /* Sunset Orange */
    --background-color: #09090b; /* Very dark background */
    --surface-color: #131316; /* Dark card surface */
    --text-color: #f4f4f5; /* White/Off-white text */
    --text-muted: #a1a1aa;
    --border-color: #27272a;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}