/* The Custom Playlist Music Player by Joe Kustek */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: radial-gradient(circle at top, #0a0f2b 0%, #060818 100%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 50px;
}

.player {
  background: linear-gradient(145deg, #0d1c3b, #081127);
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 16px;
  display: flex;
  gap: 30px;
  max-width: 900px;
}

.left {
  width: 350px;
  text-align: center;
}

.cover img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

audio {
  width: 100%;
  margin-top: 15px;
  filter: brightness(1.2) saturate(1.3);
  accent-color: #fff;
}

.now-playing {
  margin-top: 12px;
  font-size: 18px;
  color: #c2ff00;
  letter-spacing: 0.5px;
}

.right {
  flex: 1;
  text-align: left;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 15px;
}

h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #aad4ff;
  font-weight: 600;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  padding: 10px 8px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #e0e0e0;
  transition: background 0.25s, color 0.25s;
}

li:hover {
  background: rgba(255,255,255,0.08);
}

li.active {
  background: none;
  color: #00c3ff;
}

@media (max-width: 991px) {
  body {
    padding: 20px;
  }

  .player {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  .left {
    width: 100%;
  }

  .right {
    width: 100%;
    margin-top: -25px;
    text-align: center;
  }

  ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }
}



.desc-block-wrapper {
  margin-top: 20px;
}

.fb-image {
  width: 100%;
  overflow: hidden;
}
.fb-image img {
  width: 100%;
  height: auto;
}

/* Desktop Styles */
@media only screen and (min-width: 991px) {

}

/* Mobile Styles */
@media only screen and (max-width: 991px) {

}
