/* ============================================================
   WHOOPII LAND — Icon Rain System
   Icons fall onto wave separators, spin, then fly off screen.
   ============================================================ */

.rain-icon {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  user-select: none;
  will-change: transform, opacity;
  top: 0;
  left: 0;
}

.rain-icon img {
  display: block;
  object-fit: contain;
  border-radius: 50%;
  /* No shadows — intentionally removed */
}

/* Hide on very small screens */
@media (max-width: 480px) {
  .rain-icon { display: none; }
}
