/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Body styling */
body {
  background: linear-gradient(135deg, #6dd5ed, #2193b0);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Main quiz box */
.quiz-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  width: 400px;
  text-align: center;
}

/* Title */
.quiz-title {
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

/* Question */
.question {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #444;
}

/* Options */
.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.option {
  background: #f1f1f1;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.option:hover {
  background: #e6f7ff;
  border-color: #2193b0;
}

/* Buttons */
.btn {
  background: #2193b0;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  margin: 5px;
  display: flex;
  justify-self: center;
  align-self: center;
}

.btn:hover {
  background: #176a81;
}

/* Result */
.result {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  color: #333;
}

/* Hidden utility */
/* .hidden {
  display: none;
} */
