.bg-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.star {
    position: absolute;
    background-color: #e7d18a;
    border-radius: 50%;
    opacity: 0.5;
    box-shadow: 0 0 10px 2px rgba(212, 175, 55, 0.3);
    animation: twinkle 3s infinite ease-in-out;
    animation-delay: calc(var(--delay) * 1s);
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

.meteor {
    position: fixed;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(212, 175, 55, 0.8));
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(212, 175, 55, 0.8);
    transform: rotate(45deg);
    animation: meteor 8s linear infinite;
    opacity: 0;
    z-index: -1;
}
.meteor3 {
    animation-delay: 10s;
    top: 100px;
}

@keyframes meteor {
    0% {
        transform: translateX(-100px) translateY(-100px) rotate(45deg);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateX(1000px) translateY(600px) rotate(45deg);
        opacity: 0;
    }
}