/* =========================================================
   Light Theme Snow FX
   - Replace light-theme blobs/scanlines/stars with snowfall.
   - Controlled by existing FX toggle via body.fx-off.
   ========================================================= */

#snow{
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  display: none;
  opacity: 0.95;
}

[data-theme="light"] #snow{
  display: block;
}

/* Keep only snow for light mode background */
[data-theme="light"] body::before{
  display: none;
}

[data-theme="light"] body{
  background: var(--bg) !important;
}

/* Remove old light-mode ambient effects */
[data-theme="light"] .bg-blobs{
  display: none;
}

[data-theme="light"] .scanlines{
  display: none;
}

[data-theme="light"] #stars{
  display: none;
}

/* Remove nav glass/gradient in light mode */
[data-theme="light"] .nav{
  backdrop-filter: none;
  background: rgba(226, 234, 244, 0.94);
}

/* Reuse existing FX toggle semantics */
.fx-off #snow{
  display: none !important;
}
