.game-card {
  position: relative;
}

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

.start-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: min(100%, 168px);
  aspect-ratio: 1;
  gap: 0.35rem;
  margin: 0.35rem auto 0.15rem;
  padding: 0.45rem;
  background: linear-gradient(160deg, #f8e8ff 0%, #e8f4ff 100%);
  border: 3px solid rgba(155, 89, 182, 0.25);
  border-radius: 20px;
  box-shadow: 0 6px 0 rgba(20, 70, 50, 0.12);
  pointer-events: none;
}

.start-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  border-radius: 14px;
  background: #fff;
  border: 2px solid rgba(155, 89, 182, 0.15);
}

.start-cell-odd {
  border-color: var(--color-primary);
  background: var(--color-primary-light, #fff6e8);
  box-shadow: 0 0 0 2px rgba(255, 138, 31, 0.25);
}

.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.05rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin: 0.1rem 0 0.15rem;
}

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

.btn-odd-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  min-height: 6.4rem;
  padding: 0.55rem 0.35rem;
}

.btn-odd-choice .choice-emoji {
  font-size: clamp(2.2rem, 10vw, 2.75rem);
}

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

@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;
}

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