/* ============================================
   LIVE MATCH-DAY BANNER
   ============================================ */

.live-banner {
  position: sticky;
  top: 0;
  z-index: 90;
  background: linear-gradient(90deg, #c0392b 0%, #e74c3c 100%);
}

.live-banner[hidden] {
  display: none;
}

.live-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  text-align: center;
}

.live-banner-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  animation: live-banner-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

.live-banner-label {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.live-banner-text {
  font-weight: 600;
  font-size: 0.85rem;
}

@keyframes live-banner-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

@media (max-width: 600px) {
  .live-banner-inner {
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
  }

  .live-banner-text {
    font-size: 0.8rem;
  }
}
