body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #e96443, #904e95);
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  animation: fadeIn 1s ease-in-out;
}

h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

.question {
  font-size: 1.2em;
  margin: 20px 0;
  animation: slideUp 0.5s ease-out;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.option {
  background: #ffffff20;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.option:hover {
  background: #ffffff40;
}

button {
  padding: 10px 20px;
  margin: 10px;
  font-size: 1em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background-color: #fff;
  color: #333;
  transition: transform 0.3s ease;
}

button:hover {
  transform: scale(1.1);
}

#timer {
  font-weight: bold;
  margin-bottom: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
