/* 卡拉OK歌词容器样式 */
#karaoke-lyrics-container {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
    min-height: 80px;
}

/* 当前高亮歌词（卡拉OK效果） */
.lyrics-highlight {
    color: #e74c3c;
    font-size: 28px;
    text-shadow: 0 0 5px rgba(231, 76, 60, 0.5);
}
