.vp-shell {
    position: relative;
    width: 100%;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}

.vp-shell video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.vp-poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity .35s ease;
    z-index: 2;
}

.vp-poster.hidden {
    opacity: 0;
    pointer-events: none;
}

.vp-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: opacity .25s ease;
}

.vp-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.vp-play-circle {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, background .2s ease;
}

.vp-shell:hover .vp-play-circle {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.22);
}

.vp-play-circle svg {
    margin-left: 4px;
}

/* ─── Controls Bar ─── */
.vp-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 16px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 100%);
    z-index: 10;
    opacity: 0;
    transition: opacity .3s ease;
}

.vp-shell:hover .vp-controls,
.vp-shell.paused .vp-controls {
    opacity: 1;
}

/* Progress bar */
.vp-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, .2);
    border-radius: 4px;
    margin-bottom: 12px;
    cursor: pointer;
    position: relative;
}

.vp-progress-fill {
    height: 100%;
    background: #e8d5a3;
    border-radius: 4px;
    width: 0%;
    transition: width .1s linear;
    pointer-events: none;
}

.vp-progress:hover {
    height: 6px;
    margin-bottom: 10px;
}

.vp-progress:hover .vp-progress-fill {
    background: #f0c040;
}

/* Buttons row */
.vp-btn-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vp-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    line-height: 1;
    transition: background .15s;
}

.vp-btn:hover {
    background: rgba(255, 255, 255, .12);
}

.vp-btn svg {
    display: block;
}

.vp-time {
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    letter-spacing: .3px;
    margin-left: 4px;
    white-space: nowrap;
}

.vp-spacer {
    flex: 1;
}

.vp-vol-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vp-vol-slider {
    -webkit-appearance: none;
    width: 70px;
    height: 3px;
    background: rgba(255, 255, 255, .25);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.vp-vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.vp-speed-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.vp-speed-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
    transition: background .15s;
    white-space: nowrap;
}

.vp-speed-btn:hover {
    background: rgba(255, 255, 255, .12);
}

.vp-speed-menu {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: rgba(18, 18, 22, .96);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    overflow: hidden;
    min-width: 90px;
    backdrop-filter: blur(12px);
    z-index: 50;
}

.vp-speed-menu.open {
    display: block;
}

.vp-speed-option {
    display: block;
    width: 100%;
    padding: 9px 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    text-align: center;
    transition: background .12s, color .12s;
}

.vp-speed-option:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.vp-speed-option.active {
    color: #f0c040;
    font-weight: 600;
}

.vp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 18px;
    padding-top: 18px;
}

.vp-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #9a9890;
    font-size: 15px;
}

.vp-meta-item svg {
    opacity: .55;
}

.vp-meta-item span b {
    color: #d4cfc5;
    font-weight: 500;
}