body {
    margin: 0;
    padding: 0;
    background: #020205; /* Fundo quase preto para as estrelas brilharem */
    overflow-x: hidden;
    color: white;
    min-height: 100vh;
}

/* Estrelas do Campo (Fixas e Piscantes) */
.star {
    position: fixed;
    background: white;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: twinkle var(--duration, 3s) infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Estrelas Cadentes (Meteoros) */
.meteor {
    position: fixed;
    height: 3px;
    width: 150px;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    z-index: 0;
    pointer-events: none;
    animation: shoot linear forwards;
}

@keyframes shoot {
    0% {
        transform: rotate(215deg) translateX(0);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: rotate(215deg) translateX(-1000px);
        opacity: 0;
    }
}

/* VIDEO DE FUNDO (Opcional se você tiver o arquivo) */
#video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5; /* Deixa o vídeo mais suave com o fundo gradiente */
}

/* Garante que o resto do site fique acima */
body * {
    position: relative;
    z-index: 1;
}