/* ===== LIVE BANNER ===== */
.live-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #fff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(220, 53, 69, 0.4);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.live-banner-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.live-dot {
  font-size: 14px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.live-text {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.live-link:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.live-link i {
  margin-left: 6px;
  font-size: 12px;
}

.live-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}

.live-close:hover {
  color: #fff;
}

/* Shift body content down so banner doesn't overlap navbar */
.live-banner-active {
  padding-top: 48px;
}

@media (max-width: 600px) {
  .live-banner {
    padding: 8px 12px;
    flex-wrap: wrap;
  }
  .live-text { font-size: 13px; }
  .live-link { font-size: 13px; padding: 4px 12px; }
  .live-close { right: 8px; }
}
