body {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  background-color: #0e0e0e;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 500px;
  padding: 20px;
}

.logo {
  font-size: 3em;
  margin-bottom: 0.5em;
  letter-spacing: 1px;
}

.ctrl-box {
  padding: 6px 12px;
  border: 2px solid white;
  margin-right: 5px;
  display: inline-block;
}

.thread {
  color: #FFB847; /* Amber Haze or update to Electric Fuchsia etc. */
  font-weight: bold;
}

.tagline {
  font-size: 1.5em;
  margin: 10px 0;
  color: #f0f0f0;
}

.subtext {
  font-size: 1em;
  color: #aaa;
  margin-bottom: 30px;
}

.email-form input {
  padding: 12px;
  border: none;
  width: 70%;
  max-width: 280px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.email-form button {
  padding: 12px 20px;
  background: #FFB847;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

.email-form button:hover {
  background: #ff9e00;
}

.socials a {
  margin: 0 10px;
  text-decoration: none;
  color: #888;
  font-size: 0.9em;
}

.socials a:hover {
  color: #FFB847;
}
