/* Watch Quiz - Futuristic Styling */
#watchQuizWrapper {
  background: radial-gradient(circle at center, #9501f4 0%, #600a95 100%);
  color: white;
  font-family: "Space Grotesk", sans-serif;
  padding: 40px;
  max-width: 500px;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0px 0px 20px rgba(149, 1, 244, 0.6);
  animation: fadeIn 1s ease-in-out;
}

.quiz-title {
  text-align: center;
  font-size: 1.8em;
  font-weight: bold;
  text-transform: uppercase;
  animation: pulse 1.5s infinite alternate;
}

.quiz-step {
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.quiz-step:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

input[type="radio"] {
  margin-right: 10px;
  accent-color: #ff66ff;
}

button#submitQuiz {
  background: linear-gradient(90deg, #ff00ff, #9501f4);
  color: white;
  font-size: 1.2em;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  margin: auto;
}

button#submitQuiz:hover {
  background: linear-gradient(90deg, #9501f4, #ff00ff);
  transform: scale(1.1);
}

/* Result Box */
#quizResult {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
