
/* Raindrop container */
.rain-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Single drop */
.drop {
  position: absolute;
  width: 2px;
  height: 15px;
  background: linear-gradient(to bottom, rgba(173,216,230,0.9), rgba(173,216,230,0));
  border-radius: 2px;
  opacity: 0.8;
  animation: rainFall linear forwards;
  filter: blur(0.4px);
}

/* Falling animation */
@keyframes rainFall {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(120vh);
    opacity: 0;
  }
}