.zhf-video-container {
    position: relative;
    overflow: hidden;
}

.zhf-gallery-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.zhf-gallery-video.is-ready {
    opacity: 1;
}

.zhf-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 2;
    transition: transform 0.2s ease, background 0.2s ease;
}

.zhf-play-icon::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 4px;
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent #ffffff;
}

.zhf-video-container:hover .zhf-play-icon {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(0, 0, 0, 0.55);
}
