.shorts-video {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
}

.shorts-video iframe {
    width: 100%;
    height: 100%;
}

.overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-btn svg {
    display: block;
}

.play-btn .yt-bg {
    fill: #ff0000;
    transition: fill 0.2s ease;
}

.play-btn .yt-play {
    fill: #ffffff;
}

/* Hover ефект як у YouTube */
.shorts-video:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.shorts-video:hover .yt-bg {
    fill: #cc0000;
}