body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #0c0c0c;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}
.coming-soon-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.coming-soon {
  max-width: 600px;
  width: 100%;
}
.gradient-text {
  font-size: 5.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #3de68f, #41c9f6, #a465f2, #f56d91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.subtitle {
  font-size: 1rem;
  color: #b3b3b3;
  margin-bottom: 2rem;
}
.notify-form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 1.5rem;
}
.notify-form input[type="email"] {
  background-color: #1a1a1a;
  color: #e0e0e0;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 1rem;
  flex: 1;
}
.notify-form input::placeholder {
  color: #888;
}
.notify-form button {
  background-color: #fff;
  color: #000;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.notify-form button:hover {
  background-color: #e6e6e6;
}
.notify-caption {
  color: #777;
  font-size: 0.85rem;
  font-style: italic;
}
.footer {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  font-size: 0.75rem;
  color: #555;
}