.game-card {
  position: relative;
}

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

.start-situation {
  width: min(100%, 240px);
  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, #fff0f8 0%, #ffd8ec 55%, #ffc0e0 100%);
  box-shadow: 0 6px 0 rgba(120, 40, 80, 0.12);
  pointer-events: none;
}

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

.situation-label {
  font-size: 1.35rem;
  font-weight: 700;
  color: #9b3d7a;
}

.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);
}

.situation-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, #fff0f8 0%, #ffd8ec 55%, #ffc0e0 100%);
  box-shadow:
    inset 0 -12px 0 rgba(155, 61, 122, 0.12),
    0 8px 0 rgba(120, 40, 80, 0.12);
  user-select: none;
}

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

.situation-card .situation-label {
  font-size: clamp(1.35rem, 5vw, 1.55rem);
  font-weight: 700;
  color: #9b3d7a;
  text-align: center;
}

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

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

.btn-mood-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.8rem, 12vw, 3.6rem);
  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,
  .situation-card.pulse {
    animation: none;
  }
}
