* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

@font-face {
    font-family: "BemBolz";
    src: url(../../fonts/BemBolz.42133d3.ttf) format("truetype");
    font-display: swap;
}

body {
    font-family: BemBolz;
}

.gptslot {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    margin: 16px auto;
    margin-top: 0px;
    min-height: 250px;
    max-width: 300px;
}

.ad-label {
    color: rgb(171, 171, 171);
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    position: relative;
    padding: 5px 0px 2px 0px;
    font-size: 14px;
}

a {
    text-decoration: none;
}

a:link,
a:visited {
    color: inherit;
    text-decoration: none;
}

.ad p {
    width: 100%;
    line-height: 50px;
    text-align: center;
    height: 50px;
}

header {
    width: 100%;
    height: 60px;
}

.header-box {
    width: 100%;
    margin: 0 auto;
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.fav {
    width: 160px;
    height: 60px;
    margin-left: 10px;
    line-height: 60px;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 10px;
    color: #fff;
}

.rootbg {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    cursor: pointer;
}

.header-left,
.header-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    height: 60px;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;

}

.header-left {
    width: 30%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
            justify-content: flex-end;
    padding-right: 30px;
    border-radius: 0 0 30px 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#61d4db), to(#69e3d5));
    background: -webkit-linear-gradient(top, #61d4db 0%, #69e3d5 100%);
    background: linear-gradient(to bottom, #61d4db 0%, #69e3d5 100%);
}

.header-right {
    width: -webkit-calc(70% - 30px);
    width: calc(70% - 30px);
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
            justify-content: flex-start;
    padding-right: 30px;
    border-radius: 0 0 0 30px;
    background: -webkit-gradient(linear, left top, left bottom, from(#61d4db), to(#69e3d5));
    background: -webkit-linear-gradient(top, #61d4db 0%, #69e3d5 100%);
    background: linear-gradient(to bottom, #61d4db 0%, #69e3d5 100%);
}

.header-middle {
    min-width: 20px;
}

.header-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    margin: 0 20px;
    color: #333;
    font-weight: 600;
}

.about-box .about {
    position: relative;
}

.about-list {
    position: absolute;
    top: 40px;
    left: 0;
    height: auto;
    width: auto;
    background-color: #f0f0f0;
    z-index: 999;
    display: none;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    padding: 5px;
    border-radius: 10px;
    padding: 20px 40px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
}

.header-category-box .play-item,
.about-list .play-item {
    margin: 5px;
    background: -webkit-gradient(linear, left top, left bottom, from(#37dcc7), to(#1aa9d9));
    background: -webkit-linear-gradient(top, #37dcc7 0%, #1aa9d9 100%);
    background: linear-gradient(to bottom, #37dcc7 0%, #1aa9d9 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 30px;
    line-height: 30px;
    padding: 0 16px;
    border-radius: 20px;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    border: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-wrap: nowrap;
}

.play-item:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.header-home,
.header-online-game,
.aside-about-list a {
    height: 60px;
    font-weight: normal;
    font-size: 1rem;
    padding: 5px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    word-break: keep-all;
    white-space: nowrap;
}

.about-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
}

.play-item p,
.header-home p {
    margin: 0 20px;
}

.play-item .icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: auto 0;
    margin-right: 5px;
    background-size: cover;
    background-position: center;
}

.search-box {
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    width: 30%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background-color: #fff;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.1);
    border: 0;

}

.search-btn-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    width: 60px;
    height: 100%;
    background-color: #67e0d7;
    border-radius: 0 25px 25px 0;
}

.search-btn {
    background-color: rgba(255, 255, 255, 0);
    margin-right: 10px;
    width: 20px;
    aspect-ratio: 1;
    background-image: url(../../images/search.69ab86d.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
    border: none;
    cursor: pointer;
}

.myInput {
    color: #000;
    height: 40px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
    max-width: 85%;
    outline: 0;
    font-size: 1rem;
    border-radius: 6px;
    border: 0;
    background-color: rgba(0, 0, 0, 0);
    display: inline-block;
    padding: 0 1em;
    text-decoration: none;
}

#search-suggestions {
    position: absolute;
    width: 92%;
    top: 39px;
    left: 4%;
    /* transform: translateX(-50%); */
    max-height: 250px;
    overflow-y: auto;
    background-color: rgb(252, 252, 252);
    border: 0 1px 1px 1px solid #e6e6e69e;
    z-index: 1;
    border-radius: 0 0 10px 10px;
}

#search-suggestions div {
    padding: 6px 12px;
    cursor: pointer;
}

#search-suggestions div:hover {
    background-color: #555555b5;
}

.aside-menu {
    display: none;
    width: 40px;
    height: 40px;
    background-image: url(../../images/menu.7889495.png);
    background-position: center;
    background-size: 100%;
}

aside {
    width: 80%;
    position: fixed;
    right: 0;
    height: 100vh;
    background-color: #000000ed;
    z-index: 200;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    padding: 20px;
    overflow-y: scroll;
    box-shadow: 0 0 15px #ffffff55;

}

.close {
    width: 100%;
    position: relative;
    height: 40px;
    margin-bottom: 10px;
}

.close-icon {
    position: absolute;
    right: 10px;
    width: 30px;
    height: 30px;
    background-image: url(../../images/close-white.27d0d87.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.aside-home,
.aside-play-online,
.aside-played-games,
.aside-about {
    margin: 15px 0;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
}

.aside-list,
.aside-about-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%;
}

.awebsite {
    cursor: pointer;
}

.bottom {
    width: 100%;
    color: #fff;
    text-wrap: wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
}

.bottom-left {
    width: -webkit-calc(70% - 20px);
    width: calc(70% - 20px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    background: -webkit-gradient(linear, left top, right top, from(#50dcd9), to(#50b1e6));
    background: -webkit-linear-gradient(left, #50dcd9 0%, #50b1e6 100%);
    background: linear-gradient(to right, #50dcd9 0%, #50b1e6 100%);
    border-radius: 0 150px 150px 0;
}

.bottom-game-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    width: 70%;
    text-wrap: nowrap;
    padding-top: 10px;
}

.bottom-game-box .title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    font-weight: 600;
    font-size: 16px;
    padding-right: 10px;
}

.bottom-game-box .bottom-game-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
}

.bottom-game-list li {
    height: 30px;
    line-height: 30px;
    padding: 0;
    margin: 0 20px;
}

.bottom-game-list li::marker {
    margin: 0;
    color: #000;
}

.bottom-right {
    width: 30%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    padding-left: 30px;
    background-color: #42abe5;
    border-radius: 150px 0 0 150px;
}

.bottom-middle {
    width: 40px;
}

.bottom a:hover {
    cursor: pointer;
}

.bottom-text-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.bottom-text-box .awebsite {
    margin-left: 20px;
}

.bottom .btxt {
    width: 200px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.bottom .btxt a {
    margin: 10px;
}

.bottomfav {
    width: 160px;
    margin: 0;
    height: 70px;
}

.bt_iframe {
    width: 100%;
    min-height: 1900px;
    overflow-y: auto;
}

.self_B_00_title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    margin: 0 1%;
    height: 60px;
}

.self_B_00_title .text-box {
    width: 100%;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.text-box .title-icon {
    height: 30px;
    margin: 0 10px;
    aspect-ratio: 1;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.text-box p {
    height: 30px;
    line-height: 30px;
}

.self_B_00_title .more-btn {
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
    color: #000;
    border-radius: 15px;
    background-color: #fadd15;
}

.game-container,
.game-list {
    display: grid;
    gap: 10px;
    padding: 0 15px;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-flow: row dense;
    padding-bottom: 20px;
}

.game-child-item {
    width: 100%;
    aspect-ratio: 5/4;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-color: #1a1a1a;
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
}

.game-child-item .game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
}

.game-child-item .game-name {
    padding: 4px 8px;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    text-align: center;
    opacity: 1;
}

.game-child-item .game-icon {
    display: none;
}

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

    .main {
        width: 100%;
    }

    .game-name {
        font-size: .9rem;
    }

    .bottom {
        width: 100%;
    }

    .bottom .text-box {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
    }


    .bottom .btxt-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
                align-items: center;
    }

    .bottom .pre {
        margin: 0 auto 10px;
    }

    header,
    .header-box,
    .main {
        width: 100%;
    }

    .header-box .header-menu,
    .header-middle {
        display: none;
    }

    .header-left {
        width: 20%;
        padding: 0;
        border-radius: 0;
    }

    .header-right {
        width: 80%;
        padding: 0;
        border-radius: 0;
    }

    .search-box {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
           -moz-box-flex: 1;
                flex: 1;
        margin: 0 10px;
    }

    .bottomfav {
        margin: 10px auto;
        height: 70px;
    }

    .aside-menu {
        display: block;
    }

    .aside-list .play-item {
        width: auto;
        padding: 5px 10px;
        font-size: 14px;
    }

    .game-container,
    .game-list {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media screen and (max-width:480px) {
    .main-menu {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: flex;
    }

    .game-name {
        font-size: .8rem;
    }


    .game-container,
    .game-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .game-child-item {
        aspect-ratio: 1/1;
    }

    .bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column
    }

    .bottom .bottom-left,
    .bottom .bottom-right,
    .bottom .bottom-game-box,
    .bottom .btxt {
        width: 100%;
        padding: 10px;
        border-radius: 0;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
                justify-content: center;
    }
}
body {
    min-height: 100vh;
}

.new-game-list .game-name {
    position: relative;
}

.new-game-list .game-icon {
    position: absolute;
    display: block;
    top: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 2px 8px;
    color: #fff;
    background-color: #48b26e;
    border-radius: 15px;
}

.new-game-box,
.category-box {
    padding: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(#61d4db), to(#69e3d5));
    background: -webkit-linear-gradient(top, #61d4db 0%, #69e3d5 100%);
    background: linear-gradient(to bottom, #61d4db 0%, #69e3d5 100%);
    border-radius: 25px;
}

.text-box .new-game-icon {
    background-image: url(../../images/NewGames.b7c0bf0.png);
}

.text-box .top-game-icon {
    background-image: url(../../images/TopGames.468f764.png);
}

.text-box .exclusive-game-icon {
    background-image: url(../../images/ExclusiveSelection.45df564.png);
}

.text-box .crazy-game-icon {
    background-image: url(../../images/CrazyGames.b5b955c.png);
}

.text-box .category-icon {
    background-image: url(../../images/category.c1ae6ac.png);
}

.crazy-game-list {
    grid-template-columns: repeat(9, 1fr);
}

.crazy-game-list .game-child-item:nth-child(1),
.crazy-game-list .game-child-item:nth-child(2),
.crazy-game-list .game-child-item:nth-child(3) {
    aspect-ratio: 2/1;
    grid-column: span 3;
}

.category-list {
    grid-template-columns: repeat(4, 1fr);
}

.category-list .category-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    height: 40px;
    line-height: 30px;
    background-color: #fff;
    color: #000;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
}

.category-list .item-name {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
}

.category-list .item-icon {
    width: 30px;
    aspect-ratio: 1;
    background: center / cover no-repeat;
}

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

@media screen and (max-width:480px) {
    .game-card-item .game-icon {
        position: absolute;
        top: -8px;
        left: -8px;
        width: 20px;
        height: 20px;
    }

    .category-box .category-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-container,
    .game-list {
        grid-template-columns: repeat(3, 1fr);
    }


}
