*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
  _scene.scss
  Component: 3D Orbit Scene (2D Elliptical Approach)
  Purpose: Styles a perfectly centered, soft-glowing, smooth elliptical "orbit" of 7 stars.
  All stars are always perfect blurred circles, no hard centers, no 3D transforms.
*/
/**
 * Animations Partial
 * Defines keyframes for orbital rotation and star glow pulse.
 */
/* Orbital Rotation */
@keyframes orbit-rotate {
  0% {
    transform: rotateX(25deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(25deg) rotateY(360deg);
  }
}
/* Star Glow Pulse */
@keyframes star-glow {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}
body {
  min-height: 100vh;
  margin: 0;
  background: #000;
  overflow: hidden;
}

.orbit-container {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1000px;
  height: 280px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.star {
  position: absolute;
  width: 140px;
  height: 140px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: transparent;
  z-index: 1;
}
.star::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140px;
  height: 140px;
  background: #e0e0e0;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.78;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: star-glow 6s ease-in-out infinite;
}
.star::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 155%;
  height: 60%;
  transform: translate(-50%, -50%) scaleY(1.6) rotate(var(--star-trail-angle, 0deg));
  border-radius: 60% 60% 80% 80%/100% 100% 150% 150%;
  background: radial-gradient(ellipse at center, rgba(120, 180, 255, 0.55) 40%, transparent 90%);
  opacity: 0.74;
  pointer-events: none;
  z-index: -1;
  filter: blur(7px);
  transition: opacity 0.25s;
}

.star:nth-child(1)::before {
  animation-delay: 0s;
}

.star:nth-child(2)::before {
  animation-delay: 0.28s;
}

.star:nth-child(3)::before {
  animation-delay: 0.56s;
}

.star:nth-child(4)::before {
  animation-delay: 0.84s;
}

.star:nth-child(5)::before {
  animation-delay: 1.12s;
}

.star:nth-child(6)::before {
  animation-delay: 1.4s;
}

.star:nth-child(7)::before {
  animation-delay: 1.68s;
}

body {
  cursor: none;
}/*# sourceMappingURL=main.css.map */