html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    transition: transform 0.3s ease;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111111;
}

body.show-nav {
    transform: translateX(100%);
}

header {
    display: flex;
    justify-content: space-between;
    height: 90px;
    padding: 30px 25px;
    position: absolute;
    width: 100%;
}

.desk-menu {
    display: none;
}

.logo-header .logo-container {
    display: flex;
    height: 31px;
}

.logo-header .toggle,
.logo-menu .toggle {
    background-color: transparent;
    border: none;
}

.menu-nav {
    padding: 38px 30px;
    background-image: url(/assets/mobile/Menu-bg_MOBILE.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.menu-nav .logo-menu {
    display: flex;
    height: 36px;
    justify-content: space-between;
}

nav {
    color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    transform: translateX(-100%);
}

nav ul {
    padding: 0;
    list-style-type: none;
    margin: 0;
}


nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

.menu-nav ul {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.menu-nav ul li {
    font-size: 25px;
}

.menu-nav ul li .language-button {
    max-width: 150px;
    border: 1px solid #FCC669;
    border-radius: 501px;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 21px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

main .banner-section {
    background-image: url(./assets/mobile/banner_MOBILE.png);
    min-height: 650px;
    background-position: top;
    background-size: cover;

    display: flex;
    flex-direction: column;
    align-items: start;
}

main .banner-section img {
    width: 100%;
    object-fit: cover;
    text-align: center;
}

main .banner-section h2 {
    font-size: 30px;
    color: #fff;
    padding: 0 25px;
    max-width: 310px;
    margin: 0;
    line-height: 125%;
}

main .banner-section strong {
    background: linear-gradient(#FBB54D, #FFC52F, #CA8E34);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

main .banner-section p {
    font-size: 13px;
    color: #fff;
    padding: 0 25px;
    max-width: 310px;
    padding: 0 25px;
    margin: 0;
    margin-top: 6px;
}

main .banner-section .banner-cont .jump {
    display: none;
}

main .banner-section .banner-download {
    padding: 25px;
    display: flex;
    transform: skew(-12deg);
    gap: 10px;
    margin-bottom: 10px;
}

main .banner-section .banner-download .download-btn {
    position: relative;
    padding: 10px;
    background-color: transparent;
    color: #000000;
    border: none;
    cursor: pointer;
    font-size: 15px;
    line-height: 22px;
    transform: skew(12deg);
    font-weight: 600;
    text-decoration: none;
    align-items: center;
    display: flex;
    gap: 10px;
    min-width: 132px;
}

main .banner-section .banner-download .download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#FBB54D, #FFC52F, #CA8E34);
    transform: skew(-12deg);
    z-index: -1;
}

main .banner-section .banner-download .download-btn img {
    height: 22px;
    width: 22px;
}

/* New section*/
.new-section {
    margin-bottom: 50px;
}

.new-section h3 {
    font-size: 30px;
    color: #fff;
    padding: 0 25px;
    max-width: 310px;
    margin: 0;
    line-height: 125%;
    margin-top: 50px;
}

.new-section p {
    font-size: 13px;
    color: #fff;
    padding: 0 25px;
    padding: 0 25px;
    margin: 0;
    margin-top: 6px;
    opacity: 70%;
}

#owl-carousel-new.owl-loaded {
    padding-left: 25px;
}

#owl-carousel-new .owl-item img {
    height: 207px;
    width: 320px !important;
    border: 1px solid #FCC669;
    border-radius: 20px;
}


#owl-carousel-new {
    margin-top: 25px;
}

#owl-carousel-new .owl-next,
#owl-carousel-new .owl-prev {
    display: none !important;
}

#owl-carousel-new .owl-item .content {
    display: flex;
    flex-direction: column;
    max-width: 320px;
}

#owl-carousel-new .owl-item .content h4 {
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 9px 0;
}

#owl-carousel-new .owl-item .content p {
    padding: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 14px;
    opacity: 70%;
    margin: 0;
}

#owl-carousel-new .owl-item .action {
    padding: 9px 5px;
    display: flex;
    transform: skew(-12deg);
    gap: 10px;
    width: 184px;
    height: 60px;
}

#owl-carousel-new .owl-item .read-more-btn {
    position: relative;
    padding: 10px 32px;
    background-color: transparent;
    cursor: pointer;
    font-size: 15px;
    line-height: 22px;
    transform: skew(12deg);
    font-weight: 600;
    text-decoration: none;
    align-items: center;
    display: flex;
    gap: 10px;

}

#owl-carousel-new .owl-item .read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: skew(-12deg);
    border-image: linear-gradient(#FBB54D, #FFC52F, #FBB54D) 1;
    border-width: 2px;
    border-style: solid;
    z-index: -1;
}

#owl-carousel-new .owl-item .read-more-btn span {
    background: linear-gradient(#FBB54D, #FFC52F, #CA8E34);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 17px;
    font-weight: 600;
}

/* Ambassador section*/
.ambassador-section {
    display: none;
    padding: 40px 0;
    background-image: url(./assets/mobile/ambassodor_bg_MOBILE.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.ambassador-section h3 {
    font-size: 28px;
    color: #fff;
    padding: 0 25px;
    margin: 0;
    line-height: 125%;
}

.ambassador-section .action {
    display: none;
}

.ambassador-section h3 strong {
    background: linear-gradient(#FBB54D, #FFC52F, #CA8E34);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.ambassador-section p {
    font-size: 13px;
    color: #fff;
    padding: 0 25px;
    padding: 0 25px;
    margin: 0;
    margin-bottom: 4px;
    opacity: 70%;
}

#owl-carousel-ambassador.owl-loaded {
    padding-left: 0;
    margin-top: 27px;
}

#owl-carousel-ambassador .owl-item .profile-img {
    height: 408px;
    width: 255px !important;
    border: 1px solid #FCC669;
    border-radius: 20px;
}

#owl-carousel-ambassador .owl-item .contact {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 36px;
    left: 26px;
    width: 82%;
    align-items: center;
}

#owl-carousel-ambassador .owl-item .contact .tw-icon {
    height: 18px;
    width: 18px;

}

#owl-carousel-ambassador .owl-item h4 {
    margin: 0;

    background: linear-gradient(#FBB54D, #FFC52F, #CA8E34);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 28px;
    line-height: 35px;
}

#owl-carousel-ambassador .owl-next,
#owl-carousel-ambassador .owl-prev {
    display: none !important;
}

/* About Us section*/
.about-us-section {
    margin: 40px 0;
    font-family: "Encode Sans Expanded", sans-serif;
}

.about-us-section img {
    display: none;
}

.about-us-section h3 {
    font-size: 28px;
    color: #fff;
    padding: 0 25px;
    margin: 0;
    line-height: 125%;
    font-weight: 900;
}

.about-us-section h3 strong {
    background: linear-gradient(#FBB54D, #FFC52F, #CA8E34);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.about-us-section p {
    font-size: 15px;
    color: #fff;
    padding: 0 43px 0 25px;
    margin: 0;
    margin: 19px 0;
    opacity: 70%;
    line-height: 141%;
}

.about-us-section .action {
    padding: 9px 30px;
    display: flex;
    transform: skew(-12deg);
    gap: 10px;
    height: 60px;
    max-width: 250px;
}

.about-us-section .read-more-btn {
    position: relative;
    padding: 10px 32px;
    background-color: transparent;
    cursor: pointer;
    font-size: 17px;
    line-height: 22px;
    transform: skew(12deg);
    font-weight: 600;
    text-decoration: none;
    align-items: center;
    display: flex;
    gap: 10px;

}

.about-us-section .read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: skew(-12deg);
    border-image: linear-gradient(#FBB54D, #FFC52F, #FBB54D) 1;
    border-width: 2px;
    border-style: solid;
    z-index: -1;
}

.about-us-section .read-more-btn span {
    background: linear-gradient(#FBB54D, #FFC52F, #CA8E34);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 17px;
    font-weight: 600;
}

.game-features-section {
    background-image: url(./assets/mobile/mobile-features-newbg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 0 25px 50px;
    padding-bottom: 33px;
}

.game-features-section h3 {
    font-size: 28px;
    color: #fff;
    padding: 0 25px;
    margin: 0;
    line-height: 125%;
    font-weight: 900;
    padding-top: 380px;

}

.game-features-section h3 strong {
    background: linear-gradient(#FBB54D, #FFC52F, #CA8E34);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.game-features-section p {
    font-size: 15px;
    color: #fff;
    padding: 0 43px 0 25px;
    margin: 0;
    opacity: 70%;
    line-height: 141%;
}

.game-features-section .features {
    margin-top: 20px;
}

.game-features-section .feature-cont {
    background-color: rgba(0, 0, 0, 0.5);
    margin: 20px 25px 14px;
    border-radius: 20px;
    padding: 20px 20px;
    position: relative;
}

.game-features-section .feature-cont img {
    height: 37px;
    width: 37px;
}

.game-features-section .feature-cont h5 {
    margin: 0;
    font-size: 17px;
    font-weight: bold;
    background: linear-gradient(#FBB54D, #FFC52F, #CA8E34);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    line-height: 141%;
    margin-top: 17px;
}

.game-features-section .feature-cont p {
    padding: 0;
    margin-bottom: 6px;
    font-size: 12px;
    color: #ffffff;
}

.game-features-section .feature-img-desk {
    display: none;
}

.download-section {
    padding: 50px 0;
    font-family: "Encode Sans Expanded", sans-serif;
}

.download-section h3 {
    font-size: 30px;
    color: #fff;
    padding: 0 25px;
    margin: 0;
    line-height: 125%;
    font-weight: 600;
}

.download-section h3 strong {
    background: linear-gradient(#FBB54D, #FFC52F, #CA8E34);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.download-section .download-img-left {
    display: none;
}

.download-section .download-img-right {
    display: none;
}

.download-section p {
    font-size: 15px;
    color: #fff;
    padding: 0 43px 0 25px;
    margin: 0;
    opacity: 70%;
    line-height: 141%;
    margin-top: 23px;
}

.download-section {
    background-image: url(./assets/mobile/download_bg-MOBILE.png);
    background-size: 100% 100%;
}

.download-section .download-img-mobile {
    height: 387px;
    padding-left: 14px;
}

.download-action {
    padding: 25px;
    display: flex;
    transform: skew(-12deg);
    gap: 10px;
    margin-bottom: 10px;
    max-width: 250px;

}

.download-action .download-btn {
    position: relative;
    padding: 10px;
    background-color: transparent;
    color: #000000;
    border: none;
    cursor: pointer;
    font-size: 15px;
    line-height: 22px;
    transform: skew(12deg);
    font-weight: 600;
    text-decoration: none;
    align-items: center;
    display: flex;
    gap: 10px;
    min-width: 132px;
}

.download-action .download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#FBB54D, #FFC52F, #CA8E34);
    transform: skew(-12deg);
    z-index: -1;
}

.download-action .download-btn img {
    height: 22px;
    width: 22px;
}

footer {
    background-image: url(./assets/mobile/footer_bg_MOBILE.png);
    background-size: 100% 100%;
    padding: 40px 26px;
}

footer .logo {
    width: 270px;
    height: 35px;
}

footer p {
    font-size: 16px;
    color: #fff;
    margin: 0;
    opacity: 70%;
    line-height: 141%;
    margin-top: 16px;
    max-width: 247px;
}

footer .quick-link {
    padding: 0;
    margin: 59px 0;
    text-decoration: none;
    list-style: none;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: 15px;
}

footer .quick-link a {
    text-decoration: none;
    opacity: 70%;
    color: #ffffff;
    font-weight: 400;
}

footer .contact {
    padding: 0;
    text-decoration: none;
    list-style: none;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 15px;
}

footer .contact li {
    display: flex;
    align-items: center;
}

footer .contact img {
    height: 24px;
    width: 24px;
    color: #ffffff;
    margin-right: 4px;
}

footer .contact span {
    text-decoration: none;
    opacity: 70%;
    color: #ffffff;
    font-weight: 400;
}

footer .social {
    margin-top: 59px;
    display: flex;
    gap: 20px;
}

footer .social img {
    width: 28px;
    height: 28px;
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .language-button {
    margin-bottom: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
}

.dropdown-content a {
    color: #000 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 10px;
    font-size: 14px;

}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media (min-width:801px) {
    header {
        display: flex;
        justify-content: space-between;
        height: 55px;
        padding: 0 90px;
        position: absolute;
        width: 100%;
        margin-top: 47px;
        z-index: 5;
    }

    .logo-header .logo-container {
        display: flex;
        height: 55px;
    }

    .desk-menu {
        display: flex;
        align-items: center;
        gap: 88px;
    }

    .desk-menu a {
        text-decoration: none;
        color: #fff;
        font-size: 16px;
    }

    .desk-menu .language-button {
        border: 1px solid #FCC669;
        border-radius: 501px;
        font-size: 16px;
        font-weight: 500;
        padding: 12px 21px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
    }

    .logo-header .toggle,
    .logo-menu .toggle {
        display: none;
    }

    main .banner-section {
        display: flex;
        background-image: url(./assets/banner_bg.png);
        background-size: 100% 100%;
        padding-top: 219px;
    }

    main .banner-section .banner-img {
        position: absolute;
        top: 0;
        right: 0;
        width: 832px;
        height: 800px;
    }

    main .banner-section h2 {
        font-size: 60px;
        max-width: 574px;
        width: 574px;
        padding-left: 90px;
        padding-right: 0;
        font-weight: 600;

    }

    main .banner-section strong {
        font-weight: 900;
    }

    main .banner-section .banner-cont .jump {
        display: block;
    }

    main .banner-section p {
        font-size: 20px;
        color: #fff;
        padding: 0px;
        max-width: 400px;
        margin-left: 90px;
        margin-top: 26px;
    }

    main .banner-section .banner-download {
        padding: 43px 0 0 90px;
        margin-bottom: 110px;

    }

    main .banner-section .banner-download .download-btn img {
        height: 41px;
        width: 41px;
    }

    main .banner-section .banner-download .download-btn {
        font-size: 20px;
        min-width: 232px;
        padding: 7px 30px;
        height: 74px;
    }

    .new-section {
        background-image: url(./assets/new_bg.png);
        padding-top: 70px;
        padding-bottom: 70px;
        background-size: 100% 100%;
    }

    .new-section h3 {
        max-width: max-content;
        padding-left: 90px;
        height: 75px;
        margin-top: 0px;
        font-size: 50px;
    }

    .new-section p {
        font-size: 20px;
        color: #fff;
        padding-left: 90px;
        margin: 0;
        margin-top: 6px;
        opacity: 70%;
    }

    #owl-carousel-new.owl-loaded {
        padding-left: 90px;
    }

    #owl-carousel-new .owl-item img {
        height: 261px;
        width: 402px !important;
        border: 1px solid #FCC669;
        border-radius: 20px;
    }

    #owl-carousel-new .owl-item .content {
        max-width: 402px;
    }

    #owl-carousel-new .owl-item .content h4 {
        font-size: 25px;
        max-width: 402px;
    }

    #owl-carousel-new .owl-item .content p {
        font-size: 16px;
        max-width: 402px;
    }

    #owl-carousel-new .owl-item .action {
        padding: 13px 8px;
        width: 194px;
        height: 75px;
    }

    #owl-carousel-new .owl-next,
    #owl-carousel-new .owl-prev {
        display: flex !important;
        background: none;
        border: none;
        margin: 0;
    }

    #owl-carousel-new .owl-nav {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        top: -100px;
        right: 90px;
        margin: 0;
    }

    #owl-carousel-new .owl-nav.disabled {
        display: none;
    }

    .ambassador-section {
        display: none;

        /* display: flex; */
        flex-direction: row-reverse;
        justify-content: flex-end;
        background-image: url(./assets/ambassodor_bg.png);
        background-size: 100% 100%;
        padding: 83px 0;
        gap: 66px;
    }

    .ambassador-section .ambassador-header {
        width: 407px;
        margin-right: 67px;
    }

    .ambassador-section .ambassador-header p {
        padding: 0;
        font-size: 20px;
        margin-bottom: 13px;
    }

    .ambassador-section .ambassador-header h3 {
        font-size: 40px;
        padding: 0;
    }

    

    #owl-carousel-ambassador.owl-loaded {
        padding-left: 90px;
        margin-top: 0;
        max-width: 900px;
    }

    .ambassador-section .action {
        display: flex;
        margin-top: 46px;
    }

    .ambassador-section .action {
        position: relative;
        padding: 10px 32px;
        background-color: transparent;
        cursor: pointer;
        font-size: 20px;
        line-height: 22px;
        font-weight: 600;
        text-decoration: none;
        align-items: center;
        display: flex;
        gap: 10px;
        height: 62px;
        width: 192px;
    }
    
    .ambassador-section .action::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: skew(-12deg);
        background: linear-gradient(#FBB54D, #FFC52F, #FBB54D);

    }
    .ambassador-section .action a {
        text-decoration: none;
    }
    
    .ambassador-section .action span {
        color: #000000;
        font-size: 20px;
        font-weight: 600;
        z-index: 5;
        position: relative;
    }

    .about-us-section {
        margin: 0;
        display: flex;
        justify-content: space-around;
    }

    .about-us-section img {
        display: flex;
        height: 680px;
    }

    .about-us-section p.title {
        font-size: 20px;
        margin-top: 132px;
        padding: 0;
        max-width: 600px;
    }

    .about-us-section h3 {
        font-size: 40px;
        padding: 0;
        max-width: 600px;
    }

    .about-us-section p.description {
        margin-top: 22px;
        font-size: 16px;
        max-width: 600px;
        padding: 0;

    }

    .about-us-section .action {
        height: 62px;
        padding: 0;
    }
    .about-us-section .action span {
        font-size: 20px;
    }

    .game-features-section {
        background-image: url(./assets/feature_bg.png);
        margin: 0 90px;
        padding-bottom: 60px;
        overflow: visible;
        position: relative;   
     }


    .game-features-section .features {
        display: flex;
        padding-left: 62px;
        margin-top: 35px;
        gap: 25px;
        z-index: 5;
        position: relative;
        flex-wrap: wrap;
        max-width: 820px;
    }

    .game-features-section p.title {
        font-size: 15px;
        /* padding-top: 53px; */
        padding: 0;
        padding-left: 62px;
        max-width: 800px;
    }
    .game-features-section h3 {
        font-size: 36px;
        padding-left: 62px;
        padding-top: 53px;

    }

    .game-features-section .features .feature-cont {
        margin: 0;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        width: 235px;

    }

    .game-features-section .features .feature-cont p.description {
        margin-top: 6px;
        max-width: 207px;
    }   

    .game-features-section .feature-img-desk {
        display: block;
        height: 555px;
        position: absolute;
        right: 1px;
        top: -25px;
        border-radius: 50px;
    }

    .download-section {
        background-image: url(./assets/download_bg.png);
        display: flex;
        min-height: 610px;
        margin: 70px 0;
        position: relative;
        overflow: hidden;
    }

    .download-section .download-content p {
        font-size: 20px;
        max-width: 491px;
    }
    .download-section .download-content h3 {
        font-size: 47px;
        margin-top: 10px;
    }

    .download-section .download-content {
        /* margin-left: 376px; */
        z-index: 5;
    }

    .download-action .download-btn img {
        height: 41px;
        width: 41px;
    }

    .download-action .download-btn {
        margin-top: 26px;
        font-size: 20px;
        min-width: 232px;
        padding: 7px 30px;
        height: 74px;
    }

    .download-section .download-img-mobile {
        display: none;
    }
    .download-section .download-img-left {
        display: block;
        max-height: 580px;
        position: relative;
        left: -100px;
    }
    .download-section .download-img-right {
        display: block;
        max-height: 645px;
        position: absolute;
        right: -80px;
        top: 40px;
        z-index: 1;
    }

    footer {
        display: flex;
        justify-content: space-between;
        background-image: url(./assets/footer_bg.png);
        padding: 40px 90px;
    }

    footer .quick-link {
        margin: 0;
    }

    footer .contact {
        margin: 0;
    }

    footer .social {
        margin: 0;
        align-items: flex-end;
    }

    .dropdown-content a {
        font-size: 20px;
    }
}