.custom-audio-player {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #111111;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #333333;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-audio-player:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

.custom-audio-player .audio-icon {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(255,255,255,0.15);
}

.custom-audio-player .audio-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
  flex-grow: 1;
  margin-left: 0.7rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#playPauseBtn {
  border: 2px solid #666666;
  background: #34383b;
  color: #ffffff;
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.7rem;
}

#playPauseBtn:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

#playPauseBtn i {
  pointer-events: none;
}

@media (max-width: 600px) {
  .custom-audio-player {
    padding: 1.5rem;
    gap: 1rem;
  }
  .custom-audio-player .audio-title {
    font-size: 1.3rem;
  }
  .custom-audio-player .audio-icon {
    width: 90px;
    height: 90px;
  }
  #playPauseBtn {
    font-size: 1.3rem;
    width: 60px;
    height: 60px;
  }
}
