.vnspo-yt-lazy {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background-color: #000;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.vnspo-yt-lazy img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.vnspo-yt-lazy:hover img {
    opacity: 1;
}

.vnspo-yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 2;
}

.vnspo-yt-play svg {
    width: 100%;
    height: 100%;
    fill: #ff0000;
    transition: fill 0.2s;
}

.vnspo-yt-lazy:hover .vnspo-yt-play svg {
    fill: #cc0000;
}

.vnspo-yt-lazy iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}