/* Video preview blocks with YouTube/VK fallback (same as laserwar.ru) */
.block-video {
    overflow: hidden;
    text-align: center;
}
.block-video a {
    display: block;
    position: relative;
    text-decoration: none;
}
.block-video a::before {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg width='125' height='125' viewBox='0 0 125 125' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='45' y='45' width='35' height='36' fill='%23F8F8F8'/%3E%3Cpath d='M110.41 38.3453C109.26 34.0148 105.872 30.6043 101.569 29.4469C93.7709 27.3438 62.5 27.3438 62.5 27.3438C62.5 27.3438 31.2293 27.3438 23.4306 29.4469C19.1282 30.6045 15.7397 34.0148 14.5896 38.3453C12.5 46.1945 12.5 62.571 12.5 62.571C12.5 62.571 12.5 78.9476 14.5896 86.7968C15.7397 91.1273 19.1282 94.3957 23.4306 95.5531C31.2293 97.6563 62.5 97.6562 62.5 97.6562C62.5 97.6562 93.7707 97.6563 101.569 95.5531C105.872 94.3957 109.26 91.1273 110.41 86.7968C112.5 78.9476 112.5 62.571 112.5 62.571C112.5 62.571 112.5 46.1945 110.41 38.3453V38.3453ZM52.2727 77.4398V47.7023L78.4089 62.5714L52.2727 77.4398V77.4398Z' fill='%23F5222D'/%3E%3C/svg%3E%0A");
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}
.block-video img {
    width: 100%;
    transform: scale(1);
    transition: transform .5s ease-in-out;
}
.block-video:hover img {
    transform: scale(1.03);
}

.embed-responsive.js-video-embed-fallback {
    margin-bottom: 1rem;
    background: #000;
}
.embed-responsive.js-video-embed-fallback iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
