.artist-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.artist-card {
  cursor: pointer;
  width: 250px;
  text-align: center;
  border: 2px solid #eee;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.2s;
}
.artist-card:hover {
  transform: scale(1.05);
}
.artist-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}
.modal-content {
  background-color: #000;
  margin: 10% auto;
  padding: 0;
  border: none;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
}
.close {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin: 10px;
  cursor: pointer;
}
#player-container {
  padding: 15px;
  background-color: #111;
}
#player-container iframe,
#player-container audio {
  width: 100%;
  height: 80px;
  border: none;
}
