html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Kanit", sans-serif;
  background: #FFF2AC;
}

/* ✅ Container หลัก */
#quiz-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  position: relative;
}

/* ✅ กล่องของหน้า (9:16 BG) */
.page-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 9 / 16;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border-radius: 10px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}


/* ✅ เนื้อหาภายใน */
.overlay-content {
  text-align: center;
  padding: 1rem;
  color: #000;
}

/* ✅ ปุ่ม NEXT — จะถูก JS วางให้อยู่ในขอบล่างของรูปเสมอ */
#next-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  z-index: 10;
  text-align: center;
  transition: all 0.3s ease;
}

/* ✅ สำหรับมือถือ */
@media (max-width: 767px) {
  #next-btn {
    width: 80%;
  }
}
