.game-card {
  position: relative;
}

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

.start-stimulus {
  width: min(100%, 180px);
  margin: 0.35rem auto 0.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 0.75rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff8e8 0%, #ffe9c8 55%, #ffd9a8 100%);
  box-shadow: 0 6px 0 rgba(20, 70, 50, 0.12);
  pointer-events: none;
}

.start-stimulus-emoji {
  font-size: 3.2rem;
  line-height: 1;
}

.start-stimulus-label {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.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: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.stimulus-card {
  width: min(100%, 240px);
  margin: 0.1rem auto;
  padding: 1.15rem 0.85rem 1.25rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(180deg, #fff8e8 0%, #ffe9c8 55%, #ffd9a8 100%);
  box-shadow:
    inset 0 -12px 0 rgba(255, 138, 31, 0.12),
    0 8px 0 rgba(20, 70, 50, 0.12);
  user-select: none;
}

.stimulus-emoji {
  font-size: clamp(3.8rem, 16vw, 4.8rem);
  line-height: 1;
}

.stimulus-label {
  font-size: clamp(1.35rem, 5vw, 1.55rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  text-align: center;
}

.stimulus-card.pulse {
  animation: pulse 0.5s ease;
}

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

.btn-opposite-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  min-height: 5.8rem;
  padding: 0.5rem 0.3rem;
}

.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 pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@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) {
  .pulse,
  .shake,
  .stimulus-card.pulse {
    animation: none;
  }
}
