
#weather-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.raindrop, .snowflake {
    position: absolute;
    top: -10px;
    width: 5px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 0.8;
}

.snowflake {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

@keyframes fall {
    to { transform: translateY(100vh); }
}

.raindrop { animation: fall linear infinite; }
.snowflake { animation: fall linear infinite; }
