body {
    background-color: #0e0e1a; /* Fondo oscuro futurista */
    color: #f0f0ff; /* Texto claro */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    overflow: hidden; /* Oculta cualquier barra de desplazamiento causada por el movimiento del fondo */
    background: radial-gradient(circle at center, #1a1a2e 0%, #0e0e1a 100%);
    animation: backgroundMove 15s infinite linear;
}

@keyframes backgroundMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 600px;
    padding: 20px;
    /* Un ligero desenfoque para que resalte sobre el fondo animado */
    background: rgba(14, 14, 26, 0.7);
    border-radius: 10px;
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.8)); /* Brillo más intenso */
}

.animated-text {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #ff6600; /* Color naranja del logo */
    /* Animación de brillo y parpadeo para el texto */
    animation: textGlow 2s infinite alternate ease-in-out;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px #ff6600, 0 0 10px #ff6600, 0 0 20px rgba(255, 102, 0, 0.5), 0 0 40px rgba(255, 102, 0, 0.2);
        opacity: 1;
    }
    50% {
        text-shadow: none;
        opacity: 0.8;
    }
}

p {
    font-size: 1.1em;
    opacity: 0.8;
}

.progress-bar {
    width: 100%;
    background-color: #333;
    border-radius: 5px;
    margin: 20px 0;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.5); /* Sombra más fuerte */
}

.progress {
    width: 70%;
    height: 20px;
    background-color: #ff6600;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
    }
}

.small-text {
    font-size: 0.9em;
    color: #999;
}