.footer-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 11px 15px;
  max-width: 100%;
  border: 1px solid rgba(234, 90, 58, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 234, 227, 0.92));
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.footer-live-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #34b56f;
  box-shadow: 0 0 0 0 rgba(52, 181, 111, 0.36);
  animation: footer-live-pulse 2.6s ease-out infinite;
}

.footer-live-text {
  min-width: 0;
  font-size: 14px;
  line-height: 1.45;
}

.footer-live-count {
  color: var(--accent);
}

@keyframes footer-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 181, 111, 0.36);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(52, 181, 111, 0);
    transform: scale(1.08);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(52, 181, 111, 0);
    transform: scale(1);
  }
}
