/* Snow Effect Styles */
/* Add this to your existing CSS or link as separate stylesheet */

/* Snow Container */
#snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#snow-container.active {
    opacity: 1;
}

/* Snowflake styling */
.snowflake {
    position: absolute;
    top: -10px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    animation: fall linear infinite;
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes fall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(110vh) translateX(var(--drift)) rotate(360deg);
        opacity: 0.3;
    }
}

/* Let it Snow Button */
.let-it-snow-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10000;
}

.let-it-snow-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.let-it-snow-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.let-it-snow-button.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.let-it-snow-button .material-symbols-outlined {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.let-it-snow-button:hover .material-symbols-outlined {
    transform: rotate(90deg);
}

.let-it-snow-button.active .material-symbols-outlined {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Optional: Intensity Control Styles */
.snow-intensity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    color: white;
    font-size: 14px;
}

.snow-intensity-control input[type="range"] {
    width: 150px;
    cursor: pointer;
}
