:root {
    /* BASE COLORS */
    --color-bg: #000;
    --color-bg-soft: rgba(0, 0, 0, 0.8);
    --color-text: #ffffff;
    --color-text-dark: #000000;

    /* PRIMARY ACCENT */
    --color-accent: #9664ff;
    --color-accent-soft: rgba(150, 100, 255, 0.3);
    --color-accent-glow: rgba(150, 100, 255, 0.6);

    /* GLASS / UI */
    --color-glass: rgba(255, 255, 255, 0.015);
    --color-glass-strong: rgba(255, 255, 255, 0.15);
    --color-border: rgba(255, 255, 255, 0.2);
    --color-border-soft: rgba(255, 255, 255, 0.1);

    /* SHADOWS */
    --shadow-dark: rgba(0, 0, 0, 0.4);
    --shadow-soft: rgba(0, 0, 0, 0.2);

    /* STATUS COLORS */
    --status-completed: rgba(150, 150, 150, 0.2);
    --status-ongoing: rgba(150, 100, 255, 0.4);
    --status-onhold: rgba(255, 150, 100, 0.2);
}