html,
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    color: #333;
    position: relative;
    z-index: 99;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
}

.container {
    max-width: 1140px;
    margin: auto;
    padding: 0 0px;
    width: 100%;
}

*,
::after,
::before {
    box-sizing: border-box;
}

.t_1l {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.t_12 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.t_13 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.t_14 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
    margin: 0%;
    padding: 0;
}

h2 {
    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
    font-family: 'Nunito';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
}

p {
    color: #333;
    font-family: 'Nunito';
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 157.143% */
}


.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    max-width: 1200px;
    margin: auto;
    padding-right: 10px;
}

.logo a {
    padding: 10px 10px;
    display: block;
    color: #333;
    font-family: Nunito;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 48px;
}

.nav-links {
    width: auto;
    display: flex;
    margin: 10px 0;
    padding: 0;
    list-style-type: none;
}


.nav-links li {
    position: relative;
}

.nav-links li a {
    text-transform: capitalize;
    color: #333;
    font-family: 'Nunito';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    white-space: nowrap;
    padding: 12px 24px;
    display: block;
}

.nav-links li.active a,
.nav-links li:hover a {
    border-radius: 100px;
    background: #FFE82C;
    color: #333;
}


.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 15px;
}

.line1,
.line2,
.line3 {
    width: 22px;
    height: 2px;
    margin: 2px;
    background: #f87e10;
}

.pc-searbtn {
    border-radius: 12px;
}

.burger,
.h5-searbtn,
.h5-close,
.h5-home {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.h5-text {
    display: none;
}

.burger a,
.h5-home a,
.h5-searbtn a {
    display: contents;
}

.back-to-top {
    border: none;
    position: fixed;
    bottom: 160px;
    right: 65px;
    z-index: 99;
    cursor: pointer;
    display: none;
    border-radius: 50%;
    background-color: transparent;
}

.back-to-top svg {
    width: 30px;
}


@media (max-width:1024px) {
    .logo a {
        font-size: 24px;
        line-height: 30px;
    }

    .nav-links li a {
        padding: 10px 18px;
    }
}

@media screen and (max-width: 992px) {

    .navbar {
        padding: 8px 0px;
        padding-right: 20px;
    }

    .nav-links {
        display: none;
        background-color: #fff;
        padding: 40px;
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        z-index: 9999;
        padding-top: 60px;
        height: 100vh;
        margin: 0px 0;
    }


    .nav-links.nav-active {
        display: flex;
        gap: 16px;
        position: fixed;
        flex-direction: column;
        padding-bottom: calc(100vh - 340px);
    }

    .nav-links li a {
        display: block;
        width: max-content;
        color: #333;
        padding: 8px 24px;
        border-radius: 100px;
        font-size: 14px;
        line-height: 18px;
        margin: auto;
    }


    .pc-searbtn {
        display: none;
    }

    .burger {
        display: flex;
        padding: 12px 12px;
        border-radius: 50%;
        margin-left: 24px;
    }

    .h5-home {
        display: flex;
        padding: 12px 12px;
        border-radius: 50%;
        margin-left: auto;
    }

    .h5-close {
        display: block;
        width: auto !important;
        margin-left: 0 !important;
        text-align: center;
        padding: 20px;
        position: absolute !important;
        top: 5px;
        right: 15px;

    }

    .h5-close i {
        font-size: 20px;
        color: #999;
    }

    .h5-searbtn {
        display: flex;
        padding: 12px 12px;
        border-radius: 50%;
        margin-left: 24px;
    }

    .burger i,
    .h5-searbtn i,
    .h5-home i {
        color: #333;
        font-size: 20px;
    }

    .toggle i {
        color: #999999;
    }

    .toggle {
        position: fixed;
        z-index: 9999;
        right: 20px;
        font-size: 24px;
        top: 0px;
        padding: 20px;
    }

    .logo a {
        padding: 2px 20px;
    }

    .h5-text {
        display: block;
        width: 100% !important;
    }

}

@media (max-width:550px) {
    .navbar {
        padding: 4px 0px;
        padding-right: 12px;
    }

    .logo {
        width: calc(100% - 150px);
    }

    .logo a {
        width: 100%;
        font-size: 24px;
        line-height: 30px;
        padding: 2px 12px;
    }

    .burger,
    .h5-searbtn {
        margin-left: 12px;
    }

    .burger,
    .h5-searbtn,
    .h5-home {
        padding: 10px;
    }

    .burger i,
    .h5-searbtn i,
    .h5-home i {
        font-size: 16px;
    }

    .h5-close {
        padding: 12px 20px;
    }

    .back-to-top {
        bottom: 130px;
        right: 20px;
    }

    .back-to-top svg {
        width: 25px;
    }

}

@media (max-width:380px) {
    .logo {
        width: calc(100% - 150px);
    }

    .logo a {
        font-size: 22px;
        line-height: 30px;
        padding: 2px 8px;
    }

    .navbar {
        padding-right: 8px;
    }

    .burger,
    .h5-searbtn,
    .h5-home {
        padding: 8px;
    }

    .burger,
    .h5-searbtn {
        margin-left: 8px;
    }
}


#copy-message {
    position: fixed;
    z-index: 999;
    bottom: 30%;
    width: 60px;
    height: 28px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #fff;
    border: 1px solid #d9d9d9;
    color: #333;
    font-size: 12px;
    text-align: center;
    line-height: 28px;
    border-radius: 20px;
}


section {
    padding: 16px 0;
}

.cover {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    background: #D9D9D9;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.heading {
    position: relative;
    margin-bottom: 8px;

    z-index: 99;
    width: 250px;
}

.heading p {
    width: calc(100% - 40px);
    color: #fff;
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 50px;
    /* margin: 12px 42px; */
    /* margin: 12px 0; */
    position: relative;
    z-index: 99;
    text-transform: capitalize;
    text-align: center;
}

.heading::after {
    position: absolute;
    content: '';
    left: -15px;
    top: 0;
    width: 100%;
    height: 50px;
    background-repeat: no-repeat;
    z-index: 0;
    background-size: 100% !important;
}

footer {
    padding: 20px 0;
    margin-top: 48px;
}

footer .share {
    width: 50%;
    display: flex;
    justify-content: center;
}

footer .share a {
    padding: 3px;
    margin: 0 12px;
    display: flex;
    border-radius: 80px;
    border: 0.8px solid #333;
}

footer .share i {
    color: #333;
    font-size: 25px;
}

footer .pt {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .pt a {
    padding: 0 24px;
    color: #333;
    font-family: 'Nunito';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    position: relative;
    text-decoration: underline;
    /* 125% */
}

footer .pb {
    width: 100%;
    color: #333;
    text-align: center;
    font-family: 'Nunito';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    padding-top: 24px;
    /* 125% */
}

@media (max-width:768px) {
    footer .share a {
        margin: 0 6px;
    }

    footer .pt a {
        padding: 0 12px;
    }

}

@media (max-width:550px) {
    footer .share {
        padding-top: 12px;
        width: 100%;
    }

    footer .pt {
        width: 100%;
        order: -1;
    }

    footer .pt a {
        font-size: 14px;
    }

    footer .pb {
        padding-top: 12px;
        font-size: 14px;
    }

    footer .share a {
        padding: 0px;
    }

    footer .share i {
        font-size: 25px;
        line-height: 25px
    }

    footer {
        padding: 12px 0;
    }
}

.m1 {
    border-radius: 12px;
    background: #FFE82C;
    padding: 12px;
    position: relative;
}

.m4 {
    border-radius: 12px;
    background: #007BD2;
    padding: 12px;
    position: relative;
}

.m1 .heading::after {
    background: url(../images/m1-heading.svg);
    background-repeat: no-repeat;
}

.m4 .heading p {
    color: #333;
}

.m4 .heading::after {
    background: url(../images/m4-heading.svg);
    background-repeat: no-repeat;
}

.m1 a,
.m4 a {
    display: block;
    width: 16.666%;
    padding: 12px;
}

.m1 a .item,
.m4 a .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    border-radius: 12px;
    background: #FFE82C;
    box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.50) inset, 0 1px 4px 0 #E4B715;
}

.m1 a img,
.m4 a img {
    aspect-ratio: 1/0.8;
    border-radius: 12px 12px 0 0;
}

.s2 .flex {
    justify-content: space-between;
    align-items: flex-start;
}

.m2 {
    width: calc(70% - 12px);
    border-radius: 12px;
    border: 4px solid #FDD011;
    padding: 12px;
}

.m3 {
    width: calc(30% - 12px);
    border-radius: 12px;
    border: 4px solid #FDD011;
    padding: 12px;
}

.m2 .heading::after {
    background: url(../images/m2-heading.svg);
    background-repeat: no-repeat;
    left: -19px;
}

.m3 .heading::after {
    background: url(../images/m3-heading.svg);
    background-repeat: no-repeat;
    left: -19px;
}

.m3 a {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
}

.m3 a img {
    width: 75px;
    height: 75px;
}

.m3 h2 {
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
    margin: auto;
}

.slider-wrapper {
    width: calc(100% - 80px);
    margin-left: 40px;
    margin-right: 40px;
    display: flex;
    /* transition: transform 0.5s ease; */
    transition: transform 0.5s ease-in-out;
}

.slide-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
    flex: 0 0 100%;
    /* 每次显示一组（8个） */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.slide-group.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.card {
    display: block;
    text-align: center;
    font-family: sans-serif;
    border-radius: 12px;
    border: 2px solid #E5E5E5;
    background: #FBFBFB;
    padding-bottom: 8px
}

.card h2 {
    padding: 8px 8px 0;
}


.card img {
    width: 100%;
    aspect-ratio: 1/0.8;
    background: #ccc;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #FDD011;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: auto;
}

.slider-arrow i {
    font-size: 25px;
    font-weight: 800;
}

.slider-arrow:disabled {
    opacity: 0.5;
    cursor: auto;
}

.slider-arrow.left {
    left: 0px;
}

.slider-arrow.right {
    right: 0px;
}

.m5 .heading,
.m6 .heading {
    color: #333;
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    margin-bottom: 12px;
    width: 100%;
    /* 120% */
}

.m5 .heading::after,
.m6 .heading::after {
    display: none;
}

.m5 .flex,
.m6 .flex {
    gap: 24px;
}

.m5 a {
    display: block;
    width: calc(33.33% - 16px);
}

.m5 a .item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #F8F8F8;
    align-items: center;

}

.m5 a img {
    width: 112px;
    height: 112px;
}

.m5 a .iconfont {
    color: #5DAF03;
    font-size: 30px;
    font-weight: 500;
}

.m5 a h2 {
    width: 100%;
}

.m6 a {
    display: block;
    width: calc(16.66% - 20px)
}

.m6 a .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 12px;
    border: 2px solid #E5E5E5;
    background: #FBFBFB;
    padding-bottom: 8px;
}

.m6 a .item img {
    aspect-ratio: 1/0.8;
    border-radius: 12px 12px 0 0;
}

.m6 a h2 {
    padding: 0 8px;
}

.search {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    border-radius: 100px;
    border: 2px solid #FFE82C;
    background: #FFF;
}

.search input {
    width: 100%;
    border: none;
    border-radius: 100px;
    outline: none;
    padding: 10px 24px;
    color: #666;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.search input::placeholder {
    color: #666;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.search_btn a {
    display: block;
    padding: 8px 24px;
}

.dt-top {
    width: 100%;
}

.dt-top a {
    display: block;
    width: 12.5% !important;
}

.dt-top a img {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto
}

.heading a {
    display: block;
    width: 100% !important;
    padding: 0 !important;
}

.gameLink {
    width: 100% !important;
    display: flex !important;
    align-items: center;
}

.gameLink .cover {
    width: 184px;
    height: 184px;
    border-radius: 12px !important;
}

.gameLink .text {
    width: calc(100% - 184px);
    padding-left: 24px;
}

.gameLink .text h2 {
    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
}

.gameLink .text .playbtn {
    width: max-content;
    padding: 12px 96px;
    border-radius: 8px;
    border: 0.322px solid rgba(0, 0, 0, 0.10);
    background: linear-gradient(0deg, #FDD011 0%, #FDD011 100%), #C7C7C7;
    box-shadow: 0 1.289px 2.579px 0 rgba(211, 162, 102, 0.55) inset;
    color: #333;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 25px;
    display: flex;
    align-items: center;
}

.gameLink .text .playbtn i {
    font-size: 25px;
    line-height: 25px;
    padding-left: 12px;
}

.gameLink .star {
    display: block;
    line-height: 1;
    padding: 24px 0;
}

.gameLink .star i {
    font-size: 20px;
    color: #E4E4E4;
    padding-right: 4px;
}

.gameLink .star i.full {
    color: #EC4627;
}

.gameLink .star i.partial {
    background: linear-gradient(to right, #EC4627 var(--percent, 0%), #E4E4E4 var(--percent, 0%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dt {
    margin-bottom: 24px;
}

.dt-desc {
    border-radius: 12px;
    border: 4px solid #FDD011;
    padding: 24px;
}

.dt-desc .h2 {
    overflow: hidden;
    color: #333;
    text-overflow: ellipsis;
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    padding-bottom: 8px;
    /* 120% */
}

.dt-desc .text {
    overflow: hidden;
    color: #333;
    font-feature-settings: 'liga' off;
    text-overflow: ellipsis;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    max-height: 96px;
    overflow: auto;
    padding-right: 24px;
}

.dt-desc .text::-webkit-scrollbar {
    background-color: #e5e5e5;
    width: 6px;
}

.dt-desc .text::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #FDD011;
}

.play-game {
    width: 90%;
    margin: auto;
    aspect-ratio: 1 / 0.9;
    position: relative;
    border-radius: 24px;
    margin-bottom: 24px;
    background: #F4F5F6;
}

.play-game .top {
    height: calc(100% - 60px);
    border-radius: 24px 24px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.play-game .top .top__shading {
    width: 100%;
    border-radius: 24px 24px 0 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.play-game .top .top__shading .img-border {
    width: 176px;
    height: 176px;
    display: block;
    margin: 0 auto 24px;
    border-radius: 12px;
}


.play-game .top .bg {
    width: 172px;
    height: 172px;
    border-radius: 12px;
    background: #D9D9D9;
    margin: 0 auto 20px;
}

.play-game .top button {
    margin: auto;
    cursor: pointer;
    width: max-content;
    padding: 12px 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-family: Nunito;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    /* 120% */

    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: linear-gradient(0deg, #FDD011 0%, #FDD011 100%), #C7C7C7;
    box-shadow: 0 2px 4px 0 rgba(211, 162, 102, 0.55) inset;
}

.play-game .top button span {
    gap: 8px;
    display: flex;
    align-items: center;
}

.play-game .top button i {
    font-size: 25px;
}

#gameIframe {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 50%;
    top: 0px;
    z-index: 9;
}

.play-game .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 32px;
    border-radius: 0 0 21px 21px;
    background: #FFE82C;
}

.play-game .bottom p {
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    color: #333;
}

.play-game .bottom .botton-full {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.play-game .bottom .botton-full i {
    color: #333;
    font-size: 24px;
}


@media (max-width:1140px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width:992px) {
    .heading {
        width: 210px;
    }

    .heading p {
        line-height: 40px;
    }
}


@media (max-width:768px) {

    .m1 a,
    .m4 a {
        width: 25%;
    }

    .m2 {
        width: 100%;
        margin-bottom: 32px;
    }

    .m3 {
        width: 100%;
    }

    .m3 a {
        width: 50%;
    }

    .m5 a {
        width: calc(50% - 12px);
    }

    .m6 a {
        width: calc(25% - 18px);
    }

    .dt-top a {
        width: 20% !important;
    }

    .gameLink .text .playbtn {
        padding: 8px 70px;
    }

    .gameLink .star {
        padding: 16px 0;
    }

    .gameLink .cover {
        width: 160px;
        height: 160px;
    }

    .gameLink .text {
        width: calc(100% - 160px);
        padding-left: 16px;
    }

    .play-game {
        width: 100%;
        aspect-ratio: 1 / 1.1;
    }

}

@media (max-width:550px) {
    .container {
        padding: 0 10px;
    }

    .m1 a,
    .m4 a {
        width: 33.33%;
        padding: 6px;
    }

    .m1,
    .m2,
    .m3,
    .m4 {
        padding: 12px 6px;
    }

    .heading {
        width: 180px;
    }

    .heading::after {
        left: -9px;
        height: 40px;
    }

    .heading p,
    .m5 .heading,
    .m6 .heading {
        font-size: 16px;
        line-height: 34px;
    }

    section {
        padding: 6px 0;
    }

    h2 {
        font-size: 14px;
        line-height: 18px;
    }

    .m1 a .item,
    .m4 a .item {
        gap: 4px;
    }

    .slide-group {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }

    .card h2 {
        -webkit-line-clamp: 1;
    }

    .slider-arrow i {
        font-size: 20px;
        font-weight: 800;
    }

    .slider-wrapper {
        width: calc(100% - 70px);
        margin-left: 35px;
        margin-right: 35px;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
    }

    .slider-container {
        padding: 6px 0 0;
    }

    .m2 {
        margin-bottom: 12px;
    }

    .m3 a {
        width: 100%;
        padding: 6px;
    }

    .m2 .heading::after,
    .m3 .heading::after {
        left: -12px;
    }

    .m5 .heading,
    .m6 .heading {
        width: 100%;
    }

    .m5 .flex,
    .m6 .flex {
        gap: 12px;
    }

    .m5 a {
        width: 100%;
    }

    .m5 a .item {
        gap: 8px;
        padding: 8px;
    }

    .m5 a img {
        width: 90px;
        height: 90px;
    }

    .m6 a {
        width: calc(33.33% - 8px);
    }

    .m6 a .item {
        gap: 4px;
        padding-bottom: 4px;
    }

    .m5 .heading,
    .m6 .heading {
        margin-bottom: 8px;
    }

    .search {
        width: 100%;
        margin: 5px 0;
    }

    .search input {
        padding: 6px 12px;
        font-size: 14px;
        line-height: 18px;
    }

    .search input::placeholder {
        font-size: 14px;
        line-height: 18px;
    }

    .search_btn a {
        padding: 4px 16px;
    }

    .dt-top a {
        width: 25% !important;
    }

    .dt-top {
        padding: 6px 0px;
    }

    .dt-top .heading::after {
        left: -6px;
    }

    .gameLink {
        flex-direction: column;
        padding: 10px 12px !important;
    }

    .gameLink .cover {
        width: 144px;
        height: 144px;
        margin-bottom: 12px;
    }

    .gameLink .text {
        width: 100%;
        padding-left: 0;
    }

    .gameLink .text h2 {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        text-align: center;
    }

    .gameLink .star {
        text-align: center;
        padding: 12px 0 16px;
    }

    .gameLink .star i {
        font-size: 16px;
    }

    .gameLink .text .playbtn {
        width: 100%;
        padding: 8px 0;
        justify-content: center;
    }

    .dt-desc {
        padding: 12px;
    }

    .dt-desc .h2 {
        font-size: 16px;
        line-height: 20px;
    }

    .dt-desc .text {
        font-size: 14px;
        line-height: 22px;
        max-height: 88px;
        padding-right: 12px;
    }

    .m6 a h2 {
        padding: 0 6px;
    }

    .play-game {
        aspect-ratio: 1 / 1.4;    margin-bottom: 0;
    }

    .play-game .top button {
        padding: 8px 0;
        width: 90%;
        font-size: 16px;
    }

    .play-game .top button i {
        font-size: 20px;
    }

    .play-game .top .top__shading .img-border,
    .play-game .top .bg {
        width: 150px;
        height: 150px;
    }
    .play-game .bottom p{
        font-size: 16px;
        line-height: 20px;
    }
    .play-game .bottom{
        padding: 0 12px;
    }
    .play-game .bottom .botton-full i {
        font-size: 20px;
    }
  #gameIframe{    max-width: 100%;}
}