.amc-lazyload-yt {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 1.5rem;
    background: #000;
}
.amc-lazyload-yt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--amc-yt-bg) center/cover no-repeat;
    filter: blur(20px);
    transform: scale(1.1);
    z-index: 0;
}
.amc-lazyload-yt:hover .amc-lazyload-yt-play {
    background: rgba(255,0,0,0.8);
}
.amc-lazyload-yt-thumb {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.amc-lazyload-yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 68px;
    height: 48px;
    pointer-events: none;
    background: rgba(0,0,0,0.7);
    border-radius: 12px;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.amc-lazyload-yt-play svg {
    display: block;
}
