#game_description {
    width: 100%;
    position: relative;
    z-index: 1;
}



#game_description .section_content{
    width: 100%;
    /*padding: min(12em, 12vh) 0;*/
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}




#game_description  .background_image_container{
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
}

#game_description  .background_image_container img{
    max-width: 80em;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}




#game_description .text_content_container{
    width: max-content;
    max-width: 100%;
    height: max-content;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    color: #212121;
    background: #ffffff00;
    backdrop-filter: blur(5px);
    border-radius: 1em;
    padding: 3em 1em;
    overflow: hidden;
}


#game_description .text_content_container>.title{
    width: 100%;
    font-size: min(3.5em, 8vw);
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    background: linear-gradient(to right, var(--main-orange), var(--main-blue-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}



#game_description .text_content_container .text_content{
    width: 100%;
    max-width: 65em;
    margin: 5vh 0 7vh;
    position: relative;
    height: 10em;
}


#game_description .text_content_container .text_content .text{
    width: 100%;
    text-align: center;
    line-height: 2em;
    font-size: min(1.2em, 4vw);
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}






#game_description .text_content_container .cta_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2em;
}


#game_description .text_content_container .pre_cta{
    font-size: min(1.1em, 4vw);
    text-transform: uppercase;
    display: none;
}


#game_description .text_content_container .cta{
    font-size: min(1.1em, 4vw);
}

#game_description .text_content_container .cta .app_icon{
    min-width: 1.5em;
    margin-bottom: -0.25em;
}


#game_description .text_content_container .cta .app_icon path{
    fill: white;
    stroke: none;
}














@media screen and (min-width: 1100px){

    #game_description  .background_image_container img{
        max-width: 100em;
    }

}
