/* Reset básico */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(135deg, #111, #1f1f1f);
  color: #fff;
}

/* Contenedor principal */
.coming {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Tarjeta */
.card {
  text-align: center;
  max-width: 500px;
  padding: 40px 30px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  animation: fadeIn 1s ease;
}

/* Logo */
.logo {
  width: 80px;
  margin-bottom: 20px;
}

/* Título */
h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Subtexto */
.subtitle {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Loader animado */
.loader {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top: 3px solid #ff6b00;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

/* Estado */
.status {
  font-weight: bold;
  color: #ff6b00;
  margin-bottom: 25px;
}

/* Formulario */
.notify {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.notify input {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.notify button {
  background: #ff6b00;
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.notify button:hover {
  background: #ff8c3a;
}

/* Animaciones */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .notify {
    flex-direction: column;
  }
}