/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #1e3a8a;
    --primary-hover: #172554;
    --secondary-color: #64748b;
    --accent-color: #fbbf24;
    --success-color: #22c55e;
    --error-color: #ef4444;
    --background-color: #1e3a8a;
    --surface-color: rgba(255, 255, 255, 0.1);
    --text-color: #ffffff;
    --text-muted: #bfdbfe;
    --border-color: rgba(255, 255, 255, 0.2);
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Inter', sans-serif;
}