.game-card {
  position: relative;
}

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

.start-shadow {
  width: min(100%, 140px);
  aspect-ratio: 1;
  margin: 0.35rem auto 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, #fff6d6 0 28%, transparent 29%),
    radial-gradient(circle at 50% 100%, #2f3b46 0 34%, transparent 35%),
    linear-gradient(180deg, #7ec8ff 0%, #b8e4ff 55%, #dfe6e9 100%);
  box-shadow: 0 6px 0 rgba(20, 70, 50, 0.15);
  pointer-events: none;
}

.start-shadow-emoji {
  font-size: 3.2rem;
  line-height: 1;
  color: transparent;
  text-shadow: 0 0 0 #1a1a1a;
  filter: grayscale(1) contrast(1000%) brightness(0);
}

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

.shadow-stage {
  width: min(100%, 260px);
  margin: 0.1rem auto;
  padding: 1.1rem 0.75rem 1.35rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.55) 0 16%, transparent 17%),
    linear-gradient(180deg, #8fd0ff 0%, #c9ebff 42%, #eef2f5 70%, #cfd6dd 100%);
  box-shadow:
    inset 0 -18px 0 rgba(47, 59, 70, 0.12),
    0 8px 0 rgba(20, 70, 50, 0.12);
}

.prompt-area {
  font-size: clamp(4.6rem, 18vw, 6.4rem);
  line-height: 1;
  text-align: center;
  padding: 0.35rem 0 0.15rem;
  user-select: none;
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shadow-prompt {
  color: transparent;
  text-shadow: 0 10px 0 rgba(0, 0, 0, 0.18);
  filter: grayscale(1) contrast(1000%) brightness(0);
  transition: filter 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
}

.shadow-prompt.reveal {
  filter: none;
  color: inherit;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.08);
}

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

.btn-shadow-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.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;
}

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