/* ===========================================
   Blog Post-Only Music Player - Minimalist
   =========================================== */

.post-music-player {
    contain: layout paint;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

/* 歌词视口基础样式 */
.music-lyrics-viewport {
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.lyric-line {
    font-size: 0.75rem; /* 12px */
    line-height: 1.25rem;
    padding: 0.1rem 0;
    transition: all 0.4s ease;
    opacity: 0.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lyric-line.active {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 1;
    color: #18181b; /* zinc-900 */
}

html.dark .lyric-line.active {
    color: #f4f4f5; /* zinc-50 */
}

/* 去除上一版的厚重样式 */
.post-bgm-container {
    max-width: 500px; /* 限制宽度更偏向卡片感 */
}
