html:has(body.no-scroll){
    overflow: hidden;
}
body.no-scroll{
    overflow: hidden;
}
.gallery img {
    cursor: pointer;
}
.galleryOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
}
.galleryOverlay img {
    position: absolute;
    transition: transform 0.6s ease;
}
.galleryOverlay.active {
    opacity: 1;
    visibility: visible;
}