/* --- Reset Básico y Estilos Globales --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e); /* Degradado oscuro y tecnológico */
    color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

/* --- Contenedor Principal --- */
.container {
    max-width: 600px;
    width: 100%;
}

.logo-play {
    font-size: 4.5rem;
    color: #00d2ff; /* Color neón azulado */
    margin-bottom: 20px;
    animation: bounce 2s infinite ease-in-out;
}

h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.subtitulo {
    font-weight: 300;
    font-size: 1.1rem;
    color: #b0b0d0;
    margin-bottom: 40px;
}

/* --- Cuenta Regresiva --- */
#countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tiempo-caja {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px 20px;
    width: 100px;
    backdrop-filter: blur(5px);
}

.tiempo-caja span {
    display: block;
}

.tiempo-caja span:first-child {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.tiempo-caja span:last-child {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #b0b0d0;
}

/* --- Formulario de Suscripción --- */
.cta-texto {
    font-weight: 400;
    margin-bottom: 15px;
}

#subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

#email {
    font-family: 'Poppins', sans-serif;
    width: 60%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
}

#email::placeholder {
    color: #b0b0d0;
}

#email:focus {
    outline: none;
    border-color: #00d2ff;
}

#subscribe-form button {
    font-family: 'Poppins', sans-serif;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background-color: #00d2ff;
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

#subscribe-form button:hover {
    background-color: #00bfff;
    transform: scale(1.05);
}

/* --- Redes Sociales --- */
.social-links a {
    color: #b0b0d0;
    font-size: 1.5rem;
    margin: 0 12px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: #00d2ff;
    transform: scale(1.2);
}

/* --- Animaciones --- */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- Responsividad (Móvil) --- */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    #countdown {
        gap: 8px;
    }

    .tiempo-caja {
        padding: 10px;
        width: 75px;
    }

    .tiempo-caja span:first-child {
        font-size: 1.8rem;
    }
    
    #subscribe-form {
        flex-direction: column;
        align-items: center;
    }
    
    #email {
        width: 100%;
        max-width: 350px;
    }
}