@keyframes yellow-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes black-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 21, 21, 0.22);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes orange-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 21, 21, 0.22);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes orange-text-pulse {
  0% {
    color: var(--bs-body-color);
  }
  50% {
    color: var(--bs-link-color);
  }
  100% {
    color: var(--bs-body-color);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#broadcast-section .competition-broadcast-title {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--theme-heading);
}
#broadcast-section .competition-broadcast-meta {
  font-size: 0.92rem;
  color: var(--theme-muted);
}
#broadcast-section .competition-broadcast-meta i {
  color: var(--bs-primary);
  margin-right: 0.2rem;
}
#broadcast-section .competition-broadcast-sep {
  margin: 0 0.4rem;
}
#broadcast-section .competition-broadcast-note {
  font-size: 0.85rem;
  color: var(--theme-muted);
  margin-bottom: 0;
}
#broadcast-section .competition-day-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.15rem 0 1rem;
}
#broadcast-section .competition-day-tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--theme-card-border);
  background: var(--theme-surface-2);
  color: var(--theme-heading);
  border-radius: 0.85rem;
  padding: 0.65rem 0.85rem;
  min-width: 5.5rem;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
#broadcast-section .competition-day-tab:hover, #broadcast-section .competition-day-tab:focus-visible {
  border-color: rgba(var(--bs-primary-rgb), 0.45);
  outline: none;
}
#broadcast-section .competition-day-tab.is-active {
  background: rgba(var(--bs-primary-rgb), 0.12);
  border-color: rgba(var(--bs-primary-rgb), 0.55);
  color: var(--theme-heading);
}
#broadcast-section .competition-day-tab-label {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}
#broadcast-section .competition-day-tab-date {
  font-size: 0.75rem;
  color: var(--theme-muted);
}
#broadcast-section .competition-day-tab-badge {
  margin-top: 0.2rem;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), 0.12);
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
}
#broadcast-section .competition-day-summary {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  color: var(--bs-body-color);
}
#broadcast-section .competition-stream-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
#broadcast-section .competition-stream-btn {
  border: 1px solid var(--theme-card-border);
  background: transparent;
  color: var(--theme-heading);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
}
#broadcast-section .competition-stream-btn i {
  color: #ff0000;
  margin-right: 0.25rem;
}
#broadcast-section .competition-stream-btn.is-active, #broadcast-section .competition-stream-btn:hover, #broadcast-section .competition-stream-btn:focus-visible {
  background: rgba(var(--bs-primary-rgb), 0.12);
  border-color: rgba(var(--bs-primary-rgb), 0.5);
  color: var(--theme-heading);
}
#broadcast-section .competition-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
#broadcast-section .competition-video-wrap iframe,
#broadcast-section .broadcast-masjid-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
#broadcast-section .competition-video-wrap iframe {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
}
#broadcast-section .competition-broadcast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#broadcast-section .broadcast-sidebar-lead {
  font-size: 0.88rem;
  color: var(--theme-muted);
}
#broadcast-section .broadcast-masjid-player {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--theme-surface-2);
  border: 1px solid var(--theme-card-border);
}
#broadcast-section .broadcast-masjid-iframe {
  height: 200px;
  border-radius: 1rem;
}
