.play-section {
    margin-bottom: 30px;
}

.player-card {
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #252b35;
    border-radius: 18px;
    background: linear-gradient(180deg, #0d1118 0%, #080b12 100%);
}

.art-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}


/*
|--------------------------------------------------------------------------
| ArtPlayer 进度条优化
|--------------------------------------------------------------------------
*/

/* 整体进度条背景 */

.art-progress {
    background: rgba(255, 255, 255, 0.14) !important;
}


/* 已缓冲（白条） */

.art-progress-loaded,
.art-control-progress-loaded,
.art-control-progress-inner .art-progress-loaded {
    background: rgba(255, 255, 255, 0.5) !important;
}


/* 已播放（粉条） */

.art-progress-played,
.art-control-progress-played,
.art-control-progress-inner .art-progress-played {
    background: #ff4d8d !important;
}


/* 进度条高度 */

.art-progress,
.art-progress-loaded,
.art-progress-played,
.art-control-progress-loaded,
.art-control-progress-played {
    height: 5px !important;
}


/* 拖动圆点 */

.art-control-progress-indicator {
    width: 12px !important;
    height: 12px !important;
    background: #ff4d8d !important;
    border: 2px solid #fff !important;
    box-shadow: 0 0 12px rgba(255, 77, 141, .55);
}


/* Hover 时进度条更明显 */

.art-bottom:hover .art-progress {
    height: 6px !important;
}


/*
|--------------------------------------------------------------------------
| 状态栏
|--------------------------------------------------------------------------
*/

.player-status {
    height: 38px;
    padding: 0 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #d1d5db;
    font-size: 13px;
}

.player-status-left {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, .8);
    flex-shrink: 0;
}

.player-status em {
    color: #6b7280;
    font-size: 12px;
    font-style: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*
|--------------------------------------------------------------------------
| 播放信息
|--------------------------------------------------------------------------
*/

.play-info {
    padding: 16px;
    border: 1px solid #252b35;
    border-radius: 16px;
    background: #0d1118;
}

.play-info h1 {
    margin: 0 0 14px;
    color: #f5f5f5;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
    word-break: break-word;
}


/*
|--------------------------------------------------------------------------
| 标签广告
|--------------------------------------------------------------------------
*/

.play-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.play-meta-tag,
.play-meta-ad {
    min-height: 26px;
    padding: 0 11px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}


/* 标签 */

.play-meta-tag {
    background: linear-gradient(
        135deg,
        #6366f1 0%,
        #8b5cf6 100%
    );
}


/* 广告 */

.play-meta-ad {
    background: linear-gradient(
        135deg,
        #ff4d8d 0%,
        #ff7aa2 100%
    );

    box-shadow: 0 4px 12px rgba(255, 77, 141, .22);

    cursor: pointer;
}


/*
|--------------------------------------------------------------------------
| 简介
|--------------------------------------------------------------------------
*/

.play-desc {
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid #1b2230;
    color: #9ca3af;
    font-size: 13px;
    line-height: 1.8;
}


/*
|--------------------------------------------------------------------------
| 小屏
|--------------------------------------------------------------------------
*/

@media (max-width: 390px) {

    .play-info h1 {
        font-size: 20px;
    }

    .player-status em {
        max-width: 150px;
    }

    .play-meta {
        gap: 8px;
    }

    .play-meta-tag,
    .play-meta-ad {
        font-size: 11px;
    }

}