/* Theme Variables */
:root {
    --text-color: #ffffff;
    --bg-gradient: linear-gradient(135deg, #4B0000 0%, #000000 100%);
    --card-bg: rgba(255, 255, 255, 0.1);
    --card-hover: rgba(139, 0, 0, 0.3);
    --particle-color1: #8B0000;
    --particle-color2: #000000;
    --cta-bg: #8B0000;
}

body {
    background: var(--bg-gradient);
}

body.dark-mode {
    --bg-gradient: #000000;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle.active {
    background: rgba(255, 255, 255, 0.2);
}
