html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body {
  margin: 0;
  background-color: #FFFFFF;
}

.header {
  padding: 1.2rem 2rem;
  background: #ffffff;
}

.mobile-header {
  display: flex;
  justify-content: center;
}

.mobile-logo {
  display: block;
  height: auto;
  max-width: 200px;
}

.footer-logo-mobile .logo {
  height: 42px;
  width: auto;
  display: block;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: #0b1620;
}

.hero-show { display: flex !important; }
.hero-hide { display: none !important; }

#inline-audio-player.hero-show,
#heroStream.hero-show {
  display: block !important;
}

.hero-message { text-align: center; }

.video-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #108eff;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.video-button:hover {
  transform: scale(1.05);
  background: #0d7ad9;
}
.play-icon {
  font-size: 2.4rem;
  margin-left: 6px;
}

#heroStream {
  background: #000;
}
.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
#hls-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

#inline-audio-player {
  background: #ffffff;
  padding: 2rem 1rem;
}
.audio-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.78);
  border-radius: 10px;
  padding: 1.5rem;
}
.audio-card__title { text-align: center; margin-bottom: 1rem; }
.audio-card__title h2 {
  font-size: 1.2rem;
  color: #108eff;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.08em;
}
#inline-radio-audio { width: 100%; outline: none; }

.footer-section-mobile {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  box-sizing: border-box;
  background: #ffffff;
  gap: 1.5rem;
}
.footer-logo-mobile { flex-shrink: 0; align-self: flex-start; }
.footer-text-mobile {
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
  line-height: 1.5;
}
.footer-text-mobile a { color: #000000; text-decoration: none; }
.footer-text-mobile a:hover { text-decoration: underline; }
.footer-button-mobile { flex-shrink: 0; align-self: flex-start; }
#audio-only-popup {
  color: #108eff;
  text-decoration: none;
  font-size: 1.05rem;
  text-transform: uppercase;
  border: 2px solid #108eff;
  border-radius: 8px;
  padding: 8px 16px;
  display: inline-block;
  background: #ffffff;
  font-weight: 700;
  transition: color 0.3s ease, background 0.3s ease;
}
#audio-only-popup:hover {
  color: #ffffff;
  background: #108eff;
}

@media (max-width: 768px) {
  .footer-section-mobile {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }
  .footer-logo-mobile { order: 2; align-self: center; }
  .footer-text-mobile { order: 3; width: 100%; }
  .footer-button-mobile { order: 1; align-self: center; }
}
