.live-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: none;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

.live-badge {
  font-size: 11px;
  padding: 3px 8px;
  font-weight: bold;
  animation: pulse 1.4s infinite;
}

.live-badge.deposit {
  background: none;
  color: #000;
}

.live-badge.withdraw {
  background: none;
  color: #000;
}

.live-text {
  opacity: .9;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: .7; }
  100% { transform: scale(1); opacity: 1; }
}

.arrow {
  margin-left: 6px;
  font-weight: bold;
}

.arrow.up {
  color: #00ffae;
}

.arrow.down {
  color: #FFD700;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.7);
}

.arrow.up {
  animation: pulseUp 1s infinite;
}

@keyframes pulseUp {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
