body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #1e1e2f, #2c2c54);
  color: white;
}

.container {
  max-width: 600px;
  margin: 50px auto;
  background: #1a1a2e;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

h1 {
  text-align: center;
}

.subtitle {
  text-align: center;
  opacity: 0.7;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  border: none;
}

.question {
  margin-top: 20px;
}

button {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  background: #ff4757;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #ff6b81;
}

#status {
  margin-top: 20px;
  text-align: center;
}