:root {
    /* Light Theme Colors */
    --header-bg: #131515;
    --header-text: #f4ffeb;
    --main-text: #2e3a24;
    --main-bg: #f2fafb;
    --hover-bg: #2b3a3b;
    --active-bg: #333838;
    --card-bg: #e8f9fd;
    --section-text: #4a5e3d;
    --sidebar-bg: #202222;
    --primary: #c80418;
    --cursor-color: #ec1818;
    --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: #000000;
    --header-text: #f0f3f4;
    --main-text: #a9dfbf;
    --main-bg: #000000;
    --hover-bg: #2b3a3b;
    --active-bg: #ca2129;
    --card-bg: #1d1d1d;
    --section-text: #a9dfbf;
    --sidebar-bg: #202222;
    --primary: #c80418;
    --border-color: rgba(255, 255, 255, 0.1);
}