/* Coin indicator + coin change animation */

.coin-indicator {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #fff !important;
  font-weight: 600;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center;
  flex-shrink: 0 !important;
  flex-wrap: nowrap !important;
  overflow: visible;
  min-width: fit-content;
  max-width: none !important;
}

.coin-indicator:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.coin-change-animation {
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
}

