/* Rain Container */
#rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

/* Raindrops */
.raindrop {
    position: absolute;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(174, 194, 224, 0.6));
    opacity: 0.6;
    animation: rain 1.5s linear infinite;
    transform: translateY(-100%);
}

/* Lightning Effect */
.lightning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    z-index: 9998;
    pointer-events: none;
}

/* Animations */
@keyframes rain {
    to {
        transform: translateY(calc(100vh + 100px));
    }
}

@keyframes lightning {
    0% { opacity: 0; }
    2% { opacity: 0.6; }
    4% { opacity: 0.2; }
    6% { opacity: 0.8; }
    8% { opacity: 0; }
    100% { opacity: 0; }
}
