.game-card {
  position: relative;
}

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

.start-goal {
  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, #fff4e8 0%, #ffe8c8 55%, #ffdcb0 100%);
  box-shadow: 0 6px 0 rgba(120, 70, 20, 0.12);
  pointer-events: none;
}

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

.goal-label {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-mango-deep);
}

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

.goal-chip {
  width: min(100%, 200px);
  margin: 0 auto;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, #fff4e8 0%, #ffe8c8 100%);
  border: 2px solid rgba(255, 138, 31, 0.25);
  box-shadow: 0 4px 0 rgba(120, 70, 20, 0.1);
  user-select: none;
}

.goal-chip .goal-emoji {
  font-size: 2rem;
  line-height: 1;
}

.goal-chip .goal-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-mango-deep);
}

.goal-chip.pulse {
  animation: pulse 0.5s ease;
}

.question-text {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

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

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

.choice-emoji {
  font-size: clamp(2.4rem, 10vw, 3rem);
  line-height: 1;
}

.choice-label {
  font-size: clamp(0.78rem, 3vw, 0.92rem);
  font-weight: 700;
  line-height: 1.15;
  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 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 (max-width: 420px) {
  .choices {
    grid-template-columns: 1fr 1fr;
  }

  .choices button:last-child:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }
}

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