:root {
    /* Light Theme Colors */
    --header-bg: #030712;
    --header-text: #f8fafc;
    --main-text: #0f172a;
    --main-bg: #f1f5f9;
    --hover-bg: #dbeafe;
    --active-bg: #bfdbfe;
    --card-bg: #f8fafc;
    --section-text: #1e293b;
    --sidebar-bg: #030712;
    --primary: #0066ff;
    --cursor-color: #0066ff;
    --border-color: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --header-bg: #030712;
    --header-text: #f8fafc;
    --main-text: #e2e8f0;
    --main-bg: #020617;
    --hover-bg: #0f1b3d;
    --active-bg: #172554;
    --card-bg: #080f24;
    --section-text: #cbd5e1;
    --sidebar-bg: #030712;
    --primary: #0066ff;
    --border-color: rgba(255, 255, 255, 0.1);
}