.falling-dots {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: fall linear infinite;
    top: -1px;
}

.dot:nth-child(1) { left: 5%; animation-duration: 4s; animation-delay: 0s; background: #ff6b6b; }
.dot:nth-child(2) { left: 15%; animation-duration: 6s; animation-delay: 2s; background: #4ecdc4; }
.dot:nth-child(3) { left: 25%; animation-duration: 5s; animation-delay: 1s; background: #45b7d1; }
.dot:nth-child(4) { left: 35%; animation-duration: 7s; animation-delay: 3s; background: #96ceb4; }
.dot:nth-child(5) { left: 45%; animation-duration: 4.5s; animation-delay: 0.5s; background: #ffeead; }
.dot:nth-child(6) { left: 55%; animation-duration: 6.5s; animation-delay: 2.5s; background: #ffcc5c; }
.dot:nth-child(7) { left: 65%; animation-duration: 5.5s; animation-delay: 1.5s; background: #ff6f69; }
.dot:nth-child(8) { left: 75%; animation-duration: 8s; animation-delay: 4s; background: #88d8b0; }
.dot:nth-child(9) { left: 85%; animation-duration: 4.2s; animation-delay: 0.2s; background: #b5e7a0; }
.dot:nth-child(10) { left: 95%; animation-duration: 6.2s; animation-delay: 2.2s; background: #d4a5a5; }

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}