body {
    font-family: 'Arial', sans-serif;
    background-color: #2c3e50; /* Azul oscuro */
    color: #ecf0f1; /* Gris claro */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    background: #34495e; /* Gris más oscuro */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    max-width: 90%;
}

h1 {
    color: #f1c40f; /* Amarillo */
    font-size: 2em;
    margin-bottom: 10px;
}

.subtitulo {
    margin-bottom: 30px;
    font-style: italic;
    font-size: 1.2em;
}

/* Estilos de la Cuenta Regresiva */
.cuenta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.time-box {
    background: #2980b9; /* Azul medio */
    width: 15vw;
    padding: 1vw 1.2vw;
    border-radius: 8px;
    font-size: 1.5vw;
}

.time-box span {
    display: block;
    font-size: 3.5vw;
    font-weight: bold;
    color: #ecf0f1;
}

/* Mensaje de Lanzamiento */
#lanzamiento {
    margin-top: 40px;
    font-size: 1.5em;
    font-weight: bold;
    color: #2ecc71; /* Verde brillante */
    transition: opacity 1s;
}

.hidden {
    display: none;
}

.video-animacion {
    border-radius: 8px;
    width: 25%;
    height: 25%; 
    display: block; /* Asegura que 'width' y 'margin: auto' funcionen */
    margin: auto;
    object-fit: cover; 
}