body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #2d2d2d;
}

.soon-page {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  position: relative;
  padding: 2rem;
}

.soon-content {
  z-index: 2;
  max-width: 600px;
  width: 100%;
  background-color: rgba(255,255,255,0.85);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.soon-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('fondo-kuantik.jpeg'); /* reemplaza con la imagen real */
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.logo {
  max-width: 180px;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.countdown {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.subscribe-form {
  display: flex;
  max-width: 100%;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.subscribe-form input {
  padding: 0.6rem 1rem;
  flex: 1 1 250px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.subscribe-form button {
  background-color: #9F2DBF;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.subscribe-form button:hover {
  background-color: #801da1;
}

.social-invite {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #333;
}

.social-links {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
}

.social-links a {
  color: #9F2DBF;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #801da1;
}

.form-message {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.3;
}