:root {
    --bg: #ffffff;
    --bg-alt: #f5f5f5;
    --text: #1a1a1a;
    --text-dim: #666;
    --accent: #c0392b;
    --border: #ddd;
}

[data-theme="dark"] {
    --bg: #14110f;
    --bg-alt: #1e1a17;
    --text: #eae6e0;
    --text-dim: #9a938a;
    --accent: #e07a5f;
    --border: #333;
}

body {
    background: var(--bg);
    color: var(--text);
    transition: background 0.2s, color 0.2s;
}