.music-card-full {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.album-art-wrap { position: relative; flex-shrink: 0; }
.album-art {
  border-radius: 16px;
  object-fit: cover;
  background: #1a1a1d;
  box-shadow: 0 12px 45px rgba(0,0,0,0.55);
  position: relative;
  z-index: 1;
}

.music-track-info { text-align: center; }
.music-song { font-weight: 700; color: #fff; letter-spacing: -0.2px; }
.music-artist { font-size: 0.84rem; color: var(--text-secondary); margin-top: 2px; }

.progress-wrap { width: 100%; }
.progress-track {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: #fff;
  border-radius: 3px;
  width: 0%;
  transition: width 0.45s linear;
  box-shadow: 0 0 6px rgba(255,255,255,0.3);
}
.progress-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.64rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.lyrics-container {
  width: 100%;
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 2.1;
  text-align: center;
  padding: 14px 10px;
  position: relative;
}
.lyrics-inner {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.lyric-line {
  padding: 5px 0;
  transition: all 0.4s ease;
  cursor: default;
  border-radius: 6px;
  color: var(--text-muted);
}
.lyric-line.active {
  color: #fff;
  font-weight: 600;      
  padding: 7px 0;
  transform: scale(1.03);
  text-shadow: 0 0 18px rgba(255,255,255,0.2);
}
.lyric-fallback { color: var(--text-muted); font-style: italic; }