#wybor-strony {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background-color: #050a14;
    background-image: url("/images/chose/background_wybor_kadr.webp");
    background-repeat: no-repeat;
    background-position: center 20%;
    background-size: 100% 100%;
    background-attachment: fixed;
}

#wybor-strony .full-screen-click-zones {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

#wybor-strony .click-zone {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 5vh;
    text-decoration: none;
    transition: background 0.3s ease;
}

#wybor-strony .left-zone:hover { background: rgba(0, 150, 255, 0.05); }
#wybor-strony .right-zone:hover { background: rgba(255, 50, 0, 0.05); }

#wybor-strony .nav-btn {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 25vh;
    height: 25vh;
    padding-top: 23vh;
    top: 15vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0.7) drop-shadow(0 0 15px rgba(0,0,0,0.5));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    font-weight: 900;
    font-size: 2vh;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #000, 2px 2px 2px #000;
    pointer-events: none;
}

#wybor-strony .btn-left {
    background-image: url("/images/chose/button2.png");
    padding-left: 1vh;
    margin-left: -5vh;
}

#wybor-strony .btn-right {
    background-image: url("/images/chose/button1.png");
    padding-right: 2vh;
    margin-right: -5vh;
}

#wybor-strony .click-zone:hover .btn-left {
    color: #0296e4;
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(2, 150, 228, 0.6));
    transform: scale(1.05) translateY(-10px);
}

#wybor-strony .click-zone:hover .btn-right {
    color: #f92c03;
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(249, 44, 3, 0.6));
    transform: scale(1.05) translateY(-10px);
}

@media screen and (min-aspect-ratio: 16/9) {
    #wybor-strony {
        background-size: 100% 100%;
    }
}


/* Telefony */
@media screen and (max-width: 1024px) {
    #wybor-strony {
        background-size: 100% 100%;
        background-position: center 10%;
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url("/images/chose/wybor_telefon.webp");
        position: relative;
        overflow: hidden;
        width: 100%;
        min-height: 100vh;
    }

    #wybor-strony .full-screen-click-zones {
        flex-direction: column;
    }

    #wybor-strony .click-zone {
        width: 100%;
        height: 50%;
        flex: none;
    }

    #wybor-strony .left-zone {
        height: 52vh;
        align-items: flex-end;
        padding-bottom: 50px;
    }

    #wybor-strony .right-zone {
        height: 48vh;
        align-items: flex-start;
        padding-top: 270px;
    }

    #wybor-strony .nav-btn {
        width: 30vh;
        height: 100%;
        font-size: 200%;
        padding-top: 0;
        align-items: center;
        filter: brightness(1.1);
    }

    #wybor-strony .btn-left {
        background-image: url("/images/chose/button.png") !important;
        margin: 0;
        position: absolute;
        font-size: 3vh;
        line-height: 2vh;
        top: -10%;
    }

    #wybor-strony .btn-right {
        background-image: url("/images/chose/button_red.png") !important;
        margin: 0;
        font-size: 3vh;
        line-height: 2vh;
        position: absolute;
        top: 40%;
    }
}