/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container {
    max-width: 800px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Logo y título */
.logo {
    margin-bottom: 20px;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fdbb2d, #b21f1f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Formulario */
.subscription-form {
    margin: 30px 0;
}

.subscription-form h3 {
    margin-bottom: 15px;
    font-weight: 500;
}

.form-group {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

input[type="email"] {
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 300px;
    font-size: 1rem;
}

button {
    padding: 12px 20px;
    background: #fdbb2d;
    color: #000;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

button:hover {
    background: #ffa500;
}

/* Redes sociales */
.social-media {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icon:hover {
    background: #fdbb2d;
}

/* Footer */
footer {
    margin-top: 30px;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 20px;
    }

    .logo h1 {
        font-size: 2.5rem;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .form-group {
        flex-direction: column;
        align-items: center;
    }

    input[type="email"] {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    button {
        width: 100%;
        border-radius: 5px;
    }
}