@font-face {
    /* 给自定义字体取个名字，后面可以用这个名字引用字体 */
    font-family: 'Tomorrow';
    /* 字体文件的路径，这里假设字体文件在当前目录下 */
    src: url('../font/Tomorrow-Bold.ttf');
    /* 可选的字体样式，如 normal 或 italic */
    font-style: normal;
    /* 可选的字体粗细，如 normal 或 bold */
    font-weight: normal;
}

@font-face {
    /* 给自定义字体取个名字，后面可以用这个名字引用字体 */
    font-family: 'Roboto';
    /* 字体文件的路径，这里假设字体文件在当前目录下 */
    src: url('../font/Roboto-Bold.ttf');
    /* 可选的字体样式，如 normal 或 italic */
    font-style: normal;
    /* 可选的字体粗细，如 normal 或 bold */
    font-weight: normal;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1d1d1d;
    color: white;
}

.service {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 99;
    cursor: pointer;
    text-align: end;
    height: 100px;
}

.back-top img {
    background: linear-gradient(180deg, #D65206 0%, #D81E06 100%);
    border-radius: 10px;
    width: 56px;
    height: 56px;

}

.back-top {
    display: none;
    background-color: transparent;
}

.service .show {
    display: block;
}

.contant_1 {
    width: 1880px;
    height: 520px;
    margin: 0 auto;
    /*background-image: url("../img/Rectangle_bg.png");*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    box-sizing: border-box;
}

/* 移动端样式 */
@media (max-width: 767px) {
    .contant_1 {
        width: 100%;
        /* 使用padding-top实现固定宽高比 */
        height: 0;
        min-height: 200px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        margin: 10px 0 0 0;
        padding: 0;
    }
}

.text_game {
    font-size: 74px;
    padding-top: 103px;
    font-family: 'Tomorrow';
    font-weight: 700;
}

.swiper-slide {
    /* background-color: #C85615; */
    height: 740px;
}

.swiper {
    /* --swiper-theme-color: rgba(255, 255, 255, 0.7); */
    --swiper-pagination-color: #EA6519;
    /* 两种都可以 */
}


.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
}

.swiper-pagination {
    bottom: 30px !important; /* 垂直位置 */
}

.flex_box {
    display: flex;
    align-items: center;

}

.fast {
    margin-top: 50px;
    font-size: 22px;
}

.fast-item img {
    width: 22px;
    height: 22px;
    margin-right: 15px;
}

.fast-item:nth-child(2) {
    margin: 20px 0;
}

.exile-img {
    position: absolute;
    right: 385px;
    top: 100px;
}

.box-img {
    position: absolute;
    right: 160px;
    top: 260px;
    cursor: pointer;
}

.join-now {
    position: absolute;
    left: 260px;
    bottom: 120px;
    width: 165px;
    height: 56px;
    cursor: pointer;
    justify-content: center;
    background-image: url("../img/new.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contantmenu {
    width: calc(100vw - 520px);
    margin: 0 auto;
    height: 500px;
    text-align: center;
    justify-content: center;
    position: relative;
}

.games {
    width: 560px;
    height: 520px;
    background-image: url("../img/games.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.hot-game {
    margin-top: 80px;
    justify-content: center;
    font-size: 26px;
    color: #EA6519;
    font-family: 'Tomorrow';
}

.hot-game img {
    width: 26px;
    height: 26px;
    margin-right: 10px;
}

.games-times {
    font-size: 42px;
    position: absolute;
    top: 20px;
    /* left: -50%; */
    width: 790px;
    padding-top: 86px;
}

.pick-game {
    /* padding: 0 260px; */
    /* width: calc(100vw - 520px); */
    width: 1400px;
    margin: 0 auto;
    margin-top: -150px;
    z-index: 9;
    position: relative;
    padding-bottom: 100px;
}

.pick-game-top {
    font-family: 'Tomorrow';
    font-size: 28px;
    margin-bottom: 30px;
}

.pick-game-item {
    cursor: pointer;
    width: 136px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/Rectangle-defout.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-right: 20px;
}

.agme-all {
    position: absolute;
    right: 0px;
    margin-right: 0;
    background-image: url("../img/Rectangle-all.png");
}

.pick-game-item-active {
    background-image: url("../img/new.png");
}

.pick-game-item:hover {
    background-image: url("../img/new.png");
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.card-item {
    cursor: pointer;
    flex: 0 0 calc(25% - 20px);
    background: #2D2D2D;
    border-radius: 10px;
    /* padding: 15px; */
    text-align: center;
    height: 220px;
    position: relative;
    /* margin: 0 10px;  */
    border: 2px solid transparent;
    box-sizing: border-box;
    transition: all 0.3s;
    overflow: hidden;
}

.card-item .bg-game {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.card-item:hover {
    border-color: #EA6519;
}

.card-item:hover .platform-tags {
    display: flex;
}

.platform-tags {
    position: absolute;
    top: 10px;
    display: none;
    gap: 8px;
    /* width: ; */
    padding: 0 15px;
    z-index: 2;
}

.platform-tag {
    background: rgba(255, 255, 255, 0.3);

    color: white;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 5px;
    width: 35px;
    height: 35px;
    box-sizing: border-box;
    /* border-radius: 12px; */
    font-size: 12px;

}

.to-buy {
    display: none;
    cursor: pointer;
    position: absolute;
    width: 35px;
    height: 35px;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.game-name {
    position: absolute;
    bottom: 30px;
    left: 23px;
    z-index: 2;
    font-size: 22px;
}

.game-name2 {
    font-size: 22px;
}


.game-tags {
    position: absolute;
    bottom: 20px;
    display: none;
    gap: 10px;
    padding: 0 20px;
    z-index: 2;
}

.game-tags .game-tag {
    cursor: pointer;
    background-color: #EA6519;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    -webkit-clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    padding: 7px 10px;
    display: block;
    border-radius: 4px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.bottom-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.container-item {
    flex: 0 0 calc(12.5% - 20px);
    background: #2D2D2D;
    border-radius: 10px;
    position: relative;
    border: 2px solid transparent;
    box-sizing: border-box;
    cursor: pointer;
}

.container-item:hover {
    border: 2px solid #EA6519;
}

.container-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.container-item .recommend-name {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    font-size: 14px;
}

.container-item .recommend-all {
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    bottom: 50%;
    transform: translateY(50%);

}

.abstract {
    padding-top: 100px;
    width: 1400px;
    margin: 0 auto;
    background: linear-gradient(180deg, #232528 0%, #1F1C1C 137.31%);

    align-items: flex-start;
}

.about-left {
    width: 36%;
    padding-right: 10px;
}

.about-content {
    width: 33%;
    padding-right: 10px;
    height: 700px;
}

.about-content img, .about-right .call-board {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-right {
    width: 31%;
    /* padding-right: 10px; */
    height: 585px;
    position: relative;
}

.about-img img {

    margin-right: 10px;
}

.about-img {
    display: flex;
    align-items: center;
    font-size: 26px;
    color: #EA6519;
    font-family: 'Tomorrow';
}

.about-us {
    font-family: 'Tomorrow';
    font-size: 28px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.about-text {
    font-size: 14px;
    line-height: 22px;
}

.go-about {
    font-family: 'Tomorrow';
    font-size: 16px;
    background-image: url("../img/new.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 160px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    border-radius: 4px;
    cursor: pointer;
}

.coupon-center {
    position: absolute;
    top: 22px;
    font-size: 26px;
    font-family: 'Tomorrow';
    left: 50%;
    transform: translateX(-50%);

}

.coupon-contant {
    position: absolute;
    top: 90px;
    height: 450px;
    text-align: center;
    /* padding: 0 30px; */
    box-sizing: border-box;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.coupon-swiper {

}

.coupon-contant.swiper-pagination {
    bottom: 30px !important; /* 垂直位置 */
}

.swiper-pagination-bullet-active {
    background: #EA6519 !important;
}

.coupon-item {
    /* background: linear-gradient(270deg, #F0C75A 0%, #C49C3C 100%); */

    background: #ffefd4;
    /* border: ; */
    border: 4px solid #C49C3C;
    border-radius: 10px;
    height: 92px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* overflow: hidden; */
    position: relative;

}

.coupon-item-left {
    width: 42%;
    padding-left: 20px;
}

.coupon-item-right {
    position: absolute;
    width: 50%;
    background-image: url("../img/coupon-right.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    padding-right: 15px;
    height: 110px;
    right: -5px;
    top: -9px;
    border-radius: 30px;
    box-sizing: border-box;
    line-height: 110px;
    text-align: end;
}

.introduce {
    font-size: 16px;
    color: #673B12;
    text-align: left;
    line-height: 20px;
}

.get-now {
    background: linear-gradient(98.7deg, #B17F3A 0%, #CDB166 51.14%, #B17F3A 102.28%);
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    -webkit-clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    width: 95px;
    font-size: 14px;
    padding: 5px 0;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;

}

.coupon-num {
    font-size: 60px;
    font-family: 'Roboto';
}

.coupon-off {
    font-size: 28px;
    font-family: 'Roboto';
}

.choose-us {
    width: 1880px;
    margin: 0 auto;
    padding-top: 100px;
    background-color: #1d1d1d;
}

.chooss-img {
    /* text-align: center; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Tomorrow';
    color: #EA6519;
    font-size: 26px;
    gap: 10px;

}

.choose-game {
    padding-top: 10px;


}

.choose-game div {
    text-align: center;
    font-size: 28px;

}

.choose-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
    padding-bottom: 160px;
}

.choose-item {
    flex: 0 0 calc(20% - 25px);
    height: 380px;

    text-align: center;
    background: #1d1d1d;
    border-radius: 10px;
    border: 1px solid transparent;
    /* border-image: linear-gradient(
        to bottom right,
        #1d1d1d 35%,
        #EA6519 50%,
        #1d1d1d 70%,
        #1d1d1d 100%
    ) 1; */
    padding: 0 40px;
    box-sizing: border-box;
    position: relative;
}

.choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(
            to bottom right,
            #1d1d1d 33%,
            #EA6519 50%,
            #1d1d1d 66%,
            #1d1d1d 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.choose-item:hover {
    border: 1px solid #EA6519;
    backdrop-filter: blur(40px);

    box-shadow: 0px 20px 50px 0px #DE510033;

}

.item-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    margin-top: 10px;
}

.choose-text {
    font-size: 22px;
    line-height: 50px;
}

.choose-introduce {
    font-size: 14px;
    line-height: 20px;
}

.game-reviews {
    width: 1880px;
    /*height: 800px;*/
    margin: 0 auto;
    background: linear-gradient(180deg, #232528 0%, #1F1C1C 139.48%);
    padding-top: 75px;
    position: relative;
}

.volcano {
    position: absolute;
    right: -20px;
    top: -186px;
}

.swiper-reviews {
    /* background-color: #B17F3A; */
    padding-bottom: 100px;
    overflow: hidden;
}

.game-reviews .swiper-slide {
    /* text-align: center; */
    margin-top: 150px;
    /* transition: all 1.5s; */
}

.reviews-item {
    /* background-color: #221e1e; */
    height: 320px;
    position: relative;
    background-image: url("../img/reviews-de.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all 0.5s;
}

/* .reviews-item::before{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent #232528 transparent transparent;
} */
.reviews-item-img {
    position: absolute;
    top: -50px;
    left: 30px;
    width: 100px;
    height: 100px;

}

.reviews-item-contant {
    position: absolute;
    bottom: 20px;
    /* left: 20px; */
    padding: 0 30px;
}

.game-reviews .swiper-slide-active .reviews-item {
    height: 410px;
    margin-top: -90px;
    background-image: url("../img/reviews-active.png");
    box-shadow: 0px 30px 80px 0px #DE510033;

}

.game-reviews .swiper-slide-active .reviews-item-img {
    /* position: static; */
    top: 20px;
}

.reviews-item-contant .review-name {
    font-size: 24px;
    font-weight: 600;
    text-align: left;
    line-height: 30px;
}

.review-title {
    text-align: left;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.review-score {
    justify-content: space-between;
}

.score-time {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;

}

.game-announcement {
    width: 1400px;
    margin: 0 auto;
    height: 700px;
    background-color: #1D1D1D;
    /* background-color: #fff; */
    position: relative;
    padding-top: 110px;
}

.white-light {
    position: absolute;
    left: -232px;
    top: -100px;
    z-index: 1;
}

.spirit {
    position: absolute;
    left: 0px;
    top: 110px;
    z-index: 3;
}

.learn-more {
    background-image: url("../img/Rectangle-all.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 160px;
    height: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 300px;
    line-height: 50px;
    text-align: center;
    color: #EA6519;
    cursor: pointer;
    font-family: 'Tomorrow';
}

.announcement-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* margin-top: 100px; */
    /* margin-top: 150px; */
    z-index: 2;
    position: absolute;
    width: 100%;
    top: 400px;

}

.ann-item {
    border-top: 2px solid #EA6519;
    flex: 0 0 calc(25% - 15px);
    height: 300px;
    background-image: url('../img/ann-de.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 30px;
    box-sizing: border-box;
}

.ann-item:hover {
    background-image: url('../img/annactive.png');
    box-shadow: 0px 30px 80px 0px #DE510033;

}

.ann-item:hover .ann-item-more {
    color: #fff;
}

.ann-item-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
}

.ann-item-text {
    height: 95px;
    font-size: 14px;
    line-height: 24px;
    margin-top: 22px;
    margin-bottom: 30px;
    display: -webkit-box; /* 必须设置，用于多行溢出 */
    -webkit-box-orient: vertical; /* 设置盒子排列方向为垂直 */
    -webkit-line-clamp: 4; /* 限制显示的行数，例如显示 3 行 */
    overflow: hidden; /* 隐藏超出的内容 */

}

.ann-item-more {
    color: #BBBBBB;

    /* offset: 4px; */
    font-size: 14px;
    text-underline-offset: 13px;
}

.our-blog {
    width: 1400px;
    margin: 0 auto;
    padding-top: 100px;
    height: 960px;
    position: relative;
    align-items: flex-start;
    justify-content: space-between;
    /* background-color: #1D1D1D; */
}

.grassplot {
    position: absolute;
    left: -240px;
    bottom: 0;

}

.blog {
    font-family: 'Tomorrow';
    font-size: 42px;
}

.blog-items {

    width: calc(100% - 540px);
}

.trustpliot {
    overflow: hidden;
    width: 482px;
    background-image: url("../img/trustpliot.png");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 750px;
    /* padding: 30px 0px; */
    box-sizing: border-box;
    text-align: center;
    /* border: 1px solid  #00B67A; */
    /* border-radius: 20px; */
}

.blog-title {
    justify-content: space-between;
    margin-bottom: 20px;
}

.blog-time {

    font-size: 14px;

}

.blog-date {
    color: #EA6519;
    font-size: 30px;
    margin-bottom: 10px;
}

.blog-item-img {
    width: 200px;
    height: 130px;
    margin: 0 20px;
    border-radius: 10px;
}

.blog-learn-more {
    background-image: url("../img/Rectangle-all.png");
    width: 165px;
    height: 53px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #EA6519;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.blog-item-title {
    font-size: 18px;
}

.blog-item-text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
    display: -webkit-box; /* 必须设置，用于多行溢出 */
    -webkit-box-orient: vertical; /* 设置盒子排列方向为垂直 */
    -webkit-line-clamp: 3; /* 限制显示的行数，例如显示 3 行 */
    overflow: hidden;
    margin-right: 20px; /* 隐藏超出的内容 */
}

.blog-item {
    /* border-bottom: 1px solid #EA6519; */
    border-bottom: 1px solid #FFFFFF33;
    padding: 30px 0;
    position: relative;
}

.blog-item:hover::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #EA6519;
    bottom: 0;
    box-shadow: 0px -2px 10px 0px rgba(234, 101, 25, 1);
}

.blog-introduce {
    flex: 1;
}

.go-detail {
    width: 36px;
    height: 36px;
    margin-left: 20px;
    background-image: url("../img/right-go.png");
}

.blog-item:hover .go-detail {
    background-image: url("../img/active-right.png");
}

.swiper-blog {
    height: calc(100% - 50px);
}

.swiper-blog .swiper-slide {
    padding: 30px 40px 0px;
    box-sizing: border-box;
}

.swiper-blog-item {
    text-align: left;
}

.blog-right-top {
    text-align: left;
    margin-bottom: 10px;
}

.blog-score {
    gap: 5px;
    margin-bottom: 15px;
}

.blog-score-num {
    margin-bottom: 20px;
    font-size: 12px;
}

.blog-score-people {
    font-size: 14px;
    margin-bottom: 15px;

}

.number-players {
    color: #00B67A;
}

/* Item容器样式 */
.item-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

    padding: 20px 0;

}

.item-container:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* 顶部区域布局 */
.item-top {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 10px;
    /* border-bottom: 1px solid #444; */
}

.item-left-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.item-right-img {
    width: 17px;
    height: 17px;
    object-fit: contain;
    border-radius: 50%;
}

.item-center-text {
    flex: 1;
    /* color: #EA6519; */
    font-size: 14px;
}

.item-center-title {
    font-size: 16px;
}

/* 底部日期右对齐 */
.item-bottom {
    text-align: right;
    padding-top: 10px;
}

.item-middle {
    font-size: 14px;
}

.item-date {
    /* color: ; */
    font-size: 14px;
}

/* 弹出层容器 */
.nav-popup {
    position: absolute;
    top: 100%;
    width: 1400px;
    height: 570px;
    background: #232528;
    display: none;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* 显示状态 */
.nav-popup.active {
    display: block;
}

/* 内容区域 */
.popup-content {
    padding: 30px;
    height: 100%;
    overflow-y: auto;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
}

.popup-left {
    width: 18.5%;
    /* background-color: #00B67A; */
}

.nav-sidebar-title {
    font-family: 'Tomorrow';
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #FFFFFF33;

}

.nav-side-item {
    border-bottom: 1px solid #FFFFFF33;
    display: flex;
    align-items: center;
    padding: 20px 0;
    font-size: 14px;
    cursor: pointer;

}

.nav-side-item .side-item-icon {
    width: 26px;
    height: 26px;
    margin-right: 10px;
}

.side-active {
    color: #EA6519;
}

.nav-sidebar-all {
    width: 135px;
    height: 44px;
    background-image: url("../img/Rectangle-all.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    line-height: 44px;
    cursor: pointer;
    text-align: center;
    margin-top: 30px;
}

.popup-right {
    width: 76.5%;
    height: 100%;
    /* background-color: #00B67A; */
}

.alphabet-filter {
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
    padding: 20px;
    background: #1D1D1D;
    flex-wrap: wrap;
}

.letter {
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid #444;
    color: #EAEAEA;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 5px;
}

.letter:hover,
.letter.active {
    background: #EA6519;
    border-color: #EA6519;
}

.game-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    color: #FFFFFFCC;
    /* padding: 25px; */
}

.popup-right-card {

}

.new-game {
    background-color: #D65206;
    padding: 2px 4px;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 10px;

}

.game-card {
    background: #2A2A2A;
    border-radius: 6px;
    padding: 15px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border: 1px solid transparent;
}

.game-card:hover {
    border: 1px solid #EA6519;
    color: #EA6519;

}

.game-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.nav-game-name {
    font-size: 14px;
    margin-right: 10px;

}

.cart-box {
    font-size: 14px;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(40, 41, 41, 0.85);
    display: none;
    z-index: 999;
}

.cart-sidebar {
    position: fixed;
    right: -650px;
    /* right: 0; */
    top: 0;
    width: 450px;
    background: #343639;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding: 20px;

}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #FFFFFF33;
}

.cart-header h3 {
    font-family: 'Tomorrow';
    font-size: 24px;
    font-weight: 700;

}

.close-cart {
    background: none;
    border: none;
    color: #EA6519;
    font-size: 28px;
    cursor: pointer;
    padding: 0 10px;
}


.checkout-btn {
    text-decoration: none;
    margin-top: 10px;
    width: 100%;
    padding: 12px;
    text-align: center;
    display: block;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    background: linear-gradient(267.71deg, #FF8742 0%, #F25800 100%);

}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 0;
    border-bottom: 1px solid #FFFFFF33;
}

.item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100px;
}

.cart-item-title {
    font-size: 16px;
}

.cart-server {
    font-size: 14px;
    color: #FFFFFFB2;

}

.quantity-controls {
    display: flex;

    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    background: #EA6519;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}

.quantity-input {
    width: 80px;
    padding: 5px;
    background: #282828;
    border: 1px solid #3A3A3A;
    border-radius: 4px;
    color: white;
    text-align: center;
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    justify-content: space-between;
    height: 100px;
}

.price-section .item-price {
    font-size: 18px;
    font-weight: 600;
}

.item-old-price {
    font-size: 14px;
    color: #FFFFFFB2;

    text-decoration: line-through;
}

.delete-btn {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.delete-icon {
    width: 20px;
    height: 20px;
}

.cart-footer {
    margin-top: 30px;

}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.total-price {
    font-size: 24px;
    font-weight: 600;
    color: #EA6519;
}

.prompt-message {
    color: #FFFFFFB2;
}

.checkout-btn::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #343639 transparent transparent;
}

.checkout-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent transparent #343639 transparent;
}

.top-box {
    display: none;
    width: 100vw;
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    /* background-color: #232528; */
}

.phone-discover {
    display: none;
}

.announcement-items-phone {
    display: none;
}

.our-blog-phone {
    display: none;
}

.phone-footer {
    display: none !important;
}

.server .phone-online {
    display: none;
}

.phpne-top {
    display: none !important;
}

.phone-online {
    display: none;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .phpne-top {
        display: block !important;
    }

    .pc-top {
        display: none !important;
    }

    .top-box {
        display: block;
        height: 140px;
        position: fixed;
        top: 0;
        width: 100vw;
        left: 0;
        z-index: 99;
    }

    .service {
        /* display: none; */
        right: 20px;
        bottom: 30px;
    }

    .service .pc-online {
        display: none;
    }

    .service .phone-online {
        display: block !important;
    }

    .top-box {
        display: block;
        height: 140px;
        position: fixed;
        top: 0;
        width: 100vw;
        left: 0;
    }

    .contant_1 {
        width: 100%;
        /* 使用padding-top实现固定宽高比 */
        height: 0;
        min-height: 200px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        margin: 10px 0 0 0;
        padding: 0;
    }

    .text_game {
        font-size: 30px;
        padding-top: 15px;
    }

    .fast {
        font-size: 14px;
        margin-top: 20px;
    }

    .fast-item:nth-child(2) {
        margin: 10px 0;
    }

    .fast-item img {
        width: 13px;
        height: 13px;
    }

    .exile-img {
        position: absolute;
        left: 20px;
        top: 220px;
        width: 58px;
    }

    .box-img {
        width: 260px;
        right: 10px;
        top: 200px;
    }

    .join-now {
        left: 25px;
        top: 330px;
        width: 150px;
        height: 45px;
    }

    .swiper-pagination {
        bottom: 10px !important;
    }

    .service {
        /* display: none; */
        right: 20px;
        bottom: 30px;
    }

    .service .pc-online {
        display: none;
    }

    .server .phone-online {
        display: block;
    }

    .back-top img {
        width: 35px;
        height: 35px;
    }

    .contantmenu {
        width: 100vw;
        height: 350px;
    }

    .games {
        height: 370px;
    }

    .hot-game {
        margin-top: 25px;
        font-size: 16px;
    }

    .games-times {
        font-size: 20px;
        top: 45px;
        width: 300px;
    }

    .pick-game {
        margin-top: -100px;
        padding: 0 15px;
        width: 100vw;
        box-sizing: border-box;
    }

    .card-container {
        gap: 10px;
        margin-top: 20px;
    }

    .card-item {

        flex: 0 0 calc(50% - 5px);
        box-sizing: border-box;
        height: 110px;
    }

    .pick-box {
        /* flex-wrap: wrap; */
        width: 100%;
        overflow: auto;
    }

    .pick-game-item {
        margin-right: 10px;
        min-width: 136px;

    }

    .agme-all {
        position: relative;
    }

    .game-name {
        bottom: 10px;
        left: 10px;
        font-size: 15px;
    }

    .platform-tags {
        padding: 0 10px;
        flex-wrap: wrap;
    }

    .platform-tag {
        width: 26px;
        height: 26px;
    }

    .bottom-container {
        display: none;
    }

    .phone-discover {
        display: flex;
        /* text-align: center; */
        margin: 40px auto 1px;
        background-image: url("../img/new.png");
    }

    .abstract {
        width: 100vw;
        position: relative;
        display: block;
        padding: 15px;
        box-sizing: border-box;
    }

    .about-left {
        width: 100%;
        padding-right: 0;
        padding-top: 50px;
    }

    .about-us {
        font-size: 20px;
    }

    .about-img {
        font-size: 16px;
    }

    .about-img img {
        width: 19px;
        height: 17px;
    }

    .go-about {
        width: 136px;
        height: 44px;
        font-size: 14px;
    }

    .about-content {
        position: absolute;
        right: 0;
        top: -70px;
        width: 160px;
        height: 230px;

    }

    .about-right {
        width: 100%;
        padding-left: 0;
        margin-bottom: 45px;
        margin-top: 30px;
        height: 510px;
    }

    .coupon-center {
        font-size: 20px;
    }

    .introduce {
        font-size: 14px;
    }

    .coupon-num {
        font-size: 55px;
    }

    .coupon-item {
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .coupon-item-right {
        width: 52%;
        height: 100px;
        right: -1px;
        top: -8px;
        border-radius: 10px;
        line-height: 101px;
    }

    .coupon-off {
        font-size: 22px;
    }

    .choose-us {
        width: 100vw;
        padding: 0 15px;
        box-sizing: border-box;
        text-align: left;
    }

    .chooss-img {
        justify-content: start;
        font-size: 16px;
        padding-top: 70px;
        padding: 0 15px;
    }

    .chooss-img img {
        width: 19px;
        height: 17px;

    }

    .choose-game div {
        text-align: left;
        font-size: 20px;
        padding: 0 15px;
    }

    .choose-items {
        gap: 15px;
    }

    .choose-item {
        flex: 0 0 calc(100%);
        box-sizing: border-box;
        height: 340px;
    }

    .choose-text {
        font-size: 18px;
        font-weight: 600;
    }

    .game-reviews {
        width: 100vw;
        /* padding: 0 15px; */
        height: auto;
        /* box-sizing: border-box; */
    }

    .volcano {
        width: 170px;
        height: 150px;
        top: -65px;
        right: 0;
    }

    .reviews-item {
        height: 370px;
        /* width: 260px; */
        margin-top: -60px;
        background-image: url("../img/reviews-active-phone.png");
        box-shadow: none;
        /* margin: 0 10PX; */
    }

    .game-reviews .swiper-slide-active .reviews-item {
        margin-top: -60px;
        height: 370px;
        background-image: url("../img/reviews-active-phone.png");
        box-shadow: none;

    }

    .game-reviews .swiper-slide {
        margin-top: 90px;
    }

    .reviews-item-img {
        top: 20px;
        width: 80px;
        height: 80px;
    }

    .reviews-item-contant {
        padding: 0 15px;
    }

    .review-name {
        font-size: 20px;
    }

    .review-title {
        font-size: 15px;
    }

    .game-announcement {
        width: 100vw;
        padding: 0 15px;
        box-sizing: border-box;
        background-image: url("../img/announcement-phone.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding-top: 100px;
        /* height: 400px; */
    }

    .spirit {
        width: 200px;
        left: 40px;
        top: 230px;
    }

    .white-light {
        position: absolute;
        left: -120px;
        top: 75px;
        z-index: 1;
        width: 120%;
        height: auto;
    }

    .announcement-items-phone {
        display: block;
        width: calc(100% - 30px);

        z-index: 2;
        position: absolute;

        top: 400px;
        text-align: center;
        margin-bottom: 50px;
        text-align: left;
        overflow: hidden;
    }

    .announcement-swiper-pagination {
        margin-top: 20px;
        text-align: center;
    }

    .ann-item {
        flex: 0 0 calc(100%);
    }

    .announcement-items {
        display: none;
    }

    .learn-more {
        bottom: -130px;
        top: auto;
        width: 136px;
        height: 44px;
        line-height: 44px;

        background-image: url("../img/active-bg112.png");
        color: #fff;
    }

    .about-content img, .about-right .call-board {
        width: 100%;
        /* height: calc(560px / ); */
        height: auto;
        object-fit: cover;
    }

    .our-blog {
        display: none;
    }

    .our-blog-phone {
        width: 100vw;
        padding: 0 15px;
        box-sizing: border-box;
        margin-top: 200px;
        display: block;
        position: relative;
        margin-bottom: 140px;
    }

    .trustpliot {
        width: 100%;
        height: auto;
        border: 1px solid #00B67A;
        background-image: none;
        padding-bottom: 20px;
        border-radius: 10px;
        background: linear-gradient(to bottom, #093627 0%, #221E1E 30%);
    }

    .item-container {
        border-bottom: none;
        margin-bottom: 10px;
    }

    .phone-blog-img {
        width: 100%;
    }

    .blog-item-title {
        font-size: 16px;
        font-weight: 600;
        margin-top: 10px;
    }

    .blog-item-text {
        font-size: 13px;
    }

    .phone-blog-time {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
    }

    .blog-time {
        display: flex;
        align-items: end;
        gap: 10px;
        font-size: 14px;
    }

    .blog-date {
        margin-bottom: -5px;
    }

    .phone-blog-top {
        margin-bottom: 40px;
    }

    .blog {
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
    }

    .blog-learn-more {
        background-image: url("../img/active-bg112.png");
        color: #fff;
        margin: 20px auto 30px;
        width: 136px;
        height: 44px;
        font-size: 14px;
        font-weight: 600;
    }

    .grassplot {
        width: 100vw;
        left: 0px;
        bottom: -130px;
    }

    .pc-footer {
        display: none !important;
    }

    .phone-footer {
        display: block !important;
    }
}

@media screen and (min-width: 767px) {
    .card-item:hover .to-buy {
        display: block;
    }

    .card-item:hover .game-tags {
        display: flex;
        flex-wrap: wrap;
        animation: fadeIn 0.3s ease;
    }

    .card-item:hover::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    .card-item:hover .game-tags {
        display: flex;
    }

    .card-item:hover .game-name-2 {
        margin-top: -40px;
        position: static;
        bottom: unset;
        font-size: 22px;
        width: 200px;
        text-align: left;
    }

    .card-item:hover .game-name {
        display: none;
    }
}


@media (max-width: 500px) {
    .card-item .game-tags {
        display: block;
        padding: 0 6px;
        margin: 1PX;
        text-align: left;
        bottom: 10px;
    }

    .card-item .game-name {
        display: none;
    }

    .card-item .game-name-2 {
        line-height: 1.345;
        font-size: 14px;
    }

    .game-tags .game-tag {
        padding: 3px 7px;
        /*display: inline-block;*/
        display: none;
        border-radius: 1px;
        font-size: 10px;
        margin: 1px 2px;
    }

    .card-item .bg-game {
        filter: brightness(0.9);
    }

    .game-tags .game-tag::after {
        content: '';
        display: block;
        margin-right: 1px;
    }

    .card-item .to-buy {
        width: 26px;
        height: 26px;
    }

}


/*Cart Popup */





