.music-player-container {
  height: 100vh;
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 20px 0;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.music-player-container > .container-fluid {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.player-section {
  background-color: #181818;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.player-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #b3b3b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.now-playing {
  margin-bottom: 40px;
}
.now-playing .track-info-with-image {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .now-playing .track-info-with-image {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.now-playing .album-artwork {
  flex-shrink: 0;
}
.now-playing .album-artwork .album-image {
  width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}
.now-playing .album-artwork .album-image:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .now-playing .album-artwork .album-image {
    width: 150px;
  }
}
.now-playing .track-details {
  flex: 1;
  text-align: left;
  min-width: 0;
}
@media (max-width: 768px) {
  .now-playing .track-details {
    text-align: center;
    width: 100%;
  }
}
.now-playing .track-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #ffffff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.now-playing .track-info {
  margin-top: 15px;
}
.now-playing .track-info .blog-link {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.now-playing .track-info .blog-link:hover {
  color: #ff0000;
}

.audio-player {
  max-width: 600px;
  margin: 0 auto;
}

.progress-container {
  margin-bottom: 30px;
  cursor: pointer;
  padding: 10px 0;
}
.progress-container .progress-bar {
  height: 4px;
  background-color: #282828;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transition: transform 0.2s ease;
}
.progress-container .progress-bar .progress-fill {
  height: 100%;
  background-color: #ff0000;
  border-radius: 2px;
  transition: width 0.1s linear;
}
.progress-container:hover .progress-bar {
  transform: scaleY(1.5);
}
.progress-container .time-info {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.8rem;
  color: #b3b3b3;
}

.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.player-controls .control-btn {
  background: none;
  border: none;
  color: #b3b3b3;
  font-size: 1.2rem;
  padding: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-controls .control-btn:hover {
  color: #ffffff;
  background-color: #282828;
}
.player-controls .control-btn.active {
  color: #ff0000;
}
.player-controls .control-btn.play-btn {
  background-color: #ffffff;
  color: #0f0f0f;
  font-size: 1.4rem;
  width: 55px;
  height: 55px;
}
.player-controls .control-btn.play-btn:hover {
  background-color: #b3b3b3;
  transform: scale(1.05);
}

.volume-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #b3b3b3;
}
.volume-control .volume-slider {
  width: 120px;
  height: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #282828;
  outline: none;
  border-radius: 2px;
}
.volume-control .volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.volume-control .volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.volume-control .volume-slider:hover::-webkit-slider-thumb {
  transform: scale(1.2);
}
.volume-control .volume-slider:hover::-moz-range-thumb {
  transform: scale(1.2);
}

.playlist-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.playlist-section {
  background-color: #181818;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  min-height: 0;
}

.playlist-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.playlist-info {
  font-size: 0.9rem;
  color: #b3b3b3;
  margin-bottom: 20px;
}

.playlist-container {
  flex: 1;
  overflow: hidden;
  margin: 0 -15px;
}

.playlist {
  height: 100%;
  overflow-y: auto;
  padding: 0 15px;
}
.playlist::-webkit-scrollbar {
  width: 8px;
}
.playlist::-webkit-scrollbar-track {
  background: #282828;
  border-radius: 4px;
}
.playlist::-webkit-scrollbar-thumb {
  background: #404040;
  border-radius: 4px;
}
.playlist::-webkit-scrollbar-thumb:hover {
  background: #606060;
}

.playlist-item {
  padding: 8px 16px;
  margin-bottom: 4px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.playlist-item:hover {
  background-color: #383838;
}
.playlist-item.active {
  background-color: #282828;
}
.playlist-item.active .track-name {
  color: #ffffff;
  font-weight: 500;
}
.playlist-item.playing .track-number {
  color: #ff0000;
}
.playlist-item .playlist-item-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.playlist-item .playlist-artwork {
  flex-shrink: 0;
}
.playlist-item .playlist-artwork .playlist-image {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.playlist-item .playlist-track-info {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 12px;
  min-width: 0;
}
.playlist-item .playlist-track-info .track-number {
  width: 20px;
  text-align: center;
  color: #b3b3b3;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.playlist-item .playlist-track-info .track-name {
  color: #b3b3b3;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
@media (max-width: 576px) {
  .playlist-item .playlist-track-info .track-name {
    font-size: 0.85rem;
    max-width: calc(100vw - 140px);
  }
}
.playlist-item .track-playing-indicator {
  color: #ff0000;
  font-size: 0.9rem;
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.playlist-item .bad-rating-btn {
  flex-shrink: 0;
}
.playlist-item .bad-rating-btn .btn-bad-rating {
  background: transparent;
  border: none;
  color: #b3b3b3;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.6;
}
.playlist-item .bad-rating-btn .btn-bad-rating:hover {
  color: #ff0000;
  background-color: rgba(255, 0, 0, 0.1);
  opacity: 1;
}
.playlist-item .bad-rating-btn .btn-bad-rating.active {
  color: #ff0000;
  background-color: rgba(255, 0, 0, 0.15);
  opacity: 1;
}

.player-row {
  flex: 1;
  display: flex;
  min-height: 0;
}

.player-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.player-column .player-section {
  flex-shrink: 0;
}
.player-column .lyrics-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-top: 12px;
}

.lyrics-section {
  background-color: #181818;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.lyrics-section .lyrics-content {
  color: #b3b3b3;
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.5;
  white-space: pre-wrap;
  flex: 1;
  overflow-y: auto;
}
.lyrics-section .lyrics-content::-webkit-scrollbar {
  width: 6px;
}
.lyrics-section .lyrics-content::-webkit-scrollbar-track {
  background: #282828;
  border-radius: 3px;
}
.lyrics-section .lyrics-content::-webkit-scrollbar-thumb {
  background: #404040;
  border-radius: 3px;
}
.lyrics-section .lyrics-content::-webkit-scrollbar-thumb:hover {
  background: #606060;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .music-player-container {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
  .music-player-container > .container-fluid {
    display: block;
    overflow: visible;
  }
  .player-row {
    display: block;
    height: auto;
  }
  .player-column {
    height: auto;
    display: block;
  }
  .player-column .lyrics-wrapper {
    margin-top: 20px;
    height: auto;
  }
  .player-column .lyrics-wrapper .lyrics-section {
    height: auto;
  }
  .player-column .lyrics-wrapper .lyrics-section .lyrics-content {
    max-height: 300px;
  }
  .playlist-column {
    height: auto;
    display: block;
    margin-top: 20px;
  }
  .playlist-section {
    height: auto;
  }
  .playlist-section .playlist-container {
    height: 400px;
  }
  .player-title {
    font-size: 2rem;
  }
  .now-playing .track-title {
    font-size: 1.4rem;
    word-break: break-word;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }
}
@media (max-width: 576px) {
  .player-section, .playlist-section {
    padding: 20px;
  }
  .player-controls {
    gap: 10px;
  }
  .player-controls .control-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .player-controls .control-btn.play-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .volume-control {
    gap: 10px;
  }
  .volume-control .volume-slider {
    width: 80px;
  }
  .now-playing .track-title {
    font-size: 1.2rem;
    -webkit-line-clamp: 3;
  }
}/*# sourceMappingURL=music-player.css.map */
