.animal-card {
  background: var(--color-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 16px 16px 12px;
  padding: 24px 16px 20px;
  text-align: center;
}

.animal-emoji {
  font-size: 140px;
  line-height: 1;
  user-select: none;
  -webkit-user-select: none;
  animation: gentleBounce 2s ease-in-out infinite;
}

@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.animal-name {
  font-size: 32px;
  font-weight: bold;
  color: var(--color-text);
  margin-top: 12px;
}

.question-text {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #555;
  margin: 12px 0 18px;
}

/* ── Choices ── */
.choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 16px 24px;
}

.choice-btn {
  background: var(--color-card);
  border: 4px solid #eee;
  border-radius: var(--radius);
  padding: 22px 12px;
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.1s, border-color 0.15s, background 0.15s;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.choice-btn .choice-icon {
  font-size: 56px;
  line-height: 1;
}

.choice-btn .choice-label {
  font-size: 19px;
}

.choice-btn.baby {
  background: #fff3f5;
  border-color: #ffc1cf;
}

.choice-btn.egg {
  background: #fffbe6;
  border-color: #ffe79a;
}

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

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

.choice-btn.wrong {
  background: #fde2e2 !important;
  border-color: var(--color-wrong);
  color: #c0392b;
  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: 64px;
  margin: 20px 0;
  word-break: break-all;
}

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