.status {
  font-family: var(--font-ui);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 102px;
  height: 26px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: #151922;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  text-transform: uppercase;
  white-space: nowrap;
}

.status.scheduled {
  border-color: rgba(77, 184, 255, 0.3);
  background: rgba(77, 184, 255, 0.12);
  color: #d6ecff;
}

.status.live {
  color: #ffe5e7;
  border-color: rgba(229, 72, 77, 0.42);
  background: rgba(229, 72, 77, 0.22);
}

.status.finished {
  color: #c6ceda;
  border-color: rgba(114, 124, 138, 0.28);
  background: rgba(88, 96, 108, 0.16);
}

.status.cancelled {
  color: #949daa;
  border-color: rgba(92, 100, 114, 0.24);
  background: #11151b;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(229, 72, 77, 0.12);
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }

  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}
