/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Background with glow */
body {
  height: 100vh;
  background: radial-gradient(circle at top left, #1a1a1a, #000);
  color: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Glowing particles */
.background::before,
.background::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  filter: blur(150px);
  animation: float 6s infinite ease-in-out;
}
.background::before { top: -100px; left: -100px; }
.background::after { bottom: -100px; right: -100px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(30px); }
}

.container {
  text-align: center;
  z-index: 10;
}

.logo {
  width: 100px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px #FFD700);
}

.title {
  font-size: 3.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #FFD700, #FFC300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  animation: fadeInDown 1.5s ease;
}

.tagline {
  font-size: 1.3rem;
  color: #f5e1a4;
  margin-top: 10px;
  animation: fadeInUp 2s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.waitlist-form {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.waitlist-form input {
  padding: 12px 15px;
  border: 2px solid #FFD700;
  background: #111;
  color: #fff;
  border-radius: 8px 0 0 8px;
  outline: none;
  width: 250px;
}

.waitlist-form button {
  padding: 12px 20px;
  border: none;
  background: linear-gradient(90deg, #FFD700, #FFC300);
  color: #000;
  font-weight: bold;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: 0.3s;
}

.waitlist-form button:hover {
  opacity: 0.85;
}

footer {
  position: absolute;
  bottom: 20px;
  color: #aaa;
  font-size: 0.9rem;
}