/* Shooting Stars Background Effect */
.shooting-star-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shooting-star {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(100, 233, 255, 0), rgba(255, 255, 255, 1));
    filter: drop-shadow(0 0 6px rgba(100, 233, 255, 0.4));
    animation: shooting-star-animation linear forwards;
    opacity: 0;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(100, 233, 255, 0.8);
}

@keyframes shooting-star-animation {
    0% {
        transform: translate(0, 0) rotate(var(--star-angle));
        opacity: 0;
        width: 0;
    }
    2% {
        opacity: 1;
        width: calc(150px * var(--star-length-scale, 1));
    }
    98% {
        opacity: 1;
        width: calc(150px * var(--star-length-scale, 1));
    }
    100% {
        transform: translate(var(--star-dist-x), var(--star-dist-y)) rotate(var(--star-angle));
        opacity: 0;
        width: calc(150px * var(--star-length-scale, 1));
    }
}
