:root {
    --bg-main: #ffffff;
    --bg-card: #f8f9fa;
    --border: #e0e0e0;
    --text-primary: #1a1a1a;
    --text-secondary: #5f6368;
    --text-muted: #757575;
    --accent: #202124;
    --accent-glow: rgba(0,0,0,0.05);
}
@media (prefers-color-scheme: dark) {
    :root {
    --bg-main: #181825;
    --bg-card: #1e1e2e;
    --border: #313244;
    --text-primary: #cdd6f4;
    --text-secondary: #a6adc8;
    --text-muted: #6c7086;
    --accent: #cba6f7;
    --accent-glow: rgba(255,255,255,0.1);
    }
}
