/* =========================================
   在放功能专属样式
   进度环、波形动画、播放按钮、确认弹窗
   已整合至主样式 style.css，此处保留独立覆盖项
   ========================================= */

/* 播放按钮（主要样式在 style.css 中，此处仅作微调） */
.play-btn {
    /* 确保在所有屏幕上可见 */
    z-index: 3 !important;
}

/* 如果需要在移动端调整进度环位置 */
@media (max-width: 600px) {
    .song-progress-ring {
        inset: -4px !important;
        padding: 4px !important;
    }
}

/* 播放确认弹窗（已在 style.css 定义，此处可留空或添加覆盖） */
.play-confirm-overlay {
    /* 由 style.css 统一管理 */
}

/* 完成提示弹窗 */
.play-confirm-btn.finished {
    background: var(--btn-success-bg);
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}