* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: #000000;
  color: #fff;
  overflow: hidden;
}

.bg {
  position: fixed;
  inset: -10%;
  z-index: 0;
  background: #000000;
  transition: background 0.1s linear;
}

.blur {
  position: fixed;
  inset: 0;
  z-index: 1;
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
}

.content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  gap: 1rem;
}

.pill {
  background: transparent;
  color: #fff;
  padding: 0.65rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.85);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pill:nth-child(1) { animation-delay: 0.15s; }
.pill:nth-child(4) { animation-delay: 0.8s; }
.pill:nth-child(5) { animation-delay: 1.0s; }

.pill-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.stay {
  margin-top: 2rem;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  animation: revealStay 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.coming {
  margin: 1.5rem 0 2rem;
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
  animation: scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both,
             pulseGlow 3s ease-in-out 1.5s infinite;
}

/* ---- Keyframes ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealStay {
  from {
    opacity: 0;
    letter-spacing: 1.2em;
  }
  to {
    opacity: 1;
    letter-spacing: 0.5em;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(255,255,255,0.15),
      0 4px 30px rgba(0,0,0,0.35);
  }
  50% {
    text-shadow:
      0 0 40px rgba(255,255,255,0.35),
      0 0 80px rgba(255,255,255,0.1),
      0 4px 30px rgba(0,0,0,0.35);
  }
}
