body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: 'Helvetica Neue', sans-serif;
  background: #f8c8dc;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  cursor: none;
  perspective: 1000px;
}

/* Transición de entrada/salida */
.fade-enter {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-enter-active {
  opacity: 1;
}

/* Menú superior centrado */
#menu {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 24px;
  background: rgba(0,0,0,0.7);
  padding: 10px 20px;
  border-radius: 8px;
  z-index: 9999;
  font-family: 'Helvetica Neue', sans-serif;
}

#menu a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap; /* ✅ Corrección para evitar salto de línea */
}

#menu a:hover {
  text-decoration: underline;
}

/* Estrella negra por defecto */
.particle {
  position: fixed;
  width: 14px;
  height: 14px;
  background: #000;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 
    68% 57%, 79% 91%, 50% 70%, 
    21% 91%, 32% 57%, 2% 35%, 
    39% 35%
  );
  pointer-events: none;
  z-index: 9999;
  animation: fadeOut 0.8s ease-out forwards;
}

/* Estrella rosa pastel alternativa */
.particle.light {
  background: #f8c8dc;
}

@keyframes fadeOut {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.5); }
}

/* Evita que .overlay tape el menú */
.overlay {
  background: rgba(0, 0, 0, 0.0);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.card {
  background: #f8c8dc;
  backdrop-filter: blur(8px);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  color: #000;
  max-width: 480px;
  width: 100%;
  margin: auto;
}

/* Caja de acceso centrada */
.acceso {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8c8dc;
  color: #000;
  padding: 32px;
  border-radius: 12px;
  font-family: 'Helvetica Neue', sans-serif;
  max-width: 360px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Scroll solo en lanzamientos */
#contenido {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
  padding-right: 48px;
  overflow-y: auto;
  max-height: 100vh;
  box-sizing: border-box;
}

.logo {
  font-family: 'syne', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
  color: #000;
  text-transform: lowercase;
}

#countdown {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #000;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

input[type="email"],
input[type="password"] {
  width: 75%;
  padding: 12px;
  background: #000;
  color: #f8c8dc;
  border: none;
  border-radius: 8px;
  outline: none;
  caret-color: #f8c8dc;
  font-size: 1rem;
  font-family: 'Helvetica Neue', sans-serif;
  text-align: center;
}

input::placeholder {
  color: #f8c8dc;
}

button {
  width: 75%;
  padding: 12px;
  background: #000;
  color: #f8c8dc;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

button:hover {
  background: #333;
}

/* Responsivo para móviles */
@media screen and (max-width: 480px) {
  .card {
    padding: 24px;
    max-width: 90%;
    border-radius: 10px;
  }

  .logo {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  #countdown {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  input[type="email"],
  input[type="password"],
  button {
    font-size: 0.95rem;
    padding: 11px;
  }

  /* ✅ Centrado de sección "Quiénes somos" en móviles */
  #quienes-somos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    text-align: center;
  }

  #quienes-somos .card {
    margin: auto;
    max-width: 90%;
  }
}
