/* apps/web/styles/rain.css
 * Full-scene canvas overlay for rain. Non-interactive.
 */
.rain-layer {
  position: absolute;
  inset: 0;
  z-index: 11;          /* above scene, below UI chips/topbar */
  pointer-events: none; /* don’t block clicks */
  opacity: 0.85;        /* global rain opacity; tweak as you like */
}
@media (prefers-reduced-motion: reduce) {
  .rain-layer { display: none; }
}
