.vp {
    display: flex;
    gap: 20px;
}
.vp-left {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.vp-right {
    width: 480px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    align-self: flex-start;
}

.vp-player {
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}
.vp-player video {
    display: block;
    width: 100%;
    max-height: 680px;
}

.vp-title h1 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin: 14px 0 6px;
}

.vp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
}
.vp-meta i { margin-right: 3px; font-size: 14px; }
.vp-tag {
    background: #333;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.vp-btns {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}
.vp-btns button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 18px;
    border: 1px solid #444;
    border-radius: 18px;
    background: transparent;
    color: #999;
    cursor: pointer;
    font-size: 13px;
    transition: .3s;
}
.vp-btns button i { font-size: 17px; }
.vp-btns button:hover { color: #31C27C; border-color: #31C27C; }
.vp-btns button.on { color: #ff3d00; border-color: #ff3d00; background: rgba(255,61,0,.08); }
.vp-btns button.vp-fav.on { color: #ffb800; border-color: #ffb800; background: rgba(255,184,0,.08); }

.vp-rel { margin-top: 10px; }
.vp-rel h2 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #2a2a2a;
}
.vp-rel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.vp-card { display: block; text-decoration: none; }
.vp-card-img {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 6px;
}
.vp-card-img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.vp-card-img em {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0,0,0,.7);
    color: #fff;
    font-size: 11px;
    padding: 1px 5px;
    border-radius: 3px;
    font-style: normal;
}
.vp-card-t {
    font-size: 12px;
    color: #ccc;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 3px;
}
.vp-card-v { font-size: 11px; color: #777; }
.vp-card-v i { margin-right: 2px; font-size: 11px; }
.vp-card:hover .vp-card-t { color: #31C27C; }

.vp-ad { margin-bottom: 14px; }
.vp-ad img { width: 100%; border-radius: 6px; }

.vp-list { display: flex; flex-direction: column; gap: 10px; }
.vp-list-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 8px;
    text-decoration: none;
}
.vp-list-img {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.vp-list-img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.vp-list-img em {
    position: absolute;
    bottom: 3px;
    right: 3px;
    background: rgba(0,0,0,.7);
    color: #fff;
    font-size: 10px;
    padding: 1px 4px;
    border-radius: 2px;
    font-style: normal;
}
.vp-list-txt { min-width: 0; padding-top: 2px; }
.vp-list-t {
    font-size: 12px;
    color: #ccc;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}
.vp-list-v { font-size: 11px; color: #777; }
.vp-list-v i { margin-right: 2px; font-size: 11px; }
.vp-list-item:hover .vp-list-t { color: #31C27C; }

@media (max-width: 900px) {
    .vp {
        flex-direction: column;
    }
    .vp-right {
        width: 100%;
        position: static;
    }
    .vp-rel-grid { grid-template-columns: repeat(2, 1fr); }
}
