.pv-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
}

.pv-overlay {
    position: relative;
    cursor: pointer;
    width: 100%;
}

.pv-overlay.pv-hidden {
    display: none;
}

.pv-poster {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

.pv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.18s ease, opacity 0.18s ease;
    line-height: 0;
    -webkit-appearance: none;
    appearance: none;
    text-decoration: none;
}

.pv-play-btn svg {
    width: clamp(52px, 8vw, 80px);
    height: clamp(52px, 8vw, 80px);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.45));
}

.pv-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.pv-play-btn:hover,
.pv-play-btn:focus,
.pv-play-btn:active {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    color: inherit;
}

.pv-play-btn:focus-visible {
    outline: none !important;
}

.pv-loader {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 14px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.65));
    z-index: 2;
}

.pv-loader[hidden] {
    display: none;
}

.pv-loader-text {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 8px;
    font-family: inherit;
    line-height: 1.4;
}

.pv-buffer-bar {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.25);
    border-radius: 3px;
    overflow: hidden;
}

.pv-buffer-fill {
    height: 100%;
    width: 0;
    background: var(--e-global-color-primary, #E96C3B);
    border-radius: 3px;
    transition: width 0.25s ease;
}

.pv-video {
    display: none;
    width: 100%;
    height: auto;
    outline: none;
}

.pv-video.pv-active {
    display: block;
}

.pv-placeholder {
    background: #eee;
    padding: 40px;
    text-align: center;
    color: #888;
    font-size: 14px;
    border-radius: 8px;
}
