/* Shooting Stars Background Effect - High Quality */
.stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: transparent;
}

/* Canvas-based Stars Background */
.stars-background-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* SVG-based Shooting Stars */
.shooting-stars-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

