.gameLaunchModalOverlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: transparent;
    }

    .gameLaunchBgBlur {
    width: 100%;
    height: 100dvh;
    position: fixed;
    transition: all .5s ease;
    z-index: 1;
    background: rgba(0, 0, 0, .5019607843137255);
    backdrop-filter: blur(3px);
    }

    .gameLaunchModalMainWrapper {
    background: #000;
    padding: 0;
    max-width: 480px;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    position: relative;
    margin: auto;
    z-index: 2;
    }

    .gameLaunchInside {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    overflow: hidden;
    }
    .gameLaunchLogo{
        width: 98px;
        height: auto;
        margin: 0 auto;
        position: absolute;
        left: 50%;
        transform: translate(-50%,25%);
    }
    .gameLaunchLogo img{
        width: 100%;
        height: auto;
    }

    .gameLaunch {
    width: auto;
    height: 100%;
    max-height: auto;
    object-fit: contain;
    }
    .gameLaunchButton{
    position: absolute;
    bottom: 14%;
    background: linear-gradient(rgb(240, 214, 112) 0%, rgb(187, 137, 26) 100%);
    width: 252px;
    height: 50px;
    border-radius: 12px;
    padding: 9.79px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
    cursor: pointer;
    }
    .gameLaunchButton a{
    color: #000000;
    font-weight: 500;
    font-size: 19.57px;
    line-height: 26px;
    font-family: Roboto, sans-serif;
    display: inline-block;
    text-align: center;
    width: 100%;
    height: 100%;
    }
    .gameLaunchButton a:hover{
    color: #000000;
    }
    .gameLaunchButton.showBtn{
    opacity: 1;
    transform: translateY(0);
    }
    .gameLaunchClose{
    border-radius: 30px;
    border: 1px solid #FFFFFF1F;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: auto;
    width: 80px;
    height: 37px;
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    right: 50%;
    left: 50%;
    bottom: 3%;
    transform: translate(-50%,40px);
    opacity: 0;
    transition: opacity .6s ease, transform .6s ease;
    }

    .gameLaunchClose.showClose{
    transform: translate(-50%,0);
    opacity: 1;
    }

    .gameLaunchClose.hideClose{
    transform: translate(-50%,40px);
    opacity: 0;
    }
    .gameLaunchClose span{
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-left: 5px;
    letter-spacing: 0%;
    text-align: center;
    }
    .gameLaunchClose img{
    width: 16px;
    height: 16px;
    }