@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}


::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Poppins', sans-serif;
}

.click_btn_option {
    text-transform: uppercase;
}

.ad-content h2 {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text_color);
}

:root {
    --text_color: #888;
    --rounded: 15px;
    --border-color: #e5e7eb;
    --btn_bg: #3B82F6;
    --btn-text-color: #f4f4f8;
    --btn-boxShadow: 2px 2px 14px rgb(0 0 0 / 40%);
    --div-boxShadow: rgba(0, 0, 0, 0.25) 0px 12px 22px -12px;
}

.main-content {
    position: relative;
    background-image: url(/assets/grid_Frame.svg);
    background-color: white;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;
}

.games-group {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    max-width: 400px;
}

@media(max-width:500px) {
    .games-group {
        max-width: 500px;
        border-left: none;
        border-right: none;
    }

    .more_game {
        width: 500px !important;
    }
}

.bg-top {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, white, rgba(30, 31, 34, 0));
}

.bg-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, white, rgba(30, 31, 34, 0));
}

::-webkit-scrollbar {
    display: none;
}


.game-list-content {
    --gridTemplateColumns: 3;
}

.game-list-content {
    display: grid;
    grid-template-columns: repeat(var(--gridTemplateColumns), 1fr);
    gap: 8px;
    padding: 0;
    list-style: none;
}



.game-link .relative {
    position: absolute;
    top: 0;
    left: 0;
}

.grid-content {
    padding: 10px 16px;

}



.game-list .big-2x2 {
    grid-column: span 2;
    grid-row: span 2;
}

.game-list-content .game-link {
    border-radius: 16px;
    box-shadow: #0000003d 0 6px 12px 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    padding-top: 100%;
    /* overflow: hidden; */
    -ms-user-select: none;
    user-select: none;
}

.game-list li a,
.game-list-content .game-link {
    display: block;
    transition: .2s;
    position: relative;
    height: 100%;
    width: 100%;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    opacity: 0;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 9999;
    pointer-events: none;
}

.popup-content {
    position: relative;
    height: auto;
    border: 1px solid #888;
    color: #fff;
    border-radius: 5px;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    padding: 10px;
    position: absolute;
    pointer-events: auto;
    z-index: 1001;
}

.close-popup {
    outline: none;
    background-color: #FFFFFF;
    border: 1px solid #000;
    border-radius: 20%;
    color: #000;
    cursor: pointer;
    font-family: arial;
    font-size: 25px;
    font-weight: 700;
    height: 30px;
    line-height: 25px;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
    width: 30px;
    z-index: 1003;
}

.about_section {
    color: var(--text_color);
}

.about_section h1 {
    text-align: center;
    margin-top: 14px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text_color);
}

.about_section p {
    font-size: 14px;
}

a {
    color: #fff;
    text-decoration: none;
}

.game-list-content .game-img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-item-title {
    bottom: 10px;
    font-size: 14px;
    margin: 0;
    width: 100%;
    z-index: 5003;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


.game-item-title,
.game-title {
    color: #fff;
    opacity: 0;
    text-align: center;
}

.game-shadow {
    background: linear-gradient(0deg, rgba(0, 0, 0, .5) 0, transparent 50%);
    border-radius: 16px;
    bottom: 0;
    display: none;
    height: 100%;
    width: 100%;
    z-index: 5002;
}

.game-shadow,
.game-item-title,
.loader,
.text {
    position: absolute;
}

.game-list li {
    border-radius: 16px;
}

.game-list,
.game-list li {
    display: contents;
}

li {
    list-style: none;
}

.game-list li a:hover {
    z-index: 1000;
    transform: scale(1.01) translateY(-1px);
    -webkit-transform: scale(1.01) translateY(-1px);
    -moz-transform: scale(1.01) translateY(-1px);
    -ms-transform: scale(1.01) translateY(-1px);
    -o-transform: scale(1.01) translateY(-1px);
}


.detail-container {
    display: flex;
    justify-content: space-between;
    margin: 30px auto 0;
    padding: 0 24px;
    background-color: #fff;
}

.contact-container {
    justify-content: space-between;
    margin: 30px auto 0;
    padding: 0 24px;
    background-color: #fff;
    max-width: 1024px;
    width: 100%;
}

.resp_more_game {
    display: flex;
    justify-content: center;
}

.more_game {
    width: 370px;
}

.click_btn:hover, .play-btn:hover {
    background-color: #0072d1;
    animation-name: shimmer;
    -moz-animation-duration: 2s;
    animation-duration: 2s;
}

.btn1, .click_btn1 {
    width: 100%;
}

@keyframes shimmer {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top right;
    }
}

.click_btn {
    background-color: var(--btn_bg);
    margin-top: 15px;
    padding: 10px 28px 10px 28px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    color: var(--btn-text-color);
    border-radius: var(--rounded);
    box-shadow: var(--btn-boxShadow);
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
}

.resp_footer {
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: var(--text_color);
}

footer {
    margin-top: 10px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    color: white !important;
}

.main-footer {
    display: flex;
    margin-top: 10px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    color: white !important;
}

.anchor_text {
    color: black;
    font-size: 14px;
}

.anchor_text:hover {
    text-decoration: underline;
}

.body-loading {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(23, 31, 71, .8);
    z-index: 10;
    justify-content: center;
    align-items: center;
}

.body-loading .loader {
    width: 3%;
    padding-top: 3%;
}

.tooltip {
    display: none;
    margin: 0px 16px;
    background: #fff;
    padding: 30px;
    max-width: 480px;
    border-radius: 4px;
    box-shadow: rgba(252, 213, 189, .45) 0 0 50px 0;
}

.tooltip-text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #171f47;
}







.ads,
.detail-container {
    max-width: 768px;
    width: 100%;
}

.game-link .loading-img {
    background: #fff !important
}

.game-list-content .loading-img {
    position: absolute;
    left: 50%;
    right: 50%;
    top: 50%;
    bottom: 50%
}

.detail-container .main-container {
    /* width: calc(100% - 321px); */
    width: 100%;
}





.info-detail-card {
    display: flex;
    width: 100%;
    height: 164px;
    margin-bottom: 10px;
}

.info-detail-card .info-detail-img {
    position: relative;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    width: 164px;
    background-color: #eee;
}

.relative {
    position: relative;
}

.info-detail-card .info-detail-img .cover-img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.lazy-load,
.screenshot-list-swiper .swiper-button-next:after,
.screenshot-list-swiper .swiper-button-prev:after {
    display: none;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 0;
    padding-top: 50%;
}

.loader,
.loader::after {
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.loader::after {
    content: "";
    width: 100%;
    height: 100%;
    border: 5px solid #dcdddb;
    border-top-color: #48a8ff;
    border-radius: 50%;
    -webkit-animation: .75s ease-out infinite loading;
    animation: .75s ease-out infinite loading;
    box-sizing: border-box;
}

@keyframes loading {
    0% {
        transform: rotate(0turn);
    }

    100% {
        transform: rotate(1turn);
    }
}

.info-detail-card .info-info {
    height: 100%;
    width: 70%;
    margin-left: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.info-detail-card .info-info .info-name {
    font-size: 44px !important;
    font-weight: 800;
    width: 100%;
}

.info-detail-card .info-info .info-name h1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    color: #222;
    font-size: 28px;
    font-weight: 600;
}

h1 {
    font-size: unset;
}

.info-detail-card .info-info .info-developer {
    width: 80%;
    display: flex;
    align-items: center;
}

.info-developer-item,
.rating-container {
    align-items: center;
    display: flex;
}

.info-developer-item .icon {
    margin-right: 12px;
    height: 17px;
}

.info-developer-item .number {
    font-size: 18px;
    color: #73777a;
    font-weight: 400;
}

.info-developer .line {
    height: 80%;
    border-right: 1px solid #b4b4b4;
    margin: 0 30px;
}

.info-detail-card .info-info .rating-container {
    margin-bottom: 12px;
}

.rating-container .start {
    margin-right: 4px;
    width: 24px;
}

.info-info .rating-container .rating-score {
    color: #73777a;
    font-weight: 400;
    margin-left: 8px;
    font-size: 20px;
}

.ads {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
}



.about-game {
    width: 100%;
    margin-top: 10px;
    border-radius: 10px;
}

.about-game .game-info-table {
    display: grid;
    list-style: none;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    gap: 10px;
    width: 100%;
}

.about-game .game-info-table li {
    display: grid;
    list-style: none;
    border: 1px solid #E1E9EF;
    border-radius: 14px;
    padding: 12px;
    gap: 5px;
}


.about-game .game-info-table li .info-key {
    border-bottom: none;
    text-align: left;
    color: #222;
    font-size: 16px;
    font-weight: 600;
}

.about-game .game-info-table li .info-value {
    color: #575757;
    font-weight: 400;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.editor-review {
    width: 100%;
    margin: 16px 0;
}

.editor-review .editor-review-title {
    color: #222;
    font-size: 22px;
    font-weight: 600;
    width: 100%;
}

.editor-review .desc,
.how-to-play .how-to-play-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* white-space: pre-line; */
    margin-top: 10px;
    width: 100%;
    color: #3a3a3a;
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: .16px;
}

.game-card {
    display: block;
    position: relative;
    border-radius: 12px;
    padding: 12px 16px;

}

.main-card {
    background-color: white;
    height: 280px;
    border-radius: 12px;
    position: relative;
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.main-img {
    height: 100%;
    opacity: .7;
}

.main-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #00000080;
    z-index: 1;
    border-radius: 12px;

}

.main-img .sub-img {
    width: 100%;
    height: 280px;
    border-radius: 12px;
}

.bottom-overlay {
    position: absolute;
    bottom: 0;
    background-color: white;
    width: 100%;
    padding: 8px 12px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.bottom-data {
    display: flex;
    align-items: center;
    gap: 10px;
}

.subgame-title {
    font-size: 15px;
    font-weight: 600;
}

.bottom-data img {
    width: 40px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.main-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    text-align: center;
    align-items: center;
    justify-items: center;
}

.play-btn {
    background-color: var(--btn_bg);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.play-btn:hover {
    transform: translateY(-2px);
    transition-duration: .2s;
    background-color: #0e7bff;
}

.how-to-play {
    width: 100%;
    margin-bottom: 36px;
}

.how-to-play .how-to-play-title {
    width: 100%;
}

.how-to-play .how-to-play-title,
.rec-game .rec-game-title,
.screenshots-title span,
.you-may-like .you-may-like-title {
    color: #222;
    font-size: 22px;
    font-weight: 600;
}

.how-to-play-info p {
    margin-top: 5px;
    background: #E1E9EF;
    border-radius: 14px;
    padding: 5px 10px;
}

.download-link {
    width: 100%;
    margin-top: 10px;
}

.download-link .get-the-game-down {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.download-link .get-the-game-down .down-link-item {
    background-color: #14c72d;
    border-radius: 35px;
    height: 47px;
    width: calc(50% - 20px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-link .get-the-game-down .down-link-item img {
    width: 20px;
    margin-right: 15px;
}

.download-link .get-the-game-down .down-link-item span {
    color: #fdfdfd;
    font-size: 18px;
    font-weight: 600;
}

.rating-histogram,
.rec-game,
.screenshots {
    margin-top: 36px;
    width: 100%;
}




.screenshots .screenshots-title {
    color: #4f4f4f;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 26px;
}

.main-screenshots {
    width: 100%;
    position: relative;
}

#main-screenshots-left {
    left: 10px;
    background: url(https://cdn.10bestoffers.in/images/games/landing1/right.png);
    box-shadow: 0 -4px 4px rgba(0, 0, 0, .25);
    background-size: contain;
    rotate: 180deg;
}

#main-screenshots-left,
#main-screenshots-right {
    z-index: 1;
    position: absolute;
    top: 50%;
    margin-top: -29px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.disabled {
    opacity: .6;
}

#main-screenshots-right {
    right: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    background: url(https://cdn.10bestoffers.in/images/games/landing1/right.png) 0 0 / contain;
}

#main-screenshots-content {
    display: flex;
    height: 320px;
    padding: 5px 0;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.main-screenshots-sub-container {
    display: flex;
    min-width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.main-screenshots-item {
    background-color: #eee;
    border-radius: 20px;
    min-width: 100px;
    margin-right: 14px;
    height: 100%;
    flex-shrink: 0;
}

.main-screenshots-img {
    height: 100%;
    border-radius: 15px;
}

.rating-histogram .rating-histogram-title {
    margin-bottom: 26px;
    color: #222;
    font-size: 22px;
    font-weight: 600;
    width: 100%;
}

.rating-histogram .rating-box-container {
    display: flex;
    padding-left: 0;
    width: 100%;
    height: 145px;
    gap: 16px;
}

.rating-histogram .rating-box-container .rating-info {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 30px;
    font-weight: 700;
    justify-content: center;
    width: 216px;
    border: 1px solid #E1E9EF;
    border-radius: 14px;
}

.rating-histogram .rating-box-container .rating-info span {
    margin-left: -10px;
    color: #585454;
    font-size: 80px;
    font-weight: 700;
}

.rating-histogram .rating-box-container .histogram-info {
    width: 605px;
    height: 100%;
}

.rating-histogram .rating-box-container .histogram-info .rating-detail {
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    list-style: none;
}

.rating-histogram .rating-box-container .histogram-info .rating-detail li {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}


.rating-histogram .rating-box-container .histogram-info .rating-detail li span {
    color: #5f6368;
    display: inline-block;
    font-size: 14px;
    text-align: center;
}

.rating-histogram .rating-box-container .histogram-info .rating-detail li p {
    background-color: #eee;
    border-radius: 10px;
    height: 15px;
    overflow: hidden;
    position: relative;
    width: 96%;
}

.rating-histogram .rating-box-container .histogram-info .rating-detail li p b {
    background-color: #48a8ff;
    border-radius: 10px;
    display: block;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: var(--width);
}


footer .line {
    width: 95%;
    max-width: 1150px;
    height: 1px;
    background-color: #eee;
    margin: 24px auto 10px;
}

.footer-content {
    position: relative;
    width: 85%;
    margin: 0 auto;
}

.label {
    position: absolute;
    top: 4px;
    left: -4px;
    width: 80px;
    z-index: 9999;
}

.label-new {
    position: absolute;
    top: 4px;
    left: -4px;
    width: 50px;
    z-index: 9999;
}





@media screen and (max-width: 700px) {
    .rec-game .rec-game-container .game-list .game-item {
        width: calc((100% - 36px) / 3);
        margin-bottom: 12px;
    }

    .detail-container {
        margin: 20px auto 0;
        padding: 0 16px;
    }

    .info-detail-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 10px;
        border-bottom: 1px solid #E1E9EF;
    }

    .info-detail-card .info-detail-img {
        width: 88px;
        border: 6px solid #E1E9EF;
    }

    .info-detail-card .info-info {
        justify-content: center;
        margin-left: 0;
        align-items: center;
    }

    .info-detail-card .info-info .info-name {
        display: flex;
        align-items: center;
        padding-top: 4px;
    }

    .info-detail-card .info-info .info-name h1 {
        width: 100%;
        font-size: 22px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        white-space: break-spaces;
        font-weight: 600;
    }

    .pc {
        display: none !important;
    }

    .info-detail-card .info-info .info-rating {
        margin-top: 5px;
    }

    .info-detail-card .info-info .rating-container {
        margin-bottom: 4px;
        height: 24px;
    }

    .rating-container .start {
        width: 16px;
        margin-right: 2px;
    }

    .info-info .rating-container .rating-score {
        font-size: 14px;
        margin-left: 12px;
    }

    .about-game {
        margin-top: 20px;
        margin-bottom: 2px;
    }

    .phone {
        display: grid !important;
    }





    .editor-review {
        margin: 24px 0;
    }


    .about-game .about-game-title,
    .editor-review .editor-review-title,
    .how-to-play .how-to-play-title,
    .rating-histogram .rating-histogram-title,
    .rec-game .rec-game-title,
    .screenshots-title {
        font-size: 20px;
    }

    .how-to-play {
        margin-bottom: 30px;
    }

    .download-link {
        margin-top: 12px;
    }

    .download-link .get-the-game-down .down-link-item {
        height: 40px;
        width: calc(50% - 5px);
    }

    .download-link .get-the-game-down .down-link-item img,
    .download-link .get-the-game-down .down-link-item img:first-child {
        width: 18px;
    }

    .download-link .get-the-game-down .down-link-item span {
        font-size: 14px;
        border-radius: 4px;
    }

    .rating-histogram,
    .rec-game,
    .screenshots {
        margin-top: 30px;
    }

    .rating-histogram .rating-histogram-title,
    .rec-game .rec-game-title,
    .screenshots .screenshots-title {
        margin-bottom: 20px;
    }

    #main-screenshots-left,
    #main-screenshots-right {
        width: 38px;
        height: 38px;
        margin-top: -19px;
    }

    #main-screenshots-content {
        height: 230px;
        padding: 0;
    }

    .main-screenshots-sub-container {
        max-width: 100%;
        min-width: 100%;
    }

    .main-screenshots-item {
        max-width: 100%;
        /* min-width: 30%; */
    }

    .main-screenshots-img {
        max-width: 100%;
        min-width: 50%;
    }

    .rating-histogram .rating-box-container {
        height: 102px;
    }

    .rating-histogram .rating-box-container .histogram-info {
        width: 420px;
    }

    .rating-histogram .rating-box-container .rating-info span {
        font-size: 48px;
        margin-bottom: 10px;
    }

    .rating-histogram .rating-box-container .histogram-info .rating-detail li span {
        margin-right: 8px;
    }

    .rating-histogram .rating-box-container .histogram-info .rating-detail li p {
        height: 12px;
    }
}

@media screen and (max-width: 1200px) {
    .detail-container .main-container {
        margin: 0 auto;
        width: 100%;
    }

    .download-link .get-the-game-down .down-link-item:hover,
    .rec-game .rec-game-container .game-list .game-item .item-img:hover {
        scale: 1.08;
        box-shadow: rgba(0, 0, 0, .4) 0 2px 4px 0;
    }

    /* .about-game .game-info-table li .info-key {
        font-weight: 500;
    } */
}


@media screen and (min-width: 768px) {
    .game-list-content .game-list .game-link:hover .game-item-title {
        opacity: 1;
    }

    .game-list-content .game-list .game-link:hover .game-shadow {
        border: 2px solid #fff;
        display: block;
    }
}