/* Theme Toggle Styles */
.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle-animation {
    animation: rotateToggle 0.3s ease-in-out;
}

@keyframes rotateToggle {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

/* Light Theme Variables */
body.light-theme {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --brand-primary: #3b82f6;
    --brand-secondary: #10b981;
    --brand-accent: #8b5cf6;
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.2);
}

/* Dark Theme Variables (default) */
body:not(.light-theme) {
    --bg-primary: #011306;
    --bg-secondary: #02070c;
    --bg-tertiary: #0f172a;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);
}
