body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(45deg, #2c2c54, #1a1c2a);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.container {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}
h1 {
  font-size: 24px;
  color: #ff4d4d;
  text-shadow: 0 0 10px #ff4d4d;
}
p {
  font-size: 16px;
  margin: 10px 0;
}
.progress-bar {
  width: 100%;
  background: #333;
  height: 10px;
  border-radius: 5px;
  margin: 10px 0;
}
.progress {
  height: 100%;
  background: #ff4d4d;
  width: 0;
  border-radius: 5px;
  transition: width 0.3s;
}
.question {
  font-size: 18px;
  margin: 20px 0;
  color: #ff9999;
}
.option {
  display: block;
  background: #444;
  margin: 10px auto;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  max-width: 80%;
}
.option:hover {
  background: #ff4d4d;
}
.option input {
  display: none;
}
.option label {
  cursor: pointer;
  font-size: 16px;
}
.button {
  background: #ff4d4d;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}
.button:hover {
  background: #cc0000;
}
.hidden {
  display: none;
}
.prompt {
  color: #ff9999;
  font-size: 14px;
  margin: 10px 0;
  animation: fadeIn 0.5s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 600px) {
  .container {
    width: 95%;
    padding: 10px;
  }
  h1 { font-size: 20px; }
  .question { font-size: 16px; }
  .option label { font-size: 14px; }
} 