:root {
  --bg: #070c17;
  --bg-2: #09111f;
  --bg-card: #0d1627;
  --bg-elevated: #111d31;

  --primary: #00d4ff;
  --primary-dark: #009fe0;
  --accent: #7657ff;
  --yellow: #ffd200;

  --text: #f4f7fc;
  --text-muted: #8d9ab4;

  --danger: #ff334f;
  --success: #25d366;

  --border: rgba(255,255,255,.09);
  --border-light: rgba(255,255,255,.14);

  --radius: 18px;
  --radius-sm: 12px;

  --shadow: 0 18px 50px rgba(0,0,0,.34);

  --header-h: 84px;
  --player-h: 88px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(0,212,255,.06),
      transparent 35%
    ),
    var(--bg);

  color: var(--text);
  line-height: 1.6;

  padding-bottom: calc(var(--player-h) + 25px);

  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;

  background:
    linear-gradient(
      90deg,
      rgba(0,212,255,.025),
      transparent 30%,
      transparent 70%,
      rgba(124,92,255,.025)
    );
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font-family: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.container {
  width: min(100% - 40px, 1640px);
  margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  height: var(--header-h);

  background: rgba(5,10,20,.86);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border-bottom: 1px solid rgba(255,255,255,.07);

  z-index: 1000;

  transition: background .25s ease;
}

.header.scrolled {
  background: rgba(5,10,20,.96);
}

.header-inner {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;
}


/* LOGO */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  flex-shrink: 0;
}

.logo-icon {
  width: 54px;
  height: 54px;

  border-radius: 15px;

  overflow: hidden;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    #00d4ff,
    #7657ff
  );

  border: 1px solid rgba(255,255,255,.18);

  box-shadow:
    0 7px 24px rgba(0,212,255,.2),
    inset 0 1px 0 rgba(255,255,255,.2);

  transition: transform .2s ease, box-shadow .2s ease;
}

.logo:hover .logo-icon {
  transform: translateY(-2px);

  box-shadow:
    0 12px 30px rgba(0,212,255,.3),
    inset 0 1px 0 rgba(255,255,255,.25);
}

.logo-icon img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.08);
}

.logo-text {
  display: flex;
  flex-direction: column;

  line-height: 1;
}

.logo-main {
  font-family: 'Outfit', sans-serif;

  font-size: 1.35rem;
  font-weight: 800;

  letter-spacing: -.045em;

  background:
    linear-gradient(
      90deg,
      #fff,
      #c3f6ff
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}

.logo-sub {
  margin-top: 6px;

  color: var(--primary);

  font-size: .64rem;
  font-weight: 800;

  letter-spacing: .2em;
  text-transform: uppercase;
}


/* NAV */

.nav {
  display: flex;
  align-items: center;

  gap: 5px;

  margin-left: auto;
}

.nav-link {
  padding: 10px 15px;

  border-radius: 9px;

  color: #9da8c0;

  font-size: .9rem;
  font-weight: 500;

  transition:
    color .2s ease,
    background .2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.055);
}

.nav-link.active {
  position: relative;
}

.nav-link.active::after {
  content: "";

  position: absolute;

  left: 15px;
  right: 15px;
  bottom: -8px;

  height: 2px;

  background: var(--primary);

  box-shadow: 0 0 10px var(--primary);
}


/* HEADER ACTIONS */

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.now-playing-mini {
  display: flex;
  align-items: center;
  gap: 9px;

  min-width: 190px;
}

.now-playing-mini > div {
  display: flex;
  flex-direction: column;

  line-height: 1.25;
}

.now-playing-mini strong {
  color: #ff4c5f;

  font-size: .68rem;
  letter-spacing: .05em;
}

.now-playing-mini span:last-child {
  color: #8e99b0;

  font-size: .78rem;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  max-width: 160px;
}

.live-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--danger);

  box-shadow:
    0 0 0 4px rgba(255,51,79,.1),
    0 0 12px rgba(255,51,79,.8);

  flex: 0 0 auto;

  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: .7;
  }
}

.btn-listen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 150px;

  padding: 13px 22px;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      #00cfff,
      #7657ff
    );

  color: white;

  font-size: .9rem;
  font-weight: 700;

  box-shadow:
    0 8px 25px rgba(0,170,255,.2);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.btn-listen:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 30px rgba(0,170,255,.32);
}

.btn-listen.playing {
  background:
    linear-gradient(
      135deg,
      #7657ff,
      #5436d7
    );
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 13px 22px;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      #00cfff,
      #7657ff
    );

  color: white;

  font-size: .9rem;
  font-weight: 700;

  box-shadow:
    0 8px 25px rgba(0,170,255,.2);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(0,170,255,.32);
}

.btn-primary.playing {
  background:
    linear-gradient(
      135deg,
      #7657ff,
      #5436d7
    );
}

.menu-toggle {
  display: none;

  width: 46px;
  height: 46px;

  border-radius: 13px;

  background: rgba(255,255,255,.06);

  border: 1px solid var(--border);

  font-size: 1.1rem;
}


/* =========================================================
   HERO
========================================================= */

.mz-hero {
  position: relative;

  width: min(100% - 12px, 1660px);

  margin: calc(var(--header-h) + 25px) auto 0;

  overflow: hidden;

  border-radius: 25px;

  border: 1px solid rgba(255,255,255,.1);

  background: #050b17;

  box-shadow:
    0 25px 70px rgba(0,0,0,.45);

  isolation: isolate;
}

.mz-hero-image {
  width: 100%;

  aspect-ratio: 16 / 5.8;

  object-fit: cover;

  object-position: center;

  filter:
    saturate(1.08)
    contrast(1.03);

  transform: scale(1.002);
}

.hero-gradient {
  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(2,7,17,.22),
      transparent 25%,
      transparent 75%,
      rgba(2,7,17,.15)
    ),

    linear-gradient(
      0deg,
      rgba(5,9,18,.82) 0%,
      rgba(5,9,18,.16) 30%,
      transparent 65%
    );
}

.hero-wave {
  position: absolute;

  left: 0;
  right: 0;

  bottom: 18%;

  height: 3px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(0,212,255,.25),
      #00d4ff 30%,
      #fff 50%,
      #ffd200 70%,
      rgba(255,210,0,.15),
      transparent
    );

  box-shadow:
    0 0 10px rgba(0,212,255,.8),
    0 0 25px rgba(255,210,0,.35);

  animation: wavePulse 3s ease-in-out infinite;
}

@keyframes wavePulse {
  0%, 100% {
    opacity: .65;
    transform: scaleX(.97);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-live {
  position: absolute;

  top: 28px;
  right: 28px;

  z-index: 4;

  display: flex;
  align-items: center;
  gap: 11px;

  padding: 11px 17px;

  border-radius: 999px;

  background: rgba(5,12,27,.72);

  border: 1px solid rgba(0,212,255,.4);

  backdrop-filter: blur(12px);

  color: #fff;

  font-size: .88rem;
  font-weight: 800;

  letter-spacing: .04em;

  box-shadow:
    0 10px 30px rgba(0,0,0,.25);
}

.hero-live strong::first-letter {
  color: var(--danger);
}

.hero-programming-btn {
  position: absolute;

  left: clamp(30px, 5vw, 90px);
  bottom: 34px;

  z-index: 5;

  display: inline-flex;
  align-items: center;
  gap: 11px;

  padding: 14px 21px;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      #ffd000,
      #ffea68
    );

  color: #09101c;

  border: 1px solid rgba(255,255,255,.5);

  font-size: .88rem;
  font-weight: 800;

  box-shadow:
    0 12px 32px rgba(0,0,0,.35),
    0 0 30px rgba(255,210,0,.18);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.hero-programming-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 17px 40px rgba(0,0,0,.4),
    0 0 35px rgba(255,210,0,.3);
}

.hero-programming-btn i:last-child {
  margin-left: 3px;
}


/* =========================================================
   MAIN
========================================================= */

.main {
  position: relative;

  padding: 0 0 70px;
}

.mz-hero + .main {
  margin-top: -42px;
}

.top-cards {
  position: relative;
  z-index: 10;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 22px;
}


/* =========================================================
   CARDS
========================================================= */

.card {
  min-height: 220px;

  padding: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(16,26,44,.97),
      rgba(9,17,30,.97)
    );

  border: 1px solid rgba(255,255,255,.1);

  border-radius: 17px;

  box-shadow:
    0 15px 40px rgba(0,0,0,.32);

  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.card:hover {
  transform: translateY(-3px);

  border-color: rgba(0,212,255,.25);

  box-shadow:
    0 20px 48px rgba(0,0,0,.4);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;

  padding-bottom: 15px;

  margin-bottom: 18px;

  border-bottom: 1px solid rgba(255,255,255,.08);
}

.card-header-icon {
  width: 29px;
  height: 29px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);

  font-size: .9rem;
}

.card-header-icon.purple {
  color: #7c5cff;
}

.card-header h2 {
  font-family: 'Outfit', sans-serif;

  font-size: 1rem;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: .02em;
}


/* =========================================================
   ARTIST CARD
========================================================= */

.artist-content {
  display: flex;
  align-items: center;

  gap: 17px;
}

.artist-img {
  width: 150px;
  height: 140px;

  border-radius: 10px;

  overflow: hidden;

  flex-shrink: 0;

  background: var(--bg-elevated);

  border: 1px solid rgba(255,255,255,.07);
}

.artist-img img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.artist-info {
  min-width: 0;
}

.artist-info h3 {
  margin-bottom: 2px;

  font-family: 'Outfit', sans-serif;

  font-size: 1.15rem;
  font-weight: 800;
}

.artist-title {
  display: block;

  color: var(--primary);

  font-size: .88rem;
  font-weight: 700;

  margin-bottom: 7px;
}

.artist-info p {
  color: var(--text-muted);

  font-size: .82rem;

  line-height: 1.45;

  margin-bottom: 10px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--primary);

  font-size: .82rem;
  font-weight: 700;

  transition: gap .2s ease;
}

.btn-link:hover {
  gap: 11px;
}


/* =========================================================
   LIVE CARD
========================================================= */

.live-box {
  min-height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-direction: column;

  text-align: center;

  border-radius: 12px;

  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(124,92,255,.14),
      transparent 55%
    ),
    rgba(255,255,255,.025);

  border: 1px solid rgba(255,255,255,.05);
}

.live-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 7px;

  border-radius: 13px;

  color: #947eff;

  background: rgba(124,92,255,.08);

  font-size: 1.5rem;
}

.live-text {
  display: flex;
  flex-direction: column;
}

.live-text strong {
  font-size: .95rem;
}

.live-text span {
  color: var(--text-muted);

  font-size: .78rem;
}

.btn-kick {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 10px;

  padding: 9px 17px;

  border-radius: 8px;

  background: #53fc18;

  color: #050b04;

  font-size: .78rem;
  font-weight: 800;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.btn-kick:hover {
  transform: translateY(-2px);

  box-shadow:
    0 7px 20px rgba(83,252,24,.2);
}


/* =========================================================
   NEWS
========================================================= */

.news-list {
  display: flex;
  flex-direction: column;

  gap: 9px;
}

.news-item {
  display: grid;

  grid-template-columns: 58px 1fr;

  gap: 10px;

  padding: 7px;

  border-radius: 9px;

  background: rgba(255,255,255,.025);

  transition:
    background .2s ease,
    transform .2s ease;
}

.news-item:hover {
  background: rgba(0,212,255,.06);

  transform: translateX(2px);
}

.news-thumb {
  width: 58px;
  height: 48px;

  border-radius: 7px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      #182d4a,
      #0b172b
    );

  color: var(--primary);

  font-size: .9rem;
}

.news-content {
  display: flex;
  flex-direction: column;

  min-width: 0;
}

.news-content strong {
  font-size: .74rem;

  line-height: 1.3;
}

.news-content span {
  margin-top: 4px;

  color: var(--text-muted);

  font-size: .66rem;
}

.news-more {
  margin-top: 4px;
}


/* =========================================================
   SECTION HEADERS
========================================================= */

.section-programming,
.section-partners,
.section-about {
  margin-top: 78px;
}

.section-header {
  text-align: center;

  max-width: 700px;

  margin: 0 auto 28px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--primary);

  font-size: .72rem;
  font-weight: 800;

  letter-spacing: .12em;

  text-transform: uppercase;

  margin-bottom: 8px;
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;

  font-size: clamp(1.8rem, 3vw, 2.4rem);

  line-height: 1.15;

  margin-bottom: 9px;
}

.section-header p {
  color: var(--text-muted);

  font-size: .9rem;
}


/* =========================================================
   DAY TABS
========================================================= */

.day-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 25px;
}

.day-tab {
  min-width: 76px;

  padding: 9px 13px;

  display: flex;
  flex-direction: column;
  align-items: center;

  border-radius: 11px;

  color: var(--text-muted);

  background: rgba(255,255,255,.025);

  border: 1px solid var(--border);

  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.day-tab span {
  font-size: .9rem;
  font-weight: 800;
}

.day-tab small {
  font-size: .6rem;

  margin-top: 1px;

  opacity: .7;
}

.day-tab:hover {
  color: #fff;

  border-color: rgba(0,212,255,.3);

  transform: translateY(-1px);
}

.day-tab.active {
  color: #07101d;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      #00aee9
    );

  border-color: transparent;

  box-shadow:
    0 8px 22px rgba(0,212,255,.18);
}


/* =========================================================
   SHOWS
========================================================= */

.shows-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fill, minmax(250px, 1fr));

  gap: 16px;
}

.show-card {
  overflow: hidden;

  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      #101b2f,
      #0b1322
    );

  border: 1px solid var(--border);

  transition:
    transform .2s ease,
    border-color .2s ease;
}

.show-card:hover {
  transform: translateY(-3px);

  border-color: rgba(0,212,255,.25);
}

.show-card.now {
  border-color: var(--primary);

  box-shadow:
    0 0 0 1px rgba(0,212,255,.3),
    0 12px 35px rgba(0,212,255,.1);
}

.show-img {
  height: 115px;

  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(0,212,255,.15),
      transparent 60%
    ),
    #0b1424;
}

.show-img img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.show-img .now-badge {
  position: absolute;

  top: 10px;
  left: 10px;

  padding: 4px 9px;

  border-radius: 999px;

  background: var(--danger);

  color: white;

  font-size: .62rem;
  font-weight: 800;

  letter-spacing: .08em;

  text-transform: uppercase;
}

.show-body {
  padding: 15px;
}

.show-time {
  color: var(--primary);

  font-size: .74rem;
  font-weight: 800;

  margin-bottom: 5px;
}

.show-body h3 {
  font-family: 'Outfit', sans-serif;

  font-size: 1rem;

  line-height: 1.3;

  margin-bottom: 6px;
}

.show-body p {
  color: var(--text-muted);

  font-size: .78rem;

  line-height: 1.5;
}


/* =========================================================
   PARTNERS
========================================================= */

.partners-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fill, minmax(260px, 1fr));

  gap: 18px;
}

.partner-card {
  min-height: 110px;

  display: flex;
  align-items: center;

  gap: 16px;

  padding: 18px 20px;

  position: relative;

  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(18,30,52,.98),
      rgba(10,18,32,.98)
    );

  border: 1px solid rgba(255,255,255,.1);

  overflow: hidden;

  transition:
    transform .25s cubic-bezier(.2,.8,.2,1),
    border-color .25s ease,
    box-shadow .25s ease;
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,212,255,.06),
    transparent 50%,
    rgba(118,87,255,.05)
  );
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.partner-card:hover {
  transform: translateY(-5px);

  border-color: rgba(0,212,255,.4);

  box-shadow:
    0 18px 40px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,212,255,.15);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card .logo-icon {
  width: 56px;
  height: 56px;

  border-radius: 14px;

  overflow: hidden;

  flex-shrink: 0;

  background: linear-gradient(135deg, #0f1a2e, #15233d);

  border: 1px solid rgba(255,255,255,.12);

  box-shadow: 0 6px 18px rgba(0,0,0,.25);

  transition: transform .25s ease, box-shadow .25s ease;
}

.partner-card:hover .logo-icon {
  transform: scale(1.06);

  box-shadow: 0 10px 24px rgba(0,212,255,.2);
}

.partner-card .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-logo {
  width: 56px;
  height: 56px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  font-size: 1.3rem;

  border: 1px solid rgba(255,255,255,.1);
}

.partner-za {
  color: #00d4ff;
  background: rgba(0,212,255,.1);
}

.partner-kick {
  color: #53fc18;
  background: rgba(83,252,24,.1);
}

.partner-mz {
  color: #ffd200;
  background: rgba(255,210,0,.1);
}

.partner-add {
  color: #947eff;
  background: rgba(124,92,255,.12);
}

.partner-info {
  display: flex;
  flex-direction: column;

  min-width: 0;

  flex: 1;
}

.partner-info strong {
  font-family: 'Outfit', sans-serif;

  font-size: .95rem;
  font-weight: 700;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.partner-info span {
  color: var(--text-muted);

  font-size: .72rem;

  line-height: 1.35;

  margin-top: 2px;
}

.partner-arrow {
  margin-left: auto;

  color: #68758d;

  font-size: .8rem;

  transition: color .2s ease, transform .2s ease;
}

.partner-card:hover .partner-arrow {
  color: var(--primary);
  transform: translateX(3px);
}

.partner-card-cta {
  border-style: dashed;
  border-color: rgba(118,87,255,.35);
  background:
    linear-gradient(
      145deg,
      rgba(30,22,55,.9),
      rgba(18,14,38,.95)
    );
}

.partner-card-cta:hover {
  border-color: rgba(118,87,255,.6);
  box-shadow:
    0 18px 40px rgba(0,0,0,.35),
    0 0 30px rgba(118,87,255,.12);
}


/* =========================================================
   ABOUT
========================================================= */

.about-card {
  position: relative;

  overflow: hidden;

  padding: 50px 30px;

  text-align: center;

  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      rgba(0,212,255,.08),
      rgba(124,92,255,.1)
    );

  border: 1px solid rgba(255,255,255,.1);
}

.about-glow {
  position: absolute;

  width: 350px;
  height: 350px;

  top: -200px;
  left: 50%;

  transform: translateX(-50%);

  background:
    radial-gradient(
      circle,
      rgba(0,212,255,.18),
      transparent 70%
    );

  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-card h2 {
  font-family: 'Outfit', sans-serif;

  font-size: clamp(1.8rem, 4vw, 2.7rem);

  line-height: 1.15;

  margin-bottom: 14px;
}

.about-card h2 span {
  background:
    linear-gradient(
      90deg,
      var(--primary),
      #8870ff
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}

.about-card p {
  max-width: 670px;

  margin: 0 auto 25px;

  color: var(--text-muted);

  font-size: .92rem;
}

.about-links {
  display: flex;
  justify-content: center;

  gap: 10px;

  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255,255,255,.05);

  border: 1px solid var(--border);

  font-size: .8rem;
  font-weight: 700;

  transition:
    background .2s ease,
    border-color .2s ease;
}

.social-link:hover {
  background: rgba(0,212,255,.08);

  border-color: rgba(0,212,255,.3);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: 40px 0 110px;

  border-top: 1px solid var(--border);

  background:
    linear-gradient(
      180deg,
      #080e1b,
      #060a13
    );
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  gap: 20px;
}

.footer-brand .logo {
  justify-content: center;

  margin-bottom: 9px;
}

.footer-brand p {
  color: var(--text-muted);

  font-size: .8rem;
}

.footer-links {
  display: flex;
  justify-content: center;

  gap: 22px;

  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);

  font-size: .8rem;

  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.copyright {
  color: var(--text-muted);

  font-size: .7rem;

  opacity: .6;
}


/* =========================================================
   PLAYER
========================================================= */

.player {
  position: fixed;

  left: 50%;
  bottom: 18px;

  transform: translateX(-50%);

  width: min(calc(100% - 30px), 1500px);

  height: var(--player-h);

  z-index: 1100;

  background:
    rgba(10,17,30,.94);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  border: 1px solid rgba(255,255,255,.1);

  border-radius: 17px;

  box-shadow:
    0 20px 60px rgba(0,0,0,.5);
}

.player-progress {
  position: absolute;

  top: 0;
  left: 0;

  width: 0%;
  height: 2px;

  border-radius: 2px;

  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--accent)
    );
}

.player-inner {
  height: 100%;

  display: grid;

  grid-template-columns:
    1fr auto 1fr;

  align-items: center;

  gap: 20px;

  padding: 0 18px;
}

.player-left {
  min-width: 0;

  display: flex;
  align-items: center;

  gap: 12px;
}

.player-art {
  width: 52px;
  height: 52px;

  position: relative;

  flex-shrink: 0;

  overflow: hidden;

  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      #00d4ff,
      #7657ff
    );

  box-shadow:
    0 5px 20px rgba(0,0,0,.3),
    0 0 0 1px rgba(255,255,255,.12);

  transition: box-shadow .25s ease, transform .25s ease;
}

.player-art img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 1;

  transition: opacity .3s ease, transform .3s ease;
}

.player-info {
  min-width: 0;
}

.player-title {
  color: #fff;

  font-size: .9rem;
  font-weight: 800;

  white-space: nowrap;

  overflow: hidden;
  text-overflow: ellipsis;
}

.player-artist {
  color: var(--text-muted);

  font-size: .72rem;

  white-space: nowrap;

  overflow: hidden;
  text-overflow: ellipsis;
}

.eq {
  position: absolute;

  left: 50%;
  bottom: 5px;

  transform: translateX(-50%);

  display: flex;
  align-items: flex-end;

  gap: 2px;

  height: 13px;

  opacity: 0;
}

.eq.active {
  opacity: 1;
}

.eq span {
  width: 3px;

  background: #fff;

  border-radius: 2px;

  animation: eq .75s ease-in-out infinite;
}

.eq span:nth-child(1) {
  height: 45%;
}

.eq span:nth-child(2) {
  height: 75%;
  animation-delay: .12s;
}

.eq span:nth-child(3) {
  height: 100%;
  animation-delay: .24s;
}

.eq span:nth-child(4) {
  height: 60%;
  animation-delay: .36s;
}

@keyframes eq {
  0%,100% {
    transform: scaleY(.45);
  }

  50% {
    transform: scaleY(1);
  }
}

.player-center {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 7px;
}

.player-btn {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: var(--text-muted);

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease;
}

.player-btn:hover:not(:disabled) {
  color: #fff;

  background: rgba(255,255,255,.08);
}

.player-btn:disabled {
  opacity: .25;

  cursor: default;
}

.player-play {
  width: 48px;
  height: 48px;

  color: #07101c;

  background:
    linear-gradient(
      135deg,
      #00d4ff,
      #008fe0
    );

  font-size: 1rem;

  box-shadow:
    0 5px 20px rgba(0,212,255,.25);
}

.player-play:hover {
  color: #07101c;

  transform: scale(1.05);

  background:
    linear-gradient(
      135deg,
      #00e0ff,
      #00a8ef
    );
}

.player-play.playing {
  color: #fff;

  background:
    linear-gradient(
      135deg,
      #7657ff,
      #5635d8
    );
}

.player-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 14px;
}

.volume-control {
  display: flex;
  align-items: center;

  gap: 4px;
}

.volume-slider {
  width: 100px;

  height: 4px;

  appearance: none;
  -webkit-appearance: none;

  border-radius: 99px;

  background: rgba(255,255,255,.14);

  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;

  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: #fff;

  cursor: pointer;

  box-shadow:
    0 0 0 2px rgba(0,212,255,.25);
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;

  border: 0;

  border-radius: 50%;

  background: #fff;

  cursor: pointer;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 7px;

  padding: 6px 10px;

  border-radius: 999px;

  color: #ff6877;

  background: rgba(255,51,79,.08);

  font-size: .68rem;
  font-weight: 800;

  letter-spacing: .08em;
}


/* =========================================================
   ARTICLE
========================================================= */

.article-hero {
  position: relative;

  min-height: 390px;

  margin-top: var(--header-h);

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.article-hero-bg {
  position: absolute;
  inset: 0;

  background-position: center;
  background-size: cover;

  filter: saturate(1.1);

  transform: scale(1.04);
}

.article-hero-content {
  position: relative;

  z-index: 2;

  text-align: center;

  padding: 70px 20px;

  max-width: 850px;
}

.article-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 7px 14px;

  margin-bottom: 18px;

  border-radius: 999px;

  color: var(--primary);

  background: rgba(0,212,255,.08);

  border: 1px solid rgba(0,212,255,.25);

  font-size: .72rem;
  font-weight: 800;

  letter-spacing: .1em;

  text-transform: uppercase;
}

.article-hero h1 {
  font-family: 'Outfit', sans-serif;

  font-size: clamp(2.2rem, 6vw, 4rem);

  line-height: 1.1;

  letter-spacing: -.04em;

  margin-bottom: 12px;
}

.article-hero h1 span {
  display: block;

  color: var(--yellow);
}

.article-hero-content p {
  color: #bdc7d9;

  font-size: .95rem;
}

.article-main {
  padding: 45px 0 70px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--text-muted);

  font-size: .85rem;
  font-weight: 700;

  margin-bottom: 20px;

  transition: color .2s ease;
}

.back-link:hover {
  color: var(--primary);
}

.article-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr) 320px;

  gap: 25px;

  align-items: start;
}

.article-body,
.sidebar-card {
  background:
    linear-gradient(
      145deg,
      rgba(15,25,43,.97),
      rgba(9,16,28,.97)
    );

  border: 1px solid var(--border);

  border-radius: var(--radius);

  box-shadow: var(--shadow);
}

.article-body {
  padding: 30px;
}

.article-cover {
  display: flex;

  align-items: flex-start;

  gap: 24px;

  margin-bottom: 28px;
}

.article-cover > img {
  width: 210px;
  height: 210px;

  flex-shrink: 0;

  object-fit: cover;

  border-radius: 14px;

  border: 1px solid rgba(255,255,255,.08);

  box-shadow:
    0 12px 30px rgba(0,0,0,.35);
}

.track-info {
  padding-top: 8px;
}

.track-label {
  display: inline-block;

  margin-bottom: 8px;

  color: var(--primary);

  font-size: .7rem;
  font-weight: 800;

  letter-spacing: .1em;

  text-transform: uppercase;
}

.track-info h2 {
  font-family: 'Outfit', sans-serif;

  font-size: 1.8rem;

  margin-bottom: 20px;
}

.track-meta-list {
  display: grid;

  gap: 9px;
}

.track-meta-item {
  display: flex;

  gap: 15px;

  font-size: .85rem;
}

.track-meta-item .label {
  min-width: 85px;

  color: var(--text-muted);
}

.track-meta-item .value {
  font-weight: 700;
}

.article-text {
  color: #cbd3e1;

  font-size: .95rem;

  line-height: 1.8;
}

.article-text p {
  margin-bottom: 16px;
}

.article-text strong {
  color: #fff;
}

.spotify-embed {
  overflow: hidden;

  margin: 28px 0;

  border-radius: 13px;

  border: 1px solid var(--border);
}

.spotify-embed iframe {
  display: block;

  width: 100%;

  border: 0;
}

.share-row {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 28px;

  padding-top: 23px;

  border-top: 1px solid var(--border);
}

.share-label {
  color: var(--text-muted);

  font-size: .8rem;

  margin-right: 3px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 9px 13px;

  border-radius: 999px;

  background: rgba(255,255,255,.04);

  border: 1px solid var(--border);

  color: var(--text-muted);

  font-size: .75rem;
  font-weight: 700;

  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.share-btn:hover {
  color: #fff;

  background: rgba(0,212,255,.08);

  border-color: rgba(0,212,255,.25);
}


/* SIDEBAR */

.sidebar-card {
  padding: 22px;

  margin-bottom: 17px;
}

.sidebar-card h3 {
  display: flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 13px;

  font-family: 'Outfit', sans-serif;

  font-size: 1rem;
}

.sidebar-card h3 i {
  color: var(--primary);
}

.sidebar-card > p {
  color: var(--text-muted);

  font-size: .82rem;

  line-height: 1.6;

  margin-bottom: 16px;
}

.sidebar-listen {
  width: 100%;

  justify-content: center;

  border: 0;
}

.sidebar-partner {
  display: flex;
  align-items: center;

  gap: 10px;

  padding: 10px;

  border-radius: 10px;

  background: rgba(255,255,255,.025);

  margin-top: 8px;

  transition: background .2s ease;
}

.sidebar-partner:hover {
  background: rgba(0,212,255,.06);
}

.sidebar-partner-icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 9px;

  background: rgba(0,212,255,.08);

  color: var(--primary);
}

.sidebar-partner > span:nth-child(2) {
  display: flex;
  flex-direction: column;

  min-width: 0;
}

.sidebar-partner strong {
  font-size: .76rem;
}

.sidebar-partner small {
  color: var(--text-muted);

  font-size: .65rem;
}

.sidebar-partner > i:last-child {
  margin-left: auto;

  color: #68758d;

  font-size: .65rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

  .now-playing-mini {
    display: none;
  }

  .partners-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


@media (max-width: 1000px) {

  .nav {
    display: none;

    position: absolute;

    top: var(--header-h);

    left: 0;
    right: 0;

    flex-direction: column;

    align-items: stretch;

    padding: 14px 20px 18px;

    background: rgba(7,12,23,.98);

    border-bottom: 1px solid var(--border);

    box-shadow:
      0 20px 30px rgba(0,0,0,.3);
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 14px;
  }

  .nav-link.active::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .top-cards {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 760px) {

  :root {
    --header-h: 72px;
    --player-h: 76px;
  }

  .container {
    width: min(100% - 24px, 1640px);
  }

  .logo-icon {
    width: 46px;
    height: 46px;
  }

  .logo-main {
    font-size: 1.12rem;
  }

  .logo-sub {
    font-size: .56rem;
  }

  .btn-listen {
    min-width: auto;

    padding: 11px 15px;
  }

  .btn-listen span {
    display: none;
  }

  .mz-hero {
    width: calc(100% - 10px);

    margin-top: calc(var(--header-h) + 10px);

    border-radius: 15px;
  }

  .mz-hero-image {
    aspect-ratio: 16 / 9;

    object-fit: cover;
  }

  .hero-live {
    top: 12px;
    right: 12px;

    padding: 8px 11px;

    font-size: .65rem;
  }

  .hero-programming-btn {
    left: 15px;
    bottom: 18px;

    padding: 10px 13px;

    font-size: .68rem;
  }

  .mz-hero + .main {
    margin-top: -18px;
  }

  .card {
    padding: 17px;
  }

  .artist-img {
    width: 115px;
    height: 115px;
  }

  .section-programming,
  .section-partners,
  .section-about {
    margin-top: 55px;
  }

  .day-tab {
    min-width: 57px;
    padding: 8px 9px;
  }

  .day-tab small {
    display: none;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 35px 20px;
  }

  .player {
    bottom: 7px;

    width: calc(100% - 14px);

    border-radius: 14px;
  }

  .player-inner {
    grid-template-columns:
      1fr auto;

    gap: 8px;

    padding: 0 10px;
  }

  .player-right {
    display: none;
  }

  .player-center {
    gap: 2px;
  }

  .player-center .player-btn:first-child,
  .player-center .player-btn:last-child {
    display: none;
  }

  .article-cover {
    flex-direction: column;
  }

  .article-cover > img {
    width: 170px;
    height: 170px;
  }

}


@media (max-width: 480px) {

  .logo-text {
    display: none;
  }

  .header-inner {
    gap: 10px;
  }

  .header-actions {
    margin-left: auto;
  }

  .artist-content {
    align-items: flex-start;
  }

  .artist-img {
    width: 100px;
    height: 100px;
  }

  .article-body {
    padding: 20px;
  }

  .article-hero {
    min-height: 330px;
  }

  .article-hero h1 {
    font-size: 2.1rem;
  }

  .share-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .share-btn {
    width: 100%;
    justify-content: center;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

}

/* =========================================================
   CHART / NEDFM TOP
========================================================= */

.chart-hero .article-hero-content h1 span {
  color: var(--yellow);
}

.chart-header-block {
  margin-bottom: 28px;
}

.chart-banners {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}

.chart-logo-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a1220;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: transform .2s ease, border-color .2s ease;
}

.chart-logo-wrap:hover {
  transform: translateY(-2px);
  border-color: rgba(0,212,255,.3);
}

.chart-banner {
  width: 100%;
  height: auto;
  display: block;
}

.chart-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 16px 0 6px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.chart-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.chart-meta-item .label {
  color: var(--text-muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.chart-meta-item .value {
  font-weight: 700;
  font-size: .9rem;
}

.chart-list-wrap {
  margin: 28px 0 10px;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(0,0,0,.18);
}

.chart-list-header {
  display: grid;
  grid-template-columns: 48px 48px 40px 1fr;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0,212,255,.08);
  border-bottom: 1px solid var(--border);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
}

.chart-list {
  display: flex;
  flex-direction: column;
}

.chart-row {
  display: grid;
  grid-template-columns: 48px 48px 40px 1fr;
  gap: 8px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s ease;
}

.chart-row:last-child {
  border-bottom: 0;
}

.chart-row:hover {
  background: rgba(0,212,255,.05);
}

.chart-row .col-pos {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.chart-row.pos-new .col-pos {
  color: var(--yellow);
}

.chart-row .col-prev,
.chart-row .col-weeks {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.chart-row .col-track {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
}

.chart-row .col-track strong {
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chart-row .col-track small {
  color: var(--text-muted);
  font-size: .75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chart-note {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: .78rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chart-note i {
  color: var(--primary);
}

@media (max-width: 600px) {
  .chart-list-header,
  .chart-row {
    grid-template-columns: 40px 36px 32px 1fr;
    padding: 10px 12px;
    gap: 4px;
  }

  .chart-row .col-track strong {
    font-size: .84rem;
  }
}


/* =========================================================
   PROGRAMMAMAKERS
========================================================= */

.makers-hero .article-hero-content h1 span {
  color: var(--yellow);
}

.makers-main {
  padding-top: 40px;
}

.makers-intro {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.makers-intro p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
}

.makers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 50px;
}

.maker-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(16,26,44,.98),
      rgba(9,16,28,.98)
    );
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
  transition:
    transform .25s cubic-bezier(.2,.8,.2,1),
    border-color .25s ease,
    box-shadow .25s ease;
}

.maker-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,.35);
  box-shadow:
    0 22px 48px rgba(0,0,0,.4),
    0 0 0 1px rgba(0,212,255,.12);
}

.maker-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0b1424;
}

.maker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}

.maker-card:hover .maker-photo img {
  transform: scale(1.06);
}

.maker-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 40%,
      rgba(5,10,20,.75) 100%
    );
  pointer-events: none;
}

.maker-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.maker-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
}

.maker-role {
  color: var(--primary);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.maker-show {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.22);
  color: #b8ecff;
  font-size: .68rem;
  font-weight: 700;
  width: fit-content;
}

.maker-show i {
  font-size: .65rem;
}

.maker-body p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.55;
}

.makers-cta {
  margin: 20px 0 30px;
}

.makers-cta-inner {
  text-align: center;
  padding: 42px 28px;
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(0,212,255,.1),
      rgba(118,87,255,.12)
    );
  border: 1px solid rgba(255,255,255,.1);
}

.makers-cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 10px;
}

.makers-cta-inner p {
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 480px;
  margin: 0 auto 22px;
}

@media (max-width: 600px) {
  .makers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .maker-photo {
    height: 240px;
  }
}
