/* === SCORE DISPLAY === */

.stat-treasure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: 'Bubblegum Sans', cursive;
  color: var(--storybook-brown-deep);
}

.stat-treasure .stat-label {
  font-size: 12px;
}

.stat-treasure .score-value {
  font-size: 20px;
  font-weight: bold;
  min-width: 40px;
  text-align: center;
  transition: transform 0.2s ease;
}

/* Score increase animation */
.stat-treasure.score-up .score-value {
  animation: scoreUp 0.3s ease-out;
}

@keyframes scoreUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    color: var(--storybook-gold-highlight);
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .stat-treasure .score-value {
    font-size: 18px;
  }
}
