/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 14px;
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: var(--secondary-color);
}

/* Lyrics Header */
.lyrics-header {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lyrics-header h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.lyrics-artist {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.lyrics-artist a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.lyrics-artist a:hover {
  text-decoration: underline;
}

.lyrics-album,
.lyrics-composer {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.lyrics-album a {
  color: var(--secondary-color);
  text-decoration: none;
}

.lyrics-album a:hover {
  color: var(--primary-color);
}

.lyrics-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.btn-favorite,
.btn-favorited {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-favorite {
  background: var(--light-bg);
  color: var(--secondary-color);
  border: none;
}

.btn-favorite:hover {
  background: #ffebee;
  color: #e91e63;
}

.btn-favorited {
  background: #ffebee;
  color: #e91e63;
  border: none;
}

.lyrics-views {
  font-size: 14px;
  color: var(--text-muted);
}

/* Video */
.lyrics-video {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Lyrics Content */
.lyrics-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lyrics-text {
  font-size: 1rem;
  line-height: 2;
  color: var(--secondary-color);
}

/* Streaming Links */
.lyrics-streaming {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lyrics-streaming h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.streaming-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-spotify {
  background: #1db954;
  color: #ffffff;
  border: none;
}

.btn-spotify:hover {
  background: #1aa34a;
  color: #ffffff;
}

.btn-youtube {
  background: #ff0000;
  color: #ffffff;
  border: none;
}

.btn-youtube:hover {
  background: #cc0000;
  color: #ffffff;
}

/* Sidebar */
.sidebar-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.artist-sidebar-card .artist-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.artist-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.artist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-hover)
  );
  color: #ffffff;
  font-size: 1.5rem;
}

.artist-details h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.artist-details span {
  font-size: 13px;
  color: var(--primary-color);
}

.artist-link:hover .artist-details h3 {
  color: var(--primary-color);
}

/* Related Songs */
.related-songs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-songs li {
  margin-bottom: 8px;
}

.related-songs a,
.related-songs span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.related-songs a:hover {
  background: var(--light-bg);
  color: var(--primary-color);
}

.related-songs a i {
  color: var(--primary-color);
}

/* Share Buttons */
.share-buttons {
  display: flex;
  gap: 10px;
}

.btn-share {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  border: none;
  transition: transform 0.2s;
}

.btn-share:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.btn-share.facebook {
  background: #1877f2;
}
.btn-share.twitter {
  background: #1da1f2;
}
.btn-share.whatsapp {
  background: #25d366;
}
.btn-share.copy {
  background: var(--secondary-color);
}

/* Responsive */
@media (max-width: 991.98px) {
  .lyrics-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
