.game-card {
  position: relative;
}

.screen {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.start-scene {
  margin: 0.15rem auto 0;
  width: min(100%, 280px);
}

.scene-stage {
  position: relative;
  width: min(100%, 280px);
  height: 180px;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(180deg, #e8f4ff 0%, #c8e8ff 55%, #a8d8f5 100%);
  box-shadow:
    inset 0 -10px 0 rgba(31, 100, 180, 0.1),
    0 6px 0 rgba(20, 60, 100, 0.1);
  overflow: hidden;
  user-select: none;
}

.scene-stage--demo {
  pointer-events: none;
}

.scene-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  z-index: 1;
}

.container-emoji {
  font-size: clamp(3rem, 14vw, 3.8rem);
  line-height: 1;
}

.container-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.scene-subject {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subject-emoji {
  font-size: clamp(2rem, 9vw, 2.6rem);
  line-height: 1;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.08));
}

.scene-subject[data-place="above"] {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.scene-subject[data-place="inside"] {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.scene-subject[data-place="below"] {
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
}

.scene-subject[data-place="outside"] {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.scene-stage.pulse {
  animation: scene-pulse 0.5s ease;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.question-text {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.btn-place-choice {
  margin-bottom: 0;
  min-height: 3.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
}

.feedback {
  min-height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 0.45rem 0.75rem;
}

.feedback-correct {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.feedback-wrong {
  background: var(--color-warn-bg);
  color: #d68910;
}

.final-score {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0.5rem 0 1rem;
}

@keyframes scene-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-6px);
  }
  40%,
  80% {
    transform: translateX(6px);
  }
}

.shake {
  animation: shake 0.45s ease;
}

@media (prefers-reduced-motion: reduce) {
  .scene-stage.pulse,
  .shake {
    animation: none;
  }
}
