/* 高级简约悬浮播放器 - 右下角 */
.float-music {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
}

/* 歌曲名 */
.music-title {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    font-weight: 500;
}

/* 按钮 */
.music-controls button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    padding: 0 4px;
    transition: 0.2s;
}

.music-controls button:hover {
    color: #0a84ff;
}

/* 手机适配 */
@media (max-width:768px) {
    .float-music {
        gap: 8px;
        padding: 8px 14px;
        right: 15px;
        bottom: 15px;
    }
    .music-title {
        max-width: 100px;
        font-size: 12px;
    }
    .music-controls button {
        font-size: 12px;
    }
}
