/**
 * Snow Effect Styles
 * Hidden cinematic snow overlay for the player.
 */

#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998; /* Above content, below dashboard button (9999) */
  display: none;
  background: transparent;
}

#snow-canvas.active {
  display: block;
}
