.player-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.player-section .section-title {
    margin-bottom: 16px;
}

.player {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(245,166,35,0.18);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.player-top {
    display: flex;
    gap: 20px;
    align-items: center;
}

.player-cover-wrap {
    flex-shrink: 0;
}

.player-cover,
.player-cover-fallback {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    border: 2px solid rgba(245,166,35,0.3);
}

.player-cover {
    object-fit: cover;
    display: block;
    background: rgba(255,255,255,0.05);
}

.player-cover-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(245,166,35,0.04));
    flex-shrink: 0;
}

.player-cover.hidden,
.player-cover-fallback.hidden {
    display: none;
}

.player-info {
    flex: 1;
    min-width: 0;
}

.player-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-artist {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-progress-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0 10px;
}

.player-time {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    min-width: 34px;
    font-variant-numeric: tabular-nums;
}

.player-progress {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.player-progress-bar {
    height: 100%;
    background: #f5a623;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(245,166,35,0.5);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 4px;
}

.player-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.25s;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.player-btn:hover {
    background: rgba(245,166,35,0.15);
    color: #f5a623;
}

.player-btn-play {
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    background: rgba(245,166,35,0.12);
    border: 1px solid rgba(245,166,35,0.25);
}

.player-btn-play:hover {
    background: rgba(245,166,35,0.25);
}

.player-list {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.player-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.25s;
}

.player-list-item:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
}

.player-list-item.active {
    color: #f5a623;
    background: rgba(245,166,35,0.1);
}

.player-list-item .item-num {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    font-weight: 400;
    min-width: 18px;
}

.player-list-item .item-title {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-list-item.active .item-num {
    color: #f5a623;
}

.item-share {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    transition: all 0.25s;
    line-height: 1;
    flex-shrink: 0;
    color: rgba(255,255,255,0.25);
    font-family: inherit;
}

.item-share:hover {
    color: #f5a623;
    background: rgba(245,166,35,0.1);
}

.item-share:active {
    transform: scale(0.9);
}

@media (max-width: 600px) {
    .player-cover,
    .player-cover-fallback {
        width: 90px;
        height: 90px;
    }
    .player-cover-fallback {
        font-size: 1.8rem;
    }
    .player-title {
        font-size: 1rem;
    }
}

@media (max-width: 430px) {
    .player {
        padding: 16px;
    }
    .player-top {
        gap: 12px;
    }
    .player-cover,
    .player-cover-fallback {
        width: 76px;
        height: 76px;
    }
    .player-cover-fallback {
        font-size: 1.5rem;
    }
    .player-title {
        font-size: 0.9rem;
    }
    .player-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    .player-btn-play {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    .player-list-item {
        padding: 6px 8px;
        font-size: 0.82rem;
    }
    .item-share {
        font-size: 0.9rem;
        padding: 3px 4px;
    }
}
