body {
  font-family: 'Arial', sans-serif;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 40px;
}

.container {
  max-width: 600px;
  margin: auto;
  background: #1e1e1e;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

input, select, button {
  margin: 10px;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

input {
  width: 80%;
}

button {
  cursor: pointer;
  background: #ff4081;
  color: white;
  transition: background 0.3s;
}

button:hover {
  background: #e91e63;
}

#answerDisplay {
  font-size: 1.4rem;
  margin-top: 20px;
  color: #00e676;
}
