.top-nav {
  background: #1d5b91;
  border-top: 4px solid rgba(255,255,255,.75);
  border-bottom: 4px solid rgba(255,255,255,.9);
}

.top-nav-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.top-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: clamp(.78rem, 1.7vw, 1.05rem);
  font-weight: 650;
  letter-spacing: .02em;
}

.top-nav a:hover,
.top-nav a.active {
  background: #087bb9;
  color: #43e9ef;
}

/* HERO */

.live-hero {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0,94,150,.15), rgba(0,166,200,.05)),
    url("HOME-PAGE-tt-background.jpg") center/cover no-repeat;
}

.live-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5,19,27,.86) 0%,
    rgba(5,19,27,.57) 52%,
    rgba(5,19,27,.13) 100%
  );
}

.live-hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 70px 0 58px;
}

.live-hero-content h1 {
  font-size: clamp(3.2rem, 8vw, 6rem);
}

/* LIVE */

.live-section {
  padding: 68px 0 72px;
  background: #eef3f6;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading h2,
.live-info h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.section-heading > p:last-child {
  color: #4b626d;
  line-height: 1.6;
  font-size: 1.05rem;
}

.live-player-shell {
  padding: 10px;
  border-radius: 22px;
  background: linear-gradient(135deg, #075e9a, #00a6c8);
  box-shadow: 0 20px 50px rgba(4,20,28,.16);
}

.offline-stub,
.live-video {
  overflow: hidden;
  border-radius: 14px;
  background: #08171d;
  aspect-ratio: 16 / 9;
}

.offline-stub {
  display: grid;
  place-items: center;
}

.offline-stub img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #08171d;
}

.live-video iframe,
.live-video video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* STATUS */

.live-status {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid rgba(0,126,152,.12);
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  margin-top: 5px;
  border-radius: 50%;
  background: #9eabb0;
  box-shadow: 0 0 0 5px rgba(158,171,176,.14);
}

.live-status strong {
  display: block;
  margin-bottom: 4px;
}

.live-status p {
  margin: 0;
  color: #536873;
  line-height: 1.5;
}

/* INFO */

.live-info {
  padding: 64px 0;
  background: #fff;
}

.live-info-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 64px;
  align-items: start;
}

.live-info-copy {
  color: #3f5762;
  font-size: 1.08rem;
  line-height: 1.72;
}

.live-info-copy p:first-child {
  margin-top: 0;
}

.live-info-copy p:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE */

@media (max-width: 860px) {
  .top-nav-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-nav a {
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .live-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 760px) and (orientation: portrait) {
  .live-hero {
    min-height: 360px;
  }

  .live-hero-content {
    padding: 54px 0 44px;
  }

  .live-section {
    padding: 50px 0;
  }

  .live-player-shell {
    padding: 6px;
    border-radius: 16px;
  }

  .offline-stub,
  .live-video {
    border-radius: 11px;
  }
}
