/* Reset */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: white;
    overflow-x: hidden;
    background: #0a0f1d;
}

/* Fondo animado */
.bg {
    position: fixed;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, #0F75BC, #043C6C, #0F75BC);
    animation: flow 12s ease-in-out infinite alternate;
    filter: blur(120px);
    z-index: -1;
}

@keyframes flow {
    0% { transform: translate(-20%, -20%); }
    100% { transform: translate(20%, 20%); }
}

/* Contenido */
.container {
    text-align: center;
    margin-top: 8vh;
}

/* Logo */
.logo {
    width: 160px;
    margin-bottom: 15px;
}

/* Títulos */
.title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Tarjeta */
.card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 40px;
    width: 420px;
    margin: 40px auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.soon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.countdown {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

/* Formulario */
.notify-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.notify-form input {
    padding: 12px;
    width: 60%;
    border-radius: 8px;
    border: none;
}

.notify-form button {
    padding: 12px 18px;
    background: #0F75BC;
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.notify-form button:hover {
    background: #0c5c94;
}

.msg {
    margin-top: 12px;
    font-size: 0.9rem;
}

