body {
  background: #000;
  color: #ccc;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
}
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 16px 0 16px;
  text-align: center;
}
.logo {
  width: 200px;
  margin-bottom: 32px;
}
h1 {
  font-size: 3rem;
  font-weight: 400;
  margin: 0 0 16px 0;
  line-height: 1.1;
}
.white {
  color: #fff;
}
.gold {
  color: #e6b85c;
}
.italic {
  font-style: italic;
}
.gray {
  color: #bdbdbd;
}
.subtitle {
  color: #bdbdbd;
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.waitlist-section {
  background: rgba(30,30,30,0.8);
  border-radius: 12px;
  padding: 32px 16px 24px 16px;
  margin-bottom: 32px;
}
.waitlist-section h2 {
  color: #fff;
  margin-bottom: 8px;
}
.waitlist-section p {
  color: #bdbdbd;
  margin-bottom: 24px;
}
#waitlist-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
#email {
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid #222;
  background: #111;
  color: #fff;
  width: 260px;
  font-size: 1rem;
}
#email:focus {
  outline: 2px solid #e6b85c;
}
button[type="submit"] {
  background: linear-gradient(90deg, #e6b85c 0%, #b88c2b 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  width: 260px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
button[type="submit"]:hover {
  background: linear-gradient(90deg, #b88c2b 0%, #e6b85c 100%);
}
.counter-container {
  color: #e6b85c;
  font-size: 1.1rem;
  margin-top: 8px;
}
footer {
  margin-top: 64px;
  text-align: center;
  color: #bdbdbd;
  font-size: 1rem;
  padding-bottom: 32px;
}
@media (max-width: 600px) {
  .container {
    padding-top: 24px;
  }
  h1 {
    font-size: 2.1rem;
  }
  .logo {
    width: 70px;
  }
  #email, button[type="submit"] {
    width: 100%;
    min-width: 0;
  }
} 