.pl-premiere-countdown {
  text-align: center;
}

.pl-countdown {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.pl-countdown__unit {
  text-align: center;
}

.pl-countdown__number {
  display: block;
  color: var(--wp--preset--color--primary, #FFD700);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--wp--preset--font-family--heading, 'Montserrat', sans-serif);
}

.pl-countdown__label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pl-countdown__separator {
  color: var(--wp--preset--color--primary, #FFD700);
  font-size: 1.5rem;
  font-weight: 700;
}

.pl-countdown__live-badge {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pl-countdown__live-dot {
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  animation: pl-live-pulse 1.5s ease-in-out infinite;
}

.pl-countdown__live-text {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes pl-live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
