/* ============================================================
   IVY MUSIC PAGE — Elegant Two-Panel Layout
   ============================================================ */

/* ── PAGE SETUP ── */
.music-page {
  background: #0A0A0A;
}

/* ── HERO ── */
.mu-hero {
  background: #0A0A0A;
  margin-top: var(--hdr-h, 140px);
  padding: 56px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(201,168,76,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.mu-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  margin-bottom: 18px;
}
.mu-hero-eyebrow span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold, #C9A84C);
}
.mu-hero-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.mu-hero-title em {
  font-style: italic;
  color: var(--gold, #C9A84C);
}
.mu-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ── STAT ROW ── */
.mu-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.mu-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.mu-stat strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.mu-stat span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.mu-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
}

/* ── TAB SWITCHER ── */
.mu-tabs-wrap {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  /* Smoothly follow the header as it compresses */
  transition: top 0.32s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.32s ease,
              background 0.32s ease,
              padding 0.28s ease;
}

/* Compact "docked" state — applied when tab bar has scrolled up with the header */
.mu-tabs-wrap.is-stuck {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  border-bottom-color: rgba(0,0,0,0.06);
}

/* While the tab bar is pinned to the top, slide the fixed header out of the
   way so the bar sits flush against the top edge — no gap, no overlap. */
.music-page:has(.mu-tabs-wrap.is-stuck) .site-header {
  transform: translateY(-110%);
  pointer-events: none;
}

.mu-tabs {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 0;
}
.mu-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(10,10,10,0.4);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s ease;
  position: relative;
}
/* Compact tab padding when docked */
.mu-tabs-wrap.is-stuck .mu-tab {
  padding: 12px 28px;
}
.mu-tab i {
  font-size: 15px;
}
.mu-tab:hover {
  color: rgba(10,10,10,0.7);
}
.mu-tab.active {
  color: #0A0A0A;
  border-bottom-color: var(--gold, #C9A84C);
}
.mu-tab-count {
  font-size: 10px;
  font-weight: 700;
  background: var(--gold, #C9A84C);
  color: #fff;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0;
}

/* ── PANEL CONTAINER ── */
.mu-panel {
  display: none;
  animation: muFadeIn 0.35s ease forwards;
}
.mu-panel.active {
  display: block;
}
@keyframes muFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════
   SONGS PANEL
════════════════════════════ */

/* Language section header */
.mu-lang-section {
  padding: 60px 0 0;
}
.mu-lang-section:last-child {
  padding-bottom: 72px;
}

.mu-lang-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.mu-lang-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.mu-lang-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.1;
}
.mu-lang-count {
  font-size: 12px;
  font-weight: 600;
  color: rgba(10,10,10,0.35);
  letter-spacing: 0.5px;
}
.mu-lang-line {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

/* Language colour variants */
.mu-lang-icon--hindi    { background: rgba(230,57,70,0.1);  color: #E63946; }
.mu-lang-icon--punjabi  { background: rgba(155,93,229,0.1); color: #9B5DE5; }
.mu-lang-icon--spiritual{ background: rgba(91,192,235,0.1); color: #5BC0EB; }
.mu-lang-icon--south    { background: rgba(6,214,160,0.1);  color: #06D6A0; }
.mu-lang-icon--bhojpuri { background: rgba(232,115,58,0.1); color: #E8733A; }
.mu-lang-icon--bangla   { background: rgba(255,107,107,0.1);color: #FF6B6B; }
.mu-lang-icon--pahadi   { background: rgba(82,183,136,0.1); color: #52B788; }
.mu-lang-icon--others   { background: rgba(201,168,76,0.1); color: #C9A84C; }

/* Songs grid */
.mu-songs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Song card */
.mu-song-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: block;
}
.mu-song-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.mu-song-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.mu-song-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mu-song-card:hover .mu-song-thumb img {
  transform: scale(1.05);
}
.mu-song-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s ease;
}
.mu-song-card:hover .mu-song-overlay {
  background: rgba(0,0,0,0.4);
}
.mu-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold, #C9A84C);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.22s ease;
}
.mu-song-card:hover .mu-play-btn {
  opacity: 1;
  transform: scale(1);
}
.mu-song-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  color: #fff;
}
.mu-badge--hindi     { background: #E63946; }
.mu-badge--punjabi   { background: #9B5DE5; }
.mu-badge--spiritual { background: #5BC0EB; }
.mu-badge--south     { background: #06D6A0; }
.mu-badge--bhojpuri  { background: #E8733A; }
.mu-badge--bangla    { background: #FF6B6B; }
.mu-badge--pahadi    { background: #52B788; }
.mu-badge--others    { background: #C9A84C; }

.mu-yt-dot {
  position: absolute;
  bottom: 8px;
  right: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.mu-song-info {
  padding: 12px 14px 14px;
}
.mu-song-title {
  font-size: 13px;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.3;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mu-song-artist {
  font-size: 11.5px;
  color: rgba(10,10,10,0.5);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mu-song-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mu-views {
  font-size: 11px;
  color: rgba(10,10,10,0.4);
  display: flex;
  align-items: center;
  gap: 4px;
}
.mu-label-tag {
  font-size: 10px;
  font-weight: 600;
  color: rgba(10,10,10,0.35);
  background: rgba(0,0,0,0.05);
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}

/* ════════════════════════════
   LABELS PANEL
════════════════════════════ */
.mu-labels-panel {
  padding: 60px 0 80px;
}
.mu-labels-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}
.mu-labels-intro h2 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.mu-labels-intro h2 em {
  font-style: italic;
  color: var(--gold, #C9A84C);
}
.mu-labels-intro p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* Labels grid */
.mu-labels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Section divider — spans full grid width, creates visual group header */
.mu-labels-section {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding-bottom: 4px;
}
.mu-labels-section:first-child { margin-top: 0; }
.mu-labels-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lc, #C9A84C);
  white-space: nowrap;
  flex-shrink: 0;
}
.mu-labels-section-label i { font-size: 11px; }
.mu-labels-section-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--lc, #C9A84C) 30%, transparent), transparent);
  border-radius: 2px;
}

/* Label card */
.mu-label-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 28px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}
.mu-label-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lc, #C9A84C);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.mu-label-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  border-color: rgba(0,0,0,0.08);
}
.mu-label-card:hover::before {
  transform: scaleX(1);
}

.mu-label-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mu-label-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: color-mix(in srgb, var(--lc, #C9A84C) 12%, transparent);
  color: var(--lc, #C9A84C);
  flex-shrink: 0;
}
.mu-label-arrow {
  color: rgba(10,10,10,0.2);
  font-size: 13px;
  transition: color 0.2s, transform 0.2s;
}
.mu-label-card:hover .mu-label-arrow {
  color: var(--lc, #C9A84C);
  transform: translate(3px, -3px);
}

.mu-label-name {
  font-size: 16px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 4px;
  line-height: 1.2;
}
.mu-label-genre {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lc, #C9A84C);
  background: color-mix(in srgb, var(--lc, #C9A84C) 10%, transparent);
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.mu-label-desc {
  font-size: 13px;
  color: rgba(10,10,10,0.5);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.mu-label-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.mu-label-yt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(10,10,10,0.45);
}
.mu-label-yt i {
  color: #FF0000;
  font-size: 14px;
}

/* ════════════════════════════
   REGIONAL LANGUAGES HERO PANEL
════════════════════════════ */

@keyframes rgDotPulse {
  0%,100% { transform: scale(1); opacity:.5; }
  50%      { transform: scale(1.6); opacity:1; }
}
@keyframes rgTileShine {
  0%   { transform: translateX(-100%) skewX(-18deg); }
  100% { transform: translateX(220%) skewX(-18deg); }
}

.mu-regional-hero {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #FFE8D0 0%, #FDDCB8 40%, #FCCFA0 75%, #FFE4CC 100%);
  border-radius: 22px;
  padding: 36px 40px 40px;
  border: 1.5px solid rgba(220,120,60,.14);
  box-shadow: 0 6px 32px rgba(200,100,40,.08);
  position: relative;
  overflow: hidden;
}

/* Ambient background glow */
.mu-regional-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(230,120,50,.07) 0%, rgba(240,160,80,.04) 45%, transparent 70%);
  top: -80px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
/* Second glow — bottom-right warm accent */
.mu-regional-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,130,60,.07) 0%, transparent 65%);
  bottom: -60px; right: -40px;
  pointer-events: none;
}

/* ── Header row ── */
.mu-rg-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.mu-rg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(200,100,40,.75);
  margin-bottom: 8px;
}
.mu-rg-eyebrow i { font-size: 11px; }
.mu-rg-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #1A0E08;
  letter-spacing: -0.4px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.mu-rg-subtitle {
  font-size: 12.5px;
  color: rgba(60,30,10,.45);
  line-height: 1.5;
}
/* Animated dot cluster — decorative */
.mu-rg-dots {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-shrink: 0;
}
.mu-rg-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: block;
  animation: rgDotPulse 2.4s ease-in-out infinite;
}
.mu-rg-dots span:nth-child(1) { background: #FF6B6B; animation-delay: 0s; }
.mu-rg-dots span:nth-child(2) { background: #2D9E6F; animation-delay: 0.3s; }
.mu-rg-dots span:nth-child(3) { background: #3BBFCE; animation-delay: 0.6s; }
.mu-rg-dots span:nth-child(4) { background: #7DBF1A; animation-delay: 0.9s; }

/* ── 4-tile grid ── */
.mu-rg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── Individual tile ── */
.mu-rg-tile {
  background: #fff;
  border: 1.5px solid rgba(120,100,220,.12);
  border-radius: 16px;
  padding: 22px 20px 18px;
  text-decoration: none;
  color: #1A1A2E;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(100,80,200,.06);
  transition: transform 0.25s ease, background 0.25s ease,
              border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Left accent bar */
.mu-rg-tile::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--tc, #fff);
  border-radius: 3px 0 0 3px;
  opacity: .5;
  transition: opacity 0.25s ease, width 0.25s ease;
}

/* Shimmer on hover */
.mu-rg-tile-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%);
  width: 55%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mu-rg-tile:hover {
  transform: translateY(-5px);
  background: #fff;
  border-color: color-mix(in srgb, var(--tc, #888) 50%, transparent);
  box-shadow: 0 14px 36px rgba(0,0,0,.10),
              0 0 0 1px color-mix(in srgb, var(--tc, #888) 20%, transparent);
}
.mu-rg-tile:hover::before { opacity: 1; width: 4px; }
.mu-rg-tile:hover .mu-rg-tile-glow {
  opacity: 1;
  animation: rgTileShine 0.7s ease forwards;
}

/* Tile top row */
.mu-rg-tile-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mu-rg-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  background: color-mix(in srgb, var(--tc, #fff) 14%, transparent);
  color: var(--tc, #fff);
  border: 1px solid color-mix(in srgb, var(--tc, #fff) 20%, transparent);
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.mu-rg-tile:hover .mu-rg-icon {
  background: color-mix(in srgb, var(--tc, #fff) 22%, transparent);
}
.mu-rg-arrow {
  font-size: 11px;
  color: rgba(30,30,60,.25);
  transition: color 0.2s ease, transform 0.2s ease;
}
.mu-rg-tile:hover .mu-rg-arrow {
  color: var(--tc, #fff);
  transform: translate(2px,-2px);
}

/* Text */
.mu-rg-lang {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tc, #fff);
  opacity: .8;
  margin-bottom: 5px;
  line-height: 1.3;
}
.mu-rg-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
  line-height: 1.25;
}
.mu-rg-desc {
  font-size: 12px;
  color: rgba(30,30,60,.48);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.mu-rg-footer {
  padding-top: 12px;
  border-top: 1px solid rgba(100,80,200,.10);
  font-size: 11px;
  font-weight: 600;
  color: rgba(30,30,60,.38);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.mu-rg-footer i { font-size: 12px; }
.mu-rg-tile:hover .mu-rg-footer {
  color: color-mix(in srgb, var(--tc, #fff) 80%, white);
}

/* Responsive */
@media (max-width: 900px) {
  .mu-rg-grid { grid-template-columns: repeat(2, 1fr); }
  .mu-regional-hero { padding: 28px 24px 32px; }
}
@media (max-width: 560px) {
  .mu-rg-grid { grid-template-columns: 1fr; }
  .mu-rg-title { font-size: 1.35rem; }
}

/* ════════════════════════════
   KIDS HERO BANNER CARD
════════════════════════════ */

/* Keyframes */
@keyframes kidsFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-8px) rotate(6deg); }
  66%      { transform: translateY(4px) rotate(-4deg); }
}
@keyframes kidsShine {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(260%) skewX(-15deg); }
}
@keyframes kidsPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(59,175,218,.35); }
  50%      { box-shadow: 0 0 0 8px rgba(59,175,218,0); }
}

.mu-kids-hero {
  grid-column: 1 / -1;           /* full width across 3-col grid */
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #0B1E3F 0%, #0D3B6B 40%, #0A2D55 70%, #0E1A3A 100%);
  border-radius: 22px;
  padding: 36px 44px;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(59,175,218,.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  box-shadow: 0 8px 40px rgba(11,30,63,.45);
  min-height: 200px;
}

/* Animated shimmer overlay */
.mu-kids-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.06) 50%, transparent 100%);
  width: 60%;
  animation: kidsShine 3.5s ease-in-out infinite;
  pointer-events: none;
}

/* Radial glow blobs */
.mu-kids-hero::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,175,218,.18) 0%, transparent 70%);
  top: -80px; right: 120px;
  pointer-events: none;
}

.mu-kids-hero:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(11,30,63,.6);
  border-color: rgba(59,175,218,.45);
}

/* Floating emoji elements */
.mu-kids-float {
  position: absolute;
  pointer-events: none;
  animation: kidsFloat 3s ease-in-out infinite;
  opacity: .75;
  user-select: none;
  line-height: 1;
}

/* ── Visuals: thumbnail collage ── */
.mu-kids-visuals {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}
.mu-kids-thumb {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
  border: 2px solid rgba(255,255,255,.12);
}
.mu-kids-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mu-kids-hero:hover .mu-kids-thumb img { transform: scale(1.05); }

.mu-kids-thumb--main {
  width: 190px; height: 136px;
}
.mu-kids-thumb-play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.3);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mu-kids-thumb-play i { font-size: 22px; color: #fff; }
.mu-kids-hero:hover .mu-kids-thumb-play { opacity: 1; }

.mu-kids-thumbs-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mu-kids-thumb--sm {
  width: 100px; height: 63px;
}

/* ── Content ── */
.mu-kids-content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.mu-kids-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3BAFDA;
  background: rgba(59,175,218,.15);
  border: 1px solid rgba(59,175,218,.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.mu-kids-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.mu-kids-title em {
  font-style: normal;
  background: linear-gradient(90deg, #3BAFDA, #79E0F5, #FFD93D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mu-kids-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 480px;
}
.mu-kids-channels {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.mu-kids-ch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 5px 13px;
  border-radius: 20px;
}
.mu-kids-ch i { color: #FF4545; font-size: 13px; }

.mu-kids-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #3BAFDA;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 50px;
  animation: kidsPulse 2.5s ease-in-out infinite;
  transition: background 0.2s ease, gap 0.2s ease;
}
.mu-kids-hero:hover .mu-kids-cta {
  background: #2997c2;
  gap: 14px;
  animation: none;
}
.mu-kids-cta i { font-size: 12px; }

/* Responsive */
@media (max-width: 768px) {
  .mu-kids-hero { flex-direction: column; padding: 28px 24px; gap: 24px; }
  .mu-kids-visuals { width: 100%; justify-content: center; }
  .mu-kids-thumb--main { width: 150px; height: 107px; }
  .mu-kids-thumb--sm   { width: 80px; height: 50px; }
  .mu-kids-title { font-size: 1.5rem; }
}

/* ════════════════════════════
   TOP RELEASES PANEL  (expanded grid layout)
════════════════════════════ */

.tr-section {
  background: #0D0D0D;
  padding: 0 0 80px;
  position: relative;
  overflow: hidden;
}

/* ambient glow */
.tr-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 20% 60%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 55% 60% at 80% 40%, rgba(232,115,58,0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Section header ── */
.tr-header {
  padding: 64px 0 0;
  position: relative;
  z-index: 1;
}
.tr-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tr-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
}
.tr-eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #C9A84C;
  border-radius: 2px;
}
.tr-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.tr-title em {
  font-style: italic;
  color: #C9A84C;
}
.tr-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  max-width: 400px;
  line-height: 1.65;
}
.tr-header-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.tr-hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.tr-hstat strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.tr-hstat span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.3);
}
.tr-hstat-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
}

/* ── Filter pills ── */
.tr-filter-wrap {
  padding: 28px 0 32px;
  position: relative;
  z-index: 1;
}
.tr-filter-wrap .container {
  overflow-x: auto;
  scrollbar-width: none;
}
.tr-filter-wrap .container::-webkit-scrollbar { display: none; }
.tr-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.tr-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.5);
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.tr-pill i { font-size: 11px; }
.tr-pill:hover {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.2);
}
.tr-pill.active {
  background: #C9A84C;
  border-color: #C9A84C;
  color: #0D0D0D;
}

/* ── Grid body ── */
.tr-body {
  padding: 0;
  position: relative;
  z-index: 1;
}

/* ── Language blocks ── */
.tr-lang-block {
  margin-bottom: 60px;
}
.tr-lang-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tr-lang-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.tr-lang-icon--all       { background: rgba(201,168,76,.2);   color: #C9A84C; }
.tr-lang-icon--hindi     { background: rgba(230,57,70,.15);   color: #E63946; }
.tr-lang-icon--punjabi   { background: rgba(155,93,229,.15);  color: #9B5DE5; }
.tr-lang-icon--bhojpuri  { background: rgba(232,115,58,.15);  color: #E8733A; }
.tr-lang-icon--spiritual { background: rgba(91,192,235,.15);  color: #5BC0EB; }
.tr-lang-icon--south     { background: rgba(6,214,160,.15);   color: #06D6A0; }
.tr-lang-icon--gujarati  { background: rgba(244,162,97,.15);  color: #F4A261; }
.tr-lang-icon--pahadi    { background: rgba(82,183,136,.15);  color: #52B788; }
.tr-lang-icon--other     { background: rgba(201,168,76,.15);  color: #C9A84C; }

.tr-lang-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.tr-lang-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.tr-lang-line {
  flex: 1;
  min-width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent);
}
.tr-lang-cta {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.tr-lang-cta:hover { color: #C9A84C; }

/* ── Responsive grid — fixed 5 cols, drops to 4→3→2 at breakpoints ── */
.tr-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .tr-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px)  { .tr-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .tr-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Legacy track styles neutralised ── */
.tr-track-wrap,
.tr-track {
  display: contents; /* dissolve old wrappers */
}
.tr-track-wrap::before,
.tr-track-wrap::after { display: none; }

/* ── Individual card ── */
.tr-card {
  background: #1A1A1A;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: 1px solid rgba(255,255,255,0.06);
  /* remove old flex-shrink + fixed width */
  flex-shrink: unset;
  width: auto;
}
.tr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.1);
}

/* thumbnail */
.tr-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.tr-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.tr-card:hover .tr-thumb img {
  transform: scale(1.06);
}

/* ── Play overlay ── */
.tr-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.42);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.tr-play i {
  color: #fff;
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}
.tr-card:hover .tr-play { opacity: 1; }

/* ── Badges — hidden (language labels removed per design update) ── */
.tr-badge { display: none !important; }

/* ── Info area ── */
.tr-info {
  padding: 12px 14px 14px;
}
.tr-song-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tr-song-artist {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tr-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.tr-views {
  font-size: 11px;
  font-weight: 600;
  color: #C9A84C;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.tr-views i { font-size: 10px; }
.tr-label-tag {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
  text-align: right;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .tr-grid { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
}
@media (max-width: 768px) {
  .tr-section { padding-bottom: 48px; }
  .tr-header-inner { flex-direction: column; align-items: flex-start; }
  .tr-header-stats { align-self: flex-start; }
  .tr-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .tr-lang-block { margin-bottom: 44px; }
  .tr-lang-line { display: none; }
}
@media (max-width: 480px) {
  .tr-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .tr-pill { padding: 6px 14px; font-size: 12px; }
  .tr-hstat strong { font-size: 1.3rem; }
}

/* ── FOOTER STRIP ── */
.mu-footer-cta {
  background: #0A0A0A;
  padding: 64px 0;
  text-align: center;
}
.mu-footer-cta h3 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.mu-footer-cta h3 em {
  font-style: italic;
  color: var(--gold, #C9A84C);
}
.mu-footer-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.mu-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold, #C9A84C);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.mu-cta-btn:hover {
  background: #b8973f;
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .mu-songs-grid { grid-template-columns: repeat(3, 1fr); }
  .mu-labels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .mu-songs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .mu-labels-grid { grid-template-columns: 1fr; }
  .mu-tabs { padding: 0 16px; }
  /* Pin the tab bar to the very top once scrolling (mobile header collapses) */
  .mu-tabs-wrap { top: 0; z-index: 1001; }
  .mu-tab { padding: 15px 20px; font-size: 12px; }
  .mu-lang-title { font-size: 1.3rem; }
  .mu-lang-section { padding: 40px 0 0; }
  .mu-hero-title { font-size: 2rem; }
}
@media (max-width: 480px) {
  .mu-songs-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mu-tab { flex-direction: column; gap: 5px; padding: 12px 20px; font-size: 11px; line-height: 1; }
  .mu-tab i { font-size: 17px; }
  .mu-tab span:not(.mu-tab-count) { display: block; }
}
