/* Тёмна тема — оверрайд токенів. Вмикається атрибутом data-theme="dark" на <html>. */
:root[data-theme="dark"] {
    --bg: #0f1115;
    --bg-white: #161a23;
    --bg-card: #1b2030;
    --card-bg: #1b2030;
    --text: #e7eaf0;
    --text-light: #aab3c2;
    --text-muted: #8593a6;
    --border: #2a3142;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.55);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Перемикання РІЗКЕ (без transition) — як просив. */
:root[data-theme="dark"] body { background: var(--bg); color: var(--text); }
