.music-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 4rem 0;
}
body{
  /* background-color: whitesmoke; */
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.control-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.control-btn svg {
  width: 40px;
  height: 40px;
  fill: #7BA3C5;
  transition: fill 0.3s;
}

.control-btn:hover svg {
  fill: #5A8AB5;
}

.loading-spinner {
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.music-info {
  text-align: center;
  margin-top: 2rem;
}

.music-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.music-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.music-list {
  /* display: grid; */
  /* grid-template-columns: repeat(5, 1fr); */
  gap: 1.5rem;
  display: flex;
  width: 100%;
  margin-top: 3rem;
  padding: 0 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  justify-content: center;
}

.youtube-container {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}

.youtube-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.music-card {
  width: 35%;
  max-height: 250px;
  flex-shrink: 0;
  background: #E8E8E8;
  /* border-radius: 8px; */
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.music-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.music-card span {
  color: #999;
  font-size: 0.9rem;
}
/* 
.divider {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 2rem 0;
}

.divider-diamond {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
} */
/* 
@media (max-width: 1200px) {
  .music-list {
    grid-template-columns: repeat(4, 1fr);
  }
} */
/* 
@media (max-width: 768px) {
  .music-list {
    /* grid-template-columns: repeat(2, 1fr); */
  