/**
 * CSS Variables — Єдині Новини
 * Light Apple-style with Ukrainian blue/yellow
 */

:root {
    --blue: #005BBB;
    --blue-light: #0070E0;
    --blue-pale: #E8F1FC;
    --blue-bg: rgba(0,91,187,0.04);
    --yellow: #FFD500;
    --yellow-soft: #FFF3B0;
    --yellow-bg: rgba(255,213,0,0.08);
    --bg: #fafafa;
    --card: #ffffff;
    --text: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-tertiary: #aeaeb2;
    --green: #30a14e;
    --orange: #e5922e;
    --red: #d1242f;
    --border: rgba(0,91,187,0.08);
    --shadow: 0 2px 12px rgba(0,91,187,0.3);
    --shadow-hover: 0 8px 30px rgba(0,91,187,0.1);
    --radius: 20px;
    --font: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
}

[data-theme="dark"] {
    --bg: #1a1a1a;
    --card: #242424;
    --text: #e5e5e7;
    --text-secondary: #a1a1a6;
    --text-tertiary: #6e6e73;
    --border: rgba(255,255,255,0.08);
    --shadow: 0 2px 12px rgba(0,0,0,0.3);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.4);
    --blue-pale: rgba(0,91,187,0.15);
    --blue-bg: rgba(0,91,187,0.08);
}
