/* Au Bavarois Dart Liga - Themes Dark/Light */

/* THEME DARK (par defaut) */
:root,
[data-theme="dark"] {
    --bg: #1a1410;
    --bg-dark: #1a1410;
    --bg-card: #1f1a14;
    --bg-input: #2a2318;
    --text: #f0e6d6;
    --text-muted: #a89880;
    --text-dark: #6a5e50;
    --border: rgba(212,168,67,0.15);
    --border-gold: rgba(212,168,67,0.3);
    --gold: #D4A843;
    --gold-light: rgba(212,168,67,0.8);
    --radius: 8px;
}

/* THEME LIGHT (palette chaude, fond clair) */
[data-theme="light"] {
    --bg: #faf6ec;
    --bg-dark: #f5f0e0;
    --bg-card: #fff8e1;
    --bg-input: #ffffff;
    --text: #2a2318;
    --text-muted: #6a5e50;
    --text-dark: #a89880;
    --border: rgba(140,109,31,0.25);
    --border-gold: rgba(140,109,31,0.4);
    --gold: #8c6d1f;
    --gold-light: rgba(140,109,31,0.8);
    --radius: 8px;
}

[data-theme="light"] body {
    background: var(--bg);
    color: var(--text);
}
