/* musicstylez.css */
body.music-list-page {
  background-color: #000;
  color: #ccc;
  font-family: 'Press Start 2P', monospace;
  background-image: url('darkbackground.png'); /* optional */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container {
  max-width: 600px;
  margin: auto;
  padding: 30px;
  border: 2px solid #ff00ff;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 15px #ff00ff;
}

header h1 {
  font-size: 14px;
  color: #ff66ff;
  margin-bottom: 10px;
}

nav a {
  color: #ff66ff;
  text-decoration: none;
  margin-right: 10px;
  font-size: 10px;
  transition: color 0.3s;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 5px #ff00ff;
}

main p {
  font-size: 12px;
  margin-top: 10px;
}

.playlist {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.playlist li {
  margin-bottom: 15px;
}

.playlist a {
  color: #ff66ff;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s, text-shadow 0.3s;
}

.playlist a:hover {
  color: #fff;
  text-shadow: 0 0 5px #ff00ff;
}

footer p {
  font-size: 10px;
  text-align: center;
  margin-top: 30px;
  color: #ff66ff;
}

/* -------------------------------------------------------- */
/* SIDEBARS */
/* -------------------------------------------------------- */

.music-layout {
  display: flex;
  gap: 20px;
}

.album-art {
  flex: 0 0 150px; /* fixed sidebar width */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.album-art img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px #ff00ff;
}

.playlist {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.playlist li {
  margin-bottom: 10px;
}

.marquee {
  font-size: 12px;
  color: #ff66ff;
  margin-bottom: 10px;
}

.music-player {
  margin-top: 20px;
}
