/* Layer 3: Shooting stars (z-index 3) */

.shooting-stars-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

/* Base style for each shooting star */
.shooting-star {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, white 0%, transparent 70%);
    opacity: 0;
}

/* Size variants */
.star-3 {
    width: 3px;
    height: 3px;
}

.star-4 {
    width: 4px;
    height: 4px;
}

.star-5 {
    width: 5px;
    height: 5px;
}

/* Generic animation settings for all shooting stars */
.shooting-animate {
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}