:root {
    --bg-primary: #000000;
    --bg-secondary: rgba(28, 28, 30, 0.9);
    --bg-tertiary: rgba(44, 44, 46, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #8e8e93;
    --accent-blue: #0a84ff;
    --accent-green: #30d158;
    --accent-red: #ff453a;
    --border-color: rgba(255, 255, 255, 0.08);
    --blur-amount: 16px;
    --transition-speed: 0.3s;
    --transition-default: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes textFade {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1000px;
    width: 100%;
    padding: 2rem;
    backdrop-filter: blur(var(--blur-amount));
}

header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(var(--blur-amount));
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.status-header {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(var(--blur-amount));
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.status-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.status-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.summary-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-value {
    font-size: 1.5rem;
    font-weight: 600;
}

.refresh-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-blue);
    font-size: 1.1rem;
    font-weight: 500;
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    box-shadow: 0 2px 8px rgba(10,132,255,0.08);
}

.status-item {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    transition: all var(--transition-speed) ease;
    opacity: 0;
    transform: translateY(10px);
    backdrop-filter: blur(var(--blur-amount));
}

.status-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: rgba(44, 44, 46, 0.9);
}

.status-item.fade-in {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 1;
    transform: translateY(0);
}

.status-item.online .status-text {
    color: var(--accent-green);
    background: rgba(48, 209, 88, 0.15);
}

.status-item.offline .status-text {
    color: var(--accent-red);
    background: rgba(255, 69, 58, 0.15);
}

.refresh-button {
    background: linear-gradient(90deg, var(--accent-blue), #0071e3);
    box-shadow: 0 4px 15px rgba(10, 132, 255, 0.3);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    padding: 0.8rem 2rem;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.refresh-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0071e3, var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.refresh-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 132, 255, 0.4);
}

.refresh-button:hover::before {
    opacity: 1;
}

.refresh-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(10, 132, 255, 0.4);
}

.refresh-button:disabled {
    background: var(--bg-tertiary);
    cursor: not-allowed;
    transform: none;
}

.refresh-icon {
    fill: currentColor;
}

#status-list {
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.status-item:last-child {
    border-bottom: none;
}

.status-item:hover {
    background: var(--bg-tertiary);
}

.status-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
}

.status-item a:hover {
    color: var(--accent-blue);
}

.status-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}

.online .status-text {
    color: var(--accent-green);
    background: rgba(48, 209, 88, 0.1);
}

.offline .status-text {
    color: var(--accent-red);
    background: rgba(255, 69, 58, 0.1);
}

.loading-text {
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem;
    font-style: italic;
}

.error-message {
    color: var(--accent-red);
    text-align: center;
    padding: 1rem;
    background: rgba(255, 69, 58, 0.1);
    border-radius: 8px;
    margin: 1rem;
}

footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    :root {
        --blur-amount: 8px;
    }
    
    .container {
        padding: 1rem;
    }
    
    header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .status-header {
        padding: 1.25rem;
    }
    
    .status-summary {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .refresh-button {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Smooth hover transitions */
.status-item {
    transition: var(--transition-default);
    will-change: transform;
}

.status-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Animated refresh button */
.refresh-button {
    transition: var(--transition-default);
}

.refresh-button:hover {
    transform: scale(1.02) translateY(-1px);
    box-shadow: 0 4px 16px rgba(10,132,255,0.2);
}

/* Smooth loading animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.status-item {
    animation: fadeIn 0.4s ease forwards;
}

/* Enhanced progress indicator */
.timer {
    position: relative;
    overflow: hidden;
}

.timer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-blue);
    transform: scaleX(calc(var(--timer-progress) / 100));
    transform-origin: left;
    transition: transform 0.5s linear;
}

/* Theme Variables */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f2f2f7;
    --bg-tertiary: #e5e5ea;
    --text-primary: #1c1c1e;
    --text-secondary: #636366;
    --border-color: rgba(0, 0, 0, 0.1);
    --accent-blue: #007aff;
}

[data-theme="light"] header h1 {
    background: none !important;
    color: var(--text-primary) !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-toggle:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}
.theme-toggle {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-default);
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--accent-blue);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

[data-theme="light"] .theme-toggle {
    background: var(--accent-blue);
    color: white;
}

[data-theme="light"] .theme-