:root {
  --menu-bg: #0a0a0a;
  --menu-text: #f2f2f2;
  --menu-accent: #ffffff;
}

@font-face {
  font-family: "GTWalsheimRegular";
  src: url("/assets/fonts/GTWalsheimRegular.woff2") format("woff2"),
       url("/assets/fonts/GTWalsheimRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "GTWalsheimRegular", "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #111111;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: -20% 0 0 0;
  pointer-events: none;
  background-image:
    radial-gradient(7px 7px at 10% 20%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(9px 9px at 30% 70%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(6px 6px at 70% 30%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(8px 8px at 85% 80%, rgba(255,255,255,0.3), transparent 60%),
    radial-gradient(6px 6px at 20% 85%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(7px 7px at 55% 10%, rgba(255,255,255,0.32), transparent 60%),
    radial-gradient(5px 5px at 92% 35%, rgba(255,255,255,0.28), transparent 60%),
    radial-gradient(6px 6px at 5% 55%, rgba(255,255,255,0.3), transparent 60%);
  background-size: 520px 520px;
  animation: float-particles 10s linear infinite;
  opacity: 0.8;
  mix-blend-mode: screen;
  will-change: transform, background-position;
  z-index: 0;
}

@keyframes float-particles {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 520px -520px, -520px 520px, 520px 520px, -520px -520px;
  }
}


body.radio-bg {
  position: relative;
  background: #000000;
  color: #ffffff;
}

body.radio-bg.text-shadow-white,
body.radio-bg.text-shadow-white h1,
body.radio-bg.text-shadow-white h2,
body.radio-bg.text-shadow-white h3,
body.radio-bg.text-shadow-white h4,
body.radio-bg.text-shadow-white h5,
body.radio-bg.text-shadow-white h6,
body.radio-bg.text-shadow-white p,
body.radio-bg.text-shadow-white li,
body.radio-bg.text-shadow-white span,
body.radio-bg.text-shadow-white a,
body.radio-bg.text-shadow-white div,
body.radio-bg.text-shadow-white .btn,
body.radio-bg.text-shadow-white .badge {
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.75);
}

body.radio-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--radio-bg);
  background-size: cover;
  background-position: center;
  filter: blur(24px);
  transform: scale(1.1);
  z-index: -1;
}

body.program-bg {
  position: relative;
  background: #000000;
  color: #ffffff;
}

body.program-bg.text-shadow-white,
body.program-bg.text-shadow-white h1,
body.program-bg.text-shadow-white h2,
body.program-bg.text-shadow-white h3,
body.program-bg.text-shadow-white h4,
body.program-bg.text-shadow-white h5,
body.program-bg.text-shadow-white h6,
body.program-bg.text-shadow-white p,
body.program-bg.text-shadow-white li,
body.program-bg.text-shadow-white span,
body.program-bg.text-shadow-white a,
body.program-bg.text-shadow-white div,
body.program-bg.text-shadow-white .btn,
body.program-bg.text-shadow-white .badge {
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.75);
}

body.program-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--program-bg);
  background-size: cover;
  background-position: center;
  filter: blur(24px);
  transform: scale(1.1);
  z-index: -1;
}

body.program-bg .menu-bar,
body.program-bg .footer {
  background: rgba(10, 10, 10, 0.9);
}

body.radio-bg .menu-bar,
body.radio-bg .footer {
  background: rgba(10, 10, 10, 0.9);
}

.staff-bg {
  min-height: 100vh;
}

.staff-bg-blue {
  background: linear-gradient(180deg, #04c8ff 0%, #0474ff 100%);
  color: #ffffff;
}

.staff-bg-rosa {
  background: linear-gradient(180deg, #e90c5c 0%, #a10c3f 100%);
  color: #ffffff;
}

.staff-bg .menu-bar {
  background: rgba(10, 10, 10, 0.9);
}

.staff-bg .footer {
  background: rgba(10, 10, 10, 0.9);
}

.menu-bar {
  background: var(--menu-bg);
  color: var(--menu-text);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  min-height: 56px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu-bar .nav-link {
  color: var(--menu-text);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  padding: 0.9rem 1rem;
  font-weight: 400;
}

.menu-bar .nav-link:hover,
.menu-bar .nav-link:focus {
  color: #cdcdcd;
}

.menu-bar .nav-link.active {
  color: var(--menu-accent);
  font-weight: 700;
}

.menu-bar .dropdown-menu {
  background: #111111;
  border: 1px solid #1c1c1c;
}

.menu-bar .dropdown-menu.dropdown-mega {
  display: none;
  width: 100%;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
}

.menu-bar .dropdown-menu.dropdown-mega.show {
  display: block;
}

.menu-bar .dropdown-menu.dropdown-mega .dropdown-item {
  display: block;
  width: 100%;
  padding: 0.4rem 0.75rem;
  white-space: normal;
  overflow-wrap: anywhere;
}

.menu-bar .dropdown-menu.dropdown-mega > .container-fluid {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.menu-bar .dropdown-menu.dropdown-mega .row {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  column-gap: 24px;
  row-gap: 4px;
}

.menu-bar .dropdown-menu.dropdown-mega .row > [class^="col"] {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

@media (min-width: 1400px) {
  .menu-bar .dropdown-menu.dropdown-mega > .container-fluid {
    max-width: 1320px;
  }
}

@media (max-width: 991.98px) {
  .menu-bar .dropdown-menu.dropdown-mega .row {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

@media (max-width: 575.98px) {
  .menu-bar .dropdown-menu.dropdown-mega .row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  .menu-bar .container-fluid {
    position: relative;
  }

  .menu-bar .dropdown-full {
    position: static;
  }

  .menu-bar .dropdown-full .dropdown-menu {
    position: fixed;
    left: 0 !important;
    right: 0;
    top: 59px;
    width: 100vw;
    max-width: 100vw;
    transform: none !important;
  }

  .menu-bar .dropdown-full .dropdown-menu.dropdown-mega {
    min-width: 100vw;
  }
}

.menu-bar .navbar-nav {
  gap: 1.4rem;
}

.menu-bar .nav-item {
  position: relative;
  padding-right: 1rem;
}

.menu-bar .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: #2a2a2a;
}

.menu-bar .dropdown-item {
  color: #f2f2f2;
}

.menu-bar .dropdown-item:hover {
  background: #1f1f1f;
}

.menu-left,
.menu-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--menu-text);
  text-decoration: none;
}

.menu-left {
  margin-right: 18px;
}

.menu-right span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.menu-left img {
  height: 34px;
  max-width: 160px;
  object-fit: contain;
}

.menu-right {
  background: #e90c5c;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
}

.menu-right i {
  font-size: 1rem;
}


.staff-programs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 767.98px) {
  .staff-programs-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .staff-program-logo {
    min-height: 80px;
  }
}

.staff-program-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0;
  text-decoration: none;
  min-height: 54px;
  color: #ffffff;
}

.staff-program-logo img {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
  display: block;
}

.staff-content {
  background: rgba(10, 10, 10, 0.35);
  border-radius: 16px;
  padding: 18px 20px;
  backdrop-filter: blur(4px);
}


.menu-right-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .menu-bar .navbar-collapse,
  .menu-bar .navbar-toggler {
    display: none !important;
  }

  .menu-right {
    display: none;
  }

  .menu-right-mobile {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #e90c5c;
    color: #ffffff;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 600;
  }

  .menu-right-mobile i {
    font-size: 0.9rem;
  }
}

.mobile-burger {
  display: none;
  background: transparent;
  border: 0;
  color: var(--menu-text);
  font-size: 1.4rem;
  padding: 0.4rem 0.6rem;
}

@media (max-width: 991.98px) {
  .mobile-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

ul.pushNav,
.pushNav__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pushNav {
  height: 100%;
  position: fixed;
  top: 0;
  right: -80vw;
  width: 80vw;
  max-width: 360px;
  z-index: 1200;
  overflow: hidden;
  background: #101216;
  transition: right 0.4s ease;
}

.pushNav.isOpen {
  right: 0;
}

.pushNavIsOpen {
  overflow: hidden;
  height: 100%;
}

.pushNav a,
.pushNav .openLevel,
.pushNav .closeLevel {
  display: block;
  padding: 0.9rem 1rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.pushNav .openLevel,
.pushNav .closeLevel {
  cursor: pointer;
  background: #131620;
}

.pushNav .openLevel i,
.pushNav .closeLevel i {
  float: right;
  opacity: 0.7;
}

.pushNav .hdg {
  background: #0b0d12;
  font-weight: 600;
}

.pushNav .divider {
  height: 1px;
  background: #1f232c;
  margin: 0.6rem 0;
}

.pushNav_level {
  position: fixed;
  top: 0;
  right: -80vw;
  width: 80vw;
  max-width: 360px;
  height: 100%;
  background: #101216;
  transition: right 0.4s ease;
  z-index: 1201;
  overflow-y: auto;
}

.pushNav_level.isOpen {
  right: 0;
}

.screen {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 0;
  top: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1100;
}

.pushNavIsOpen .screen {
  height: 100%;
  opacity: 1;
}

@media (min-width: 992px) {
  .pushNav,
  .pushNav_level,
  .screen,
  .mobile-burger {
    display: none !important;
  }
}

.main-content {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  background: #0a0a0a;
  color: #bdbdbd;
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-left {
  text-align: left;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a:visited {
  color: #ffffff;
}

.footer-sep {
  margin: 0 8px;
  color: #5f5f5f;
}

.footer-links a:hover {
  color: #e90c5c;
}

.footer-social {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: rgba(233, 12, 92, 0.35);
  color: #ffffff;
}

.sitemap-html h1 {
  font-weight: 700;
}

.sitemap-html .sitemap-section {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
}

.sitemap-html .sitemap-section h2 {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sitemap-html ul {
  margin: 0;
  padding-left: 18px;
}

.sitemap-html ul.sitemap-columns {
  columns: 4;
  column-gap: 24px;
  padding-left: 0;
  list-style: none;
}

.sitemap-html ul.sitemap-columns li {
  break-inside: avoid;
  margin-bottom: 6px;
}

@media (max-width: 992px) {
  .sitemap-html ul.sitemap-columns {
    columns: 2;
  }
}

@media (max-width: 576px) {
  .sitemap-html ul.sitemap-columns {
    columns: 1;
  }
}

.sitemap-html a {
  color: #111111;
  text-decoration: underline;
}

.sitemap-html a:hover {
  color: #000000;
}

.sitemap-html a:visited {
  color: #111111;
}

.sitemap-html .sitemap-radio-logo,
.sitemap-html .sitemap-item-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 6px;
  vertical-align: middle;
  border-radius: 6px;
  background: #ffffff;
}

@media (max-width: 576px) {
  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-left {
    text-align: center;
  }
}

.featured-radios {
  background: linear-gradient(180deg, #04c8ff 0%, #0474ff 100%);
  color: #ffffff;
}

.featured-radios-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.featured-radio-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.featured-radio-logo {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
}

.featured-radio-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.featured-radio-body {
  flex: 1;
}

.featured-radio-programs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.featured-radio-programs li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.95rem;
  color: #f0f6ff;
}

.featured-radio-programs .program-name {
  font-weight: 600;
}

.featured-radio-programs .program-times {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.cta-live {
  background: linear-gradient(180deg, #e90c5c 0%, #a10c3f 100%);
}

.video-section {
  background: #0f1116;
  color: #ffffff;
}

.video-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.video-section--home .video-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 12px;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-title {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f2f2f2;
}

@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-section--home .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}


.cta-live-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background: #111111;
  color: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.cta-live-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #e90c5c;
  margin-bottom: 12px;
}

.cta-live-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-live-text {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-live-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.cta-live-actions .btn {
  background: #e90c5c;
  border: none;
  padding: 0.75rem 1.5rem;
}

.cta-live-actions .btn:hover {
  background: #d20b52;
}

.cta-live-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.onair-page {
  color: #111111;
}

.onair-header {
  margin-bottom: 2rem;
  background: #0f0f0f;
  color: #ffffff;
  padding: 24px 28px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.onair-hero {
  background: linear-gradient(180deg, #04c8ff 0%, #0474ff 100%);
  padding: 36px 0;
}

.onair-hero .onair-header {
  margin: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.onair-header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.onair-header p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.onair-section-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6b6b6b;
  margin: 2.5rem 0 1.5rem;
}

.onair-next-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.onair-next-media {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.onair-next-body {
  flex: 1 1 260px;
}

.onair-next-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.6rem;
}

.onair-next-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.onair-program-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.onair-program-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px;
}

.onair-next-meta {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.4rem;
}

.onair-next-meta span {
  color: rgba(255, 255, 255, 0.55);
}

.onair-next-time {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.onair-next-button {
  background: #e90c5c;
  border: none;
  padding: 0.7rem 1.6rem;
}

.onair-next-button:hover {
  background: #d20b52;
}

.onair-schedule {
  margin-top: 3rem;
}

.onair-schedule-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.onair-schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.onair-schedule-media {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
}

.onair-schedule-name {
  font-size: 0.85rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.onair-schedule-program {
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.onair-schedule-time {
  font-weight: 600;
  color: #e90c5c;
}

.onair-schedule-wrap {
  width: 100%;
}

.onair-schedule-wrap.onair-today {
  background: linear-gradient(135deg, rgba(233, 12, 92, 0.22), rgba(161, 12, 63, 0.4));
}

.onair-schedule-wrap.onair-tomorrow {
  background: linear-gradient(135deg, rgba(4, 200, 255, 0.22), rgba(4, 116, 255, 0.4));
}

@media (max-width: 768px) {
  .onair-next-card {
    padding: 22px;
  }

  .onair-next-media,
  .onair-schedule-media {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .cta-live-card {
    padding: 24px;
  }

  .cta-live-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .featured-radio-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-radio-logo {
    width: 90%;
    max-width: 320px;
    height: auto;
    align-self: center;
  }

  .featured-radio-logo img {
    width: 100%;
    height: auto;
    max-height: none;
  }
}
