@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto&display=swap');

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom right, #000000, #1a001a);
  color: white;
  font-family: 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  padding: 2rem;
  max-width: 600px;
}

.brand {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: #ff00aa;
  text-shadow: 0 0 10px #ff00aa;
  margin-bottom: 0.5rem;
}

.headline {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.subtext {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.prizes {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.email-form input {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.email-form button {
  background-color: #ff00aa;
  color: white;
  padding: 0.75rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

.email-form button:hover {
  background-color: #e60095;
}

.footer {
  font-size: 0.9rem;
  color: #ccc;
}

.footer a {
  color: #ff00aa;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
