.game-card {
  position: relative;
}

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

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

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

.prompt-area {
  font-size: clamp(4.5rem, 18vw, 6.5rem);
  line-height: 1;
  text-align: center;
  padding: 1rem 0;
  user-select: none;
}

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

.btn-color {
  margin-bottom: 0;
  min-height: 5.8rem;
  border-width: 3px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0.3rem;
}

.btn-color.has-border {
  border-color: #b2bec3;
}

.btn-color.is-correct {
  outline: 3px solid var(--color-success);
}

.btn-color.is-wrong {
  outline: 3px solid var(--color-error);
}

.feedback {
  min-height: 2.5rem;
  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.5rem 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.12);
  }
}

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

.pulse {
  animation: pulse 0.5s ease;
}

.shake {
  animation: shake 0.45s ease;
}
