/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    /* Premium News Brand Colors */
    --primary-color: #0f172a; /* Deep Slate */
    --primary-hover: #1e293b;
    --secondary-color: #3b82f6; /* Modern Blue */
    --accent-color: #dc2626; /* Breaking News Red */
    
    /* Light Mode */
    --background-color: #ffffff;
    --surface-color: #f8fafc;
    --surface-hover: #f1f5f9;
    --text-color: #0f172a;
    --text-muted: #475569;
    --border-color: #e2e8f0;
    
    /* Typography */
    --font-heading: 'Tajawal', sans-serif;
    --font-body: 'Tajawal', sans-serif;
}

html.dark {
    --primary-color: #f8fafc;
    --primary-hover: #e2e8f0;
    --background-color: #0f172a;
    --surface-color: #1e293b;
    --surface-hover: #334155;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #334155;
}