html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #0f0c29; /* Deep cyberpunk purple */
  color: #fff;
  font-family: 'Orbitron', sans-serif;
}
.contact-choice {
  height: 100vh;
  background-color: #0f0c29;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
}

.choice-container {
  text-align: center;
}

.choice-container h2 {
  font-size: 2.5rem;
  color: #ff0055;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  color: #00ffe7;
  margin-bottom: 40px;
}

.contact-options {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.option {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #ff00c8;
  border-radius: 12px;
  padding: 30px;
  width: 250px;
  color: #ccc;
}

.option h3 {
  color: #ff00c8;
  margin-bottom: 10px;
}

.link {
  font-size: 1.1rem;
  color: #00ffe7;
  margin-top: 10px;
}