* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.fixed-container {
    position: relative;
    width: 1920px;
    height: 1080px;
    overflow: hidden;
    margin: 0 auto;
    background-color: #000;
}

.right-block-wrapper {
    position: absolute;
    left: 79%;
    top: 83%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: inline-block;
}

.click-zone {
    position: absolute;
    top: 40%;
    left: 30%;
    width: 70%;
    height: 60%;
    
    cursor: pointer;
}

.bg-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    
    opacity: 0;
    transition: opacity 1s ease-in-out;
    
    pointer-events: none; 
}

.bg-link.active {
    opacity: 1;
    pointer-events: auto; 
}

.bg-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}