#night-sky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
	overflow: hidden;
	z-index: -1;
}

.shooting-star {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 1)  ;
    animation: shooting var(--duration, 3s) linear infinite;
    animation-delay: var(--delay, 0s);
}
.shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
	animation: tail var(--duration, 3s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}
@keyframes shooting {
    0%{
        transform: rotate(315deg) translateX(0);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: rotate(315deg) translateX(-1500px);
        opacity: 0;
    }
}

@keyframes tail{
	0%{
		width: 0;
	}
	30%{
		width: 300px;
	}
	100%{
		width: 0;
	}
}

.still-star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.8;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);

  /* twinkling animation */
  animation: twinkle var(--twinkle-duration, 2s) ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.2; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.2); }
}