/* Fullscreen starfield layer (behind your content) */
:root {
  --bg: #0b0b10;
}
#ws-stars {
  position: fixed;
  inset: 0;
  z-index: 0; /* content should sit above this */
  display: block;
  pointer-events: none;
  background: radial-gradient(
      1200px 800px at 20% 10%,
      #141625 0%,
      transparent 60%
    ),
    radial-gradient(900px 600px at 80% 70%, #0f1120 0%, transparent 60%),
    var(--bg);
}
@media (prefers-reduced-motion: reduce) {
  #ws-stars {
    background: var(--bg);
  }
}