/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #0f172a, #1e293b);
  color: white;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.logo {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(to right, #818cf8, #f472b6, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #cbd5e1;
}

.coming-soon {
  margin-top: 40px;
}

.soon-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.notify-form input {
  padding: 12px 16px;
  border: 1px solid #334155;
  border-radius: 8px;
  background: #1e293b;
  color: white;
  width: 100%;
  max-width: 300px;
}

.notify-form input::placeholder {
  color: #94a3b8;
}

.notify-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  background: linear-gradient(to right, #ec4899, #fb923c);
  color: white;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.notify-form button:hover {
  opacity: 0.9;
}

footer {
  margin-top: 50px;
  font-size: 0.8rem;
  color: #94a3b8;
}
