.prompt {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #555;
  padding: 8px 14px 4px;
  line-height: 1.6;
}

.replay-btn {
  display: block;
  margin: 4px auto 6px;
  font-size: 14px;
  padding: 6px 16px;
  background: var(--color-accent);
}

/* ── Ferris wheel ── */
.wheel-wrap {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 4px 8px;
}

#wheel-svg {
  width: 100%;
  height: auto;
  display: block;
}

.gondola-box {
  fill: #fff;
  stroke: #888;
  stroke-width: 2;
}

.gondola-box.answer-highlight {
  stroke: var(--color-primary);
  stroke-width: 4;
  fill: #fff0f5;
}

/* ── Animal queue ── */
.queue {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 4px 12px 10px;
  flex-wrap: wrap;
}

.queue-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 60px;
  padding: 6px 4px;
  border: 3px solid transparent;
  border-radius: 10px;
  transition: border-color 0.15s, background 0.15s;
}

.queue-item.asked {
  border-color: var(--color-primary);
  background: #fff0f5;
}

.queue-item .queue-num {
  font-size: 13px;
  color: #888;
  font-weight: bold;
}

.queue-item .queue-emoji {
  font-size: 30px;
  line-height: 1;
}

.queue-item .queue-name {
  font-size: 12px;
  color: #666;
}

/* ── Choices ── */
.choices-label {
  text-align: center;
  font-size: 15px;
  color: #999;
  margin: 4px 0 6px;
  font-weight: bold;
}

.choices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 14px 20px;
  max-width: 460px;
  margin: 0 auto;
}

.choice-btn {
  background: var(--color-card);
  border: 3px solid #eee;
  border-radius: var(--radius);
  padding: 10px 4px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.1s, border-color 0.15s, background 0.15s;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
}

.choice-btn svg {
  width: 44px;
  height: 44px;
}

.choice-btn:active {
  transform: scale(0.96);
}

.choice-btn.correct {
  background: #d4edda;
  border-color: var(--color-correct);
}

.choice-btn.wrong {
  background: #fde2e2;
  border-color: var(--color-wrong);
  animation: shake 0.4s;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* ── Feedback ── */
.feedback {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: bold;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 200;
}

.feedback.show { opacity: 1; }
.feedback.correct { color: var(--color-correct); }
.feedback.wrong   { color: var(--color-wrong); }

/* ── Result ── */
.result {
  text-align: center;
  padding: 40px 20px;
}

.result h2 {
  font-size: 36px;
  color: var(--color-primary);
}

.result .score {
  font-size: 24px;
  margin: 20px 0;
}

.result .candy-get {
  font-size: 56px;
  margin: 20px 0;
  word-break: break-all;
}

.result button {
  margin: 10px 8px;
  font-size: 18px;
}
