
/*.screenshot-block {*/
/*    opacity: 0;*/
/*    transform: translateY(20px);*/
/*    transition: opacity 0.6s ease, transform 0.6s ease;*/
/*}*/

/*.screenshot-block.visible {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/

.screenshot-img {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.screenshot-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .screenshot-block {
        text-align: center;
    }

    .screenshot-img {
        margin-bottom: 20px;
    }
}