.bpv-video-thumb {
    position: relative;
    cursor: pointer;
}
.bpv-video-thumb .bpv-thumb-inner {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    line-height: 0 !important;
    overflow: hidden !important;
}
.bpv-video-thumb img.bpv-thumb-img,
.bpv-video-thumb img.thumb {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.bpv-video-thumb .bpv-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a, #555);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
}

.bpv-video-thumb .bpv-play-icon,
.bpv-cover-play {
    display: none !important; /* hidden — uploaded thumbnails already include their own play overlay */
}

.bpv-video-thumb .bpv-play-icon-disabled {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    pointer-events: none;
}
.bpv-video-thumb .bpv-play-icon::after,
.bpv-cover-play::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 7px 0 7px 11px;
    border-color: transparent transparent transparent #fff;
}

.bpv-cover-play::after {
    border-width: 14px 0 14px 22px;
}

.bpv-video-thumb:hover .bpv-play-icon,
.bpv-iframe-overlay:hover .bpv-cover-play {
    background: rgba(220, 0, 0, 0.85);
}

.bpv-iframe-wrap {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #000;
}
.bpv-iframe-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .bpv-video-thumb .bpv-play-icon { width: 24px; height: 24px; }
    .bpv-video-thumb .bpv-play-icon::after { border-width: 5px 0 5px 8px; }
}
