.heritage-quiz-locked {
  overflow: hidden;
}

.heritage-quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.58);
}

.heritage-quiz-overlay.is-hidden {
  display: none;
}

.heritage-quiz-modal {
  position: relative;
  width: min(680px, 100%);
  padding: 32px;
  border-radius: 24px;
  background: #fffaf0;
  color: #1f2937;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.heritage-quiz-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.heritage-quiz-label {
  margin: 0 0 10px;
  color: #a16207;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.heritage-quiz-title {
  margin: 0 0 22px;
  font-size: 24px;
  line-height: 1.5;
}

.heritage-quiz-choices {
  display: grid;
  gap: 12px;
}

.heritage-quiz-choice {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e5d3a1;
  border-radius: 14px;
  background: #ffffff;
  color: #1f2937;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
}

.heritage-quiz-choice span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fef3c7;
  font-weight: 700;
}

.heritage-quiz-choice:hover {
  background: #fffbeb;
}

.heritage-quiz-choice.is-correct {
  border-color: #16a34a;
  background: #ecfdf5;
}

.heritage-quiz-choice.is-wrong {
  border-color: #dc2626;
  background: #fef2f2;
}

.heritage-quiz-result,
.heritage-quiz-skip-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 16px;
  background: #fff7ed;
}

.heritage-quiz-result-title {
  margin: 0 0 8px;
  font-weight: 700;
}

.heritage-quiz-explanation {
  margin: 0;
  line-height: 1.8;
}

.heritage-quiz-skip,
.heritage-quiz-continue {
  margin-top: 18px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: #92400e;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.heritage-quiz-skip {
  background: transparent;
  color: #92400e;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .heritage-quiz-modal {
    padding: 24px 18px;
  }

  .heritage-quiz-title {
    font-size: 20px;
  }
}