.hero-banner-block {
    aspect-ratio: var(--bg-mobile-ratio);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-bottom: 40px;
    font-size: 30px;
}

.hero-banner-block:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: var(--bg-mobile);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.hero-banner-block small {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.hero-banner-block .heading {
    background: linear-gradient(270deg, #FF00B7 -0.86%, #FFF 74.08%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 34px;
    font-style: italic;
    font-weight: 900;
    line-height: 1em;
}


.hero-banner-block .gc,
.hero-banner-block .sc,
.hero-banner-block .fs {
    font-size: 24px;
    font-style: normal;
    font-weight: 900;

    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}

.hero-banner-block {
    text-align: center;
}

.hero-banner-block .nowrap {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 900;
    gap: 5px;
}

.hero-banner-block .gc {
    color: #FFD763;
    background-image: url(../../images/promo-code/icon-gc.svg);
    padding-left: 35px;
}

.hero-banner-block .sc {
    color: #00E5AF;
    background-image: url(../../images/promo-code/icon-sc.svg);
    padding-left: 35px;
}

.scale-5 {
    scale: .5;
}

.scale-6 {
    scale: .6;
}

.scale-7 {
    scale: .7;
}

.hero-banner-block .fs {
    color: #FF00B7;
}

.reduce-font {
    font-size: .9em;
}

.dropshadow {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.8));
}

.hero-banner-block .game-pic {
    width: 180px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
}

.hero-banner-block .line {
    display:flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap:5px;    
}

.hero-banner-block .btn {
    display: flex;
    width: 290px;
    height: 50px;
    padding: 0 24px;
    margin-top: 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    background: #FF00B7;
    box-shadow: 0 23px 36.2px 0 rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);

    color: #FFF;

    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 32px;
    /* 133.333% */
    margin-left: auto;
    margin-right: auto;
}


@media (min-width:768px) {

    .hero-banner-block {

        aspect-ratio: var(--bg-desktop-ratio);
        padding-bottom: 20px;
        justify-content: end;
    }

    .hero-banner-block:before {
        background-image: var(--bg-desktop);
    }



    .hero-banner-block .game-pic {
        width: 100px;
    }

    .hero-banner-block .btn {
        font-size: 20px;
        width: 250px;
        height: 50px;
    }
}

@media (min-width:1024px) {
    .hero-banner-block .game-pic {
        width: 180px;
    }

    .hero-banner-block .btn {
        font-size: 24px;
        width: 311px;
        height: 70px;
    }

    .hero-banner-block .wrapper {
        height: 76%;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
}

@media (min-width:1200px) {

    .hero-banner-block .wrapper {
        max-width: var(--max-width);
        margin-left: auto;
        margin-right: auto;

    }

}

@media (min-width:1366px) {
    .hero-banner-block .line {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 25px;

        flex-wrap: wrap;
        justify-content: center;
    }

    .small-font {
        scale: .7;
    }


    .hero-banner-block .heading {
        font-size: 64px;
        margin-bottom:5%;
    }

    .hero-banner-block .btn {
        margin-top:5%;
    }

    .hero-banner-block .gc,
    .hero-banner-block .sc,
    .hero-banner-block .fs {
        font-size: 65px;
    }

    .hero-banner-block .gc,
    .hero-banner-block .sc {
        padding-left: 90px;
    }

    .hero-banner-block .nowrap {
        gap: 10px;
        font-size: 40px;
    }

    .hero-banner-block small {
        font-size: 20px;
        margin-top: 14px;
        margin-bottom: 24px;
    }

    .hero-banner-block {
        padding-bottom: 40px;
    }

    .hero-banner-block .game-pic {
        width: 180px;
        margin-bottom: 24px;
    }
}

@media (min-width:2560px) {
    .hero-banner-block .wrapper a:not(.btn) {
        width: 60%;
    }
}