.tvc-counter-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 1.05em;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(0,0,0,0.03);
}

.tvc-label { font-weight: 600; }

.tvc-value { font-weight: 700; }

.tvc-blinker {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  margin-left: 6px;
  opacity: 1;
  animation: tvc-blink 1s linear infinite;
}

/* Make the number pulse as well */
.blinking {
  animation: tvc-pulse 1s infinite;
}

/* Blink keyframes */
@keyframes tvc-blink {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.15; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes tvc-pulse {
  0% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}
