#fireworks-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
    background: transparent;
}

/* Toggle Switch Styling */
.nye-toggle-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
    user-select: none;
}

.nye-toggle-container:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nye-toggle-label {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.nye-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.nye-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.nye-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 34px;
}

.nye-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .nye-slider {
    background: linear-gradient(135deg, #d4af37 0%, #c9a635 100%);
}

input:checked + .nye-slider:before {
    transform: translateX(20px);
}

/* Responsive adjustment */
@media (max-width: 480px) {
    .nye-toggle-container {
        bottom: 15px;
        left: 15px;
        padding: 6px 10px;
    }
    .nye-toggle-label {
        font-size: 0.75rem;
    }
}
