/**
 * THEME.CSS
 * Theme configuration and color variables for dark mode
 */

:root {
    /* Dark Theme Colors */
    --dark-bg: #121212;
    --dark-card: rgba(30, 30, 30, 0.6);
    --dark-input: rgba(255, 255, 255, 0.05);

    /* Gold Theme Colors */
    --gold-primary: #FFD700;
    --gold-dim: #B8860B;
    --gold-glow: rgba(255, 215, 0, 0.3);

    /* Base Colors */
    --text-primary: #e0e0e0;
    --text-secondary: #888;
    --border-color: rgba(255, 255, 255, 0.1);
}

/* Theme Application Examples (if needed) */
body {
    background-color: var(--dark-bg);
    color: var(--text-primary);
}
