/* --- CONFIGURACIÓN DE PÁGINA --- */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    /* El fondo base es un degradado uniforme de espacio profundo */
    background: radial-gradient(ellipse at bottom, #10151c 0%, #050508 100%);
    overflow: hidden; /* Evita scrolls extraños */
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- EL UNIVERSO DE ESTRELLAS --- */
#universo {
    position: fixed; /* Ocupa toda la pantalla siempre */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Detrás de todo */
}

/* Estilo para cada estrella generada por JS */
.estrella {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.3; /* Opacidad base para que no desaparezcan del todo */
    
    /* Nombre de la animación, duración base y bucle infinito */
    animation: parpadeo infinite ease-in-out;
}

@keyframes parpadeo {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2); /* Un pequeño aumento de tamaño al brillar */
    }
}

/* --- TU CUADRO DE BIENVENIDA --- */
.contenedor-principal {
    position: relative;
    z-index: 10; /* Delante de las estrellas */
    padding: 20px;
}

.cuadro-bienvenida {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
}

.cuadro-bienvenida h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

.cuadro-bienvenida p {
    color: #555;
    font-size: 0.9em;
    line-height: 1.5;
    margin-top: 5px;
    margin-bottom: 5px;
}