/* Water Drops Effect */
.water-drop {
    position: fixed;
    /* Fixed to viewport to ensure visibility */
    top: -20px;
    width: 2px;
    height: 15px;
    /* Realistic drop look with gradient */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
    /* Glow for depth */
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    /* Ensure clicks pass through */
    animation: fall linear forwards;
    z-index: 99999;
    /* Very high z-index */
}

@keyframes fall {
    to {
        transform: translateY(100vh);
        /* Fall down the height of the viewport */
        opacity: 0;
    }
}

/* Ensure drops are visible on mobile */
@media (max-width: 768px) {
    .water-drop {
        width: 3px;
        /* Slightly larger for mobile visibility */
        height: 15px;
    }
}