/* Explain: Theme design tokens (colors, fonts) — single source of truth for the app's appearance. */
:root {
    --primary-color: #e60000;
    --primary-hover: #cc0000;
    --secondary-color: #1a1a1a;
    --accent-color: #ff3333;
    --background-color: #151515;
    --surface-color: #222222;
    --text-color: #ffffff;
    --text-muted: #9ca3af;
    --border-color: #3a3a3a;
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Cairo', sans-serif;
}