:root {
  --red: #e50914;
  --red-glow: rgba(229, 9, 20, 0.45);
  --glass-bg: rgba(8, 8, 10, 0.55);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 22px;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.45);
  --dark: #0a0a0c;
  --nav-h: 100px;
}

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

body {
  background: #fff;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  min-height: 100vh;
  position: relative;
}
/* Background container */
.music-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Floating Icons */
.music-icon {
  position: absolute;
  font-size: 40px;
  opacity: 0.06;
  animation: floatUp linear infinite;
}

/* Animation */
@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateY(-10vh) rotate(360deg);
  }
}
/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    linear-gradient(120deg, rgba(0, 0, 0, 0.82) 0%, rgba(229, 9, 20, 0.12) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--nav-h);
}

.hero-content h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 9vw, 110px);
  letter-spacing: 3px;
  line-height: 1;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero-content h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-content p {
  margin-top: 14px;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding: 14px 38px;
  background: var(--red);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 32px var(--red-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn:hover {
  background: #ff1a26;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px var(--red-glow);
}

/* ════════════ NAVBAR ════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 16px;
  /* Glassmorphism */
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(200%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(200%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 8px 40px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(229, 9, 20, 0.06);
}

/* Red shimmer line */
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--red) 28%,
    rgba(229, 9, 20, 0.35) 65%,
    transparent 100%
  );
}
/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo img {
  height: 90px;
  filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.35));
}
/* ── MUSIC PLAYER PILL — centered ── */
.navbar-player {
  position: absolute;
  justify-content: space-between;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  max-width: calc(100vw - 340px);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 16px 8px 10px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  z-index: 1;
  box-shadow:
    0 0 15px rgba(229, 9, 20, 0.4),
    0 0 40px rgba(229, 9, 20, 0.15);
}

.navbar-player::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(229, 9, 20, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.np-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* CENTER SHOW IMAGES */
.np-shows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.show-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.show-img.now {
  border-color: #e50914;
}

.show-img:hover {
  transform: scale(1.1);
}

/* RIGHT WIDGETS */
.np-widgets {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}

/* responsive: collapse player on small screens */
@media (max-width: 768px) {
  .navbar-player {
    width: 200px;
    max-width: calc(100vw - 260px);
  }

  .np-vol {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar-player {
    display: none;
  }
}

/* Play btn */
.np-play {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(229, 9, 20, 0.55);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.np-play i {
  color: #fff;
  font-size: 20px;
  margin-left: 2px;
}

.np-play:hover {
  background: #ff1a26;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(229, 9, 20, 0.75);
}

.np-play:active {
  transform: scale(0.94);
}

@keyframes ripple {
  0% {
    box-shadow:
      0 4px 16px rgba(229, 9, 20, 0.55),
      0 0 0 0 rgba(229, 9, 20, 0.4);
  }

  100% {
    box-shadow:
      0 4px 16px rgba(229, 9, 20, 0.55),
      0 0 0 16px rgba(229, 9, 20, 0);
  }
}

.np-play.playing {
  animation: ripple 1.5s ease-out infinite;
}

/* Track info */
.np-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.np-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.np-artist {
  font-size: 10.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* EQ bars */
.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 20px;
  flex-shrink: 0;
}

.eq-bars span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--red);
  transform-origin: bottom;
  animation: eq 0.8s ease-in-out infinite alternate;
}

.eq-bars span:nth-child(1) {
  height: 6px;
  animation-delay: 0s;
}

.eq-bars span:nth-child(2) {
  height: 18px;
  animation-delay: 0.12s;
}

.eq-bars span:nth-child(3) {
  height: 10px;
  animation-delay: 0.24s;
}

.eq-bars span:nth-child(4) {
  height: 14px;
  animation-delay: 0.08s;
}

.eq-bars span:nth-child(5) {
  height: 7px;
  animation-delay: 0.18s;
}

@keyframes eq {
  from {
    transform: scaleY(0.2);
    opacity: 0.4;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.eq-bars.paused span {
  animation-play-state: paused;
  transform: scaleY(0.2);
  opacity: 0.3;
}

/* Volume */
.np-vol {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.np-vol i {
  color: var(--muted);
  font-size: 15px;
  cursor: pointer;
  transition: color 0.2s;
}

.np-vol i:hover {
  color: #fff;
}

.vol-track {
  -webkit-appearance: none;
  appearance: none;
  width: 62px;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.vol-track::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(229, 9, 20, 0.5);
  cursor: pointer;
  transition: transform 0.2s;
}

.vol-track::-webkit-slider-thumb:hover {
  transform: scale(1.35);
}

/* ── HAMBURGER ── */
.hamburger {
  flex-shrink: 0;
  margin-left: auto;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition:
    background 0.25s,
    border-color 0.25s;
}

.hamburger:hover {
  background: rgba(229, 9, 20, 0.2);
  border-color: rgba(229, 9, 20, 0.4);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── DRAWER ── */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 110px 0 40px 44px;
  transition: right 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.7);
  z-index: 99;
}

.nav-drawer.active {
  right: 0;
}

/* Close button inside drawer */
.drawer-close {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: rgba(229, 9, 20, 0.15);
  border: 1px solid rgba(229, 9, 20, 0.35);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
}

.drawer-close:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
}

.nav-drawer ul {
  list-style: none;
}

.nav-drawer ul li {
  margin-bottom: 6px;
}

.nav-drawer ul li a {
  display: inline-block;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition:
    color 0.25s,
    padding-left 0.25s;
  position: relative;
}

.nav-drawer ul li a::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: width 0.25s;
}

.nav-drawer ul li a:hover {
  color: #fff;
  padding-left: 14px;
}

.nav-drawer ul li a:hover::before {
  width: 10px;
}

/* ── CONTENT ── */
.song-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.song-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Desktop = 2 cards */
.song-item {
  flex: 0 0 50%;
  padding: 10px;
}

/* Card Design */
.song-card {
  background: #111;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  color: #fff;
}

.card-overlay {
  position: relative;
}

.card-overlay img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

/* Play Button */
.play-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: red;
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
}
/* Title */
.song-title {
  margin-top: 10px;
  font-weight: 600;
}
.song-artist {
  font-size: 14px;
  color: #ccc;
}

/* ===== Arrows ===== */
.slider-btn {
  position: absolute;
  top: -30px;
  background: red;
  color: #fff;
  border: none;
  padding: 5px 14px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
}

.left-btn {
  right: 60px;
}

.right-btn {
  right: 10px;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .song-item {
    flex: 0 0 100%;
  }
}

h2 {
  margin: 20px 0 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: #000;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.show-all {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 1px;
}

.show-all:hover {
  color: #fff;
}

/* ── TRENDING SONGS — 2 | FEATURED | 2 layout ── */
.songs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.45fr 1fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 0 24px;
}

/* Standard card */
.song-card {
  background: rgba(0, 0, 0, 0.28);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 10px;
  backdrop-filter: blur(10px);
  transition:
    transform 0.28s,
    box-shadow 0.28s,
    border-color 0.28s;
}

.song-card img {
  width: 100%;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  display: block;
}

.song-title {
  margin: 9px 0 2px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

.song-artist {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── CENTER FEATURED CARD ── */
.song-card.featured {
  border-radius: 20px;
  border: 2px solid rgba(229, 9, 20, 0.55);
  background: rgba(0, 0, 0, 0.45);
  padding: 14px;
  position: relative;
  z-index: 2;
}

.song-card.featured img {
  border-radius: 13px;
  border: 2px solid rgba(229, 9, 20, 0.35);
}

.song-card.featured .song-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-top: 12px;
}

.song-card.featured .song-artist {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* Featured badge */
.song-card.featured::before {
  content: "🔥 Contest";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(229, 9, 20, 0.5);
  white-space: nowrap;
}

/* Card overlay + play btn */
/* .card-overlay {
  position: relative;
  width: 100%;
} */

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 46px;
  height: 46px;
  background: rgba(229, 9, 20, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(229, 9, 20, 0.65);
}

.song-card.featured .play-btn {
  width: 58px;
  height: 58px;
}

.song-card.featured .play-btn i {
  font-size: 24px;
}

.song-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.play-btn i {
  color: #fff;
  font-size: 18px;
  margin-left: 2px;
}

.play-btn:hover {
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.12) !important;
}

/* Stack left/right pairs vertically */
.songs-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 900px) {
  .songs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .song-card.featured {
    grid-column: 1/-1;
  }

  .song-card.featured::before {
    top: -10px;
  }
}

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

.popular-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px 30px;
  align-items: start;
}

.popular-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  justify-items: center;
}

.channel-card {
  text-align: center;
  transition: transform 0.3s;
}

.channel-card:hover {
  transform: scale(1.07);
}

.channel-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  transition: box-shadow 0.3s;
}

.channel-card:hover .channel-circle {
  box-shadow: 0 12px 40px rgba(229, 9, 20, 0.5);
}

.channel-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel-name {
  font-size: 13px;
  font-weight: 700;
  color: #000;
}

.facebook-plugin-wrapper {
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.facebook-plugin-wrapper .fb-page {
  display: flex;
  justify-content: center;
}

@media (max-width: 1200px) {
  .popular-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .popular-section {
    padding: 30px 20px;
    gap: 28px;
  }

  .channel-circle {
    width: 110px;
    height: 110px;
  }

  .np-vol {
    display: none;
  }

  .navbar-player {
    max-width: 220px;
  }
}

@media (max-width: 500px) {
  .navbar {
    padding: 0 14px;
    gap: 10px;
  }

  .logo img {
    height: 40px;
  }
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  width: 100%;
  max-width: 1000px;
  background: #0d0d0d;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(229, 9, 20, 0.35);
  box-shadow: 0 20px 70px rgba(229, 9, 20, 0.25);
}

.video-modal-player {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.video-modal-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-modal-header {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(229, 9, 20, 0.2);
}

.video-modal-title {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}

.video-modal-close {
  width: 40px;
  height: 40px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.video-modal-close:hover {
  background: #c40810;
  transform: scale(1.1);
}
.shows-card {
  height: 270px;
  border-radius: 16px;
  border-radius: 50%;
  margin-top: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 2px solid #e50914;
}

.shows-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
}

/* Footer */
.shows-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  z-index: 1;
}

.shows-footer h5 {
  margin: 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 30px;
}
.facebook-embed-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.fb-page-responsive {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 14px;
}

.fb-page-responsive iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
}
.social-icons span {
  font-weight: 600;
  margin-right: 10px;
  font-size: 16px;
  color: #000;
}

.social-icons a {
  color: #000;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #e60023; /* Mirchi red hover */
}
.music-section {
  background: #0f0f0f;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #e50914;
  color: white;
}

/* Tabs */
.music-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab {
  background: #1e1e1e;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  color: white;
  cursor: pointer;
}

.tab.active {
  background: red;
}

/* Horizontal Scroll */
.music-list {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.music-list::-webkit-scrollbar {
  display: none;
}

/* Card */
.music-card {
  min-width: 280px;
  background: linear-gradient(to right, #1a1a1a, #111);
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.music-card h4 {
  color: red;
  margin: 0;
  font-size: 16px;
}

.music-card .music-card p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #aaa;
}

/* Play Button */
.play-btn {
  background: #222;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .shows-card {
    height: 450px !important;
  }
}
.shows-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.shows-slider {
  overflow: hidden;
}

.shows-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.shows-item {
  min-width: 33.33%;
  padding: 10px;
}
.shows-footer {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  width: 100%;
  padding: 15px;
  border-radius: 0 0 15px 15px;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 20px;
  padding: 7px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.left-arrow {
  left: 10px;
}
.right-arrow {
  right: 10px;
}

.slider-arrow:hover {
  background: #ff3c78;
}
@media (max-width: 992px) {
  .shows-item {
    min-width: 50%;
  }
}
@media (max-width: 576px) {
  .shows-item {
    min-width: 100%;
  }
  .social-icons{
    margin-top: 25px;
  }
}
