﻿body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('../image/bg.png') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

@media screen and (min-width: 800px) {
    .wrapper {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }
header {
    position: fixed;
    top: 0; /* 当前设置为0，表示紧贴页面顶部 */
    z-index: 50;
}


main {
    width: 100%;
}
.logo-icon {
    height: 63px !important;
    width: 80% !important;
    max-width: 300px;
}
}
.wrapper {
    width: 100%;
}
main {
    width: 100%;
    margin-top: 25px;
}
header {
    background: linear-gradient(to right, #f27223 0%, #e45700 100%);
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    z-index: 50;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.flag-icon, .chat-icon {
    height: 30px !important;
    width: 30px !important;
}

.logo-container {
    text-align: center;
    flex-grow: 1;
}

.logo-icon {
    height: 40px;
    width: 52%;
    max-width: 300px;
}


.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 5px auto;
    overflow: hidden;
    padding: 10px 20px;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    vertical-align: middle;
}

.dots-container {
    text-align: center;
    margin: 1px 0;
    margin-top: 0px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 2px;
    background-color: #f9a66c;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #ff0000;
}

.button-section {
    display: flex;
    justify-content: center;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80%;
}

.custom-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #f27223, #e45700);
    color: white;
    font-size: 18px;
    font-weight: normal;
    border: none;
    border-radius: 15px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background: linear-gradient(to bottom, #e45700, #f27223);
}

.button-icon {
    height: 35px;
    width: 25px;
    margin-right: 20px;
}

.demarcator-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    margin-top: 10px;
}

.demarcator-container {
    width: 100%;
}

.demarcator {
    width: 100%;
    max-width: 600px;
    height: auto;
}
.topcont{
   background-color: #f5f5f5;
   width: 100%;
   margin-top: -50px;
}
.pg-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
}

.pg-container {
    text-align: center;
}

.pg-icon {
    width: 80%;
    max-width: 600px;
    height: auto;
}
.game-gallery-section {
    margin: 30px 10px;
    padding: 20px 10px;
    background: #ffffff;
    border-radius: 15px;
    width: calc(95% - 20px);
    max-width: 1200px;
    overflow: hidden;
}

.game-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.row {
    display: flex;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.game-item {
    text-align: center;
    padding: 5px;
    background: #f9f9f9;
    border-radius: 10px;
    min-width: 100px;
    flex-shrink: 0;
}

.gamelogo img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.text {
    margin-top: 5px;
    text-align: center;
}

.tit {
    font-size: 12px;
    font-weight: bold;
    color: #333;
}

.sumtit {
    font-size: 17px;
    font-weight: bold;
}

.Fcolor-red {
    color: red;
}

.Fcolor-grey {
    color: grey;
}
.appdown-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
}

.appdown-container {
    text-align: center;
}

.appdown-image {
    width: 80%;
    max-width: 600px;
    height: auto;
}
.banner-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1px 10px;
    padding: 20px 10px;
    background: #ffffff;
    border-radius: 15px;
    width: calc(95% - 20px);
    max-width: 1200px;
    overflow: hidden;
}

.banner-container {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

.banner-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.button-containers {
    display: flex;
    justify-content: space-between; /* 使按钮分别靠左和靠右 */
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: -20px;  /* 上移 20px */
    margin-bottom: 10px;
    gap: 10px; /* 按钮之间的间距 */
    padding: 0 15px; /* 让容器有左右内边距，防止按钮太靠近边缘 */
}


.platform-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 45%; /* 设置宽度为容器的 45% */
    padding: 15px 20px;
    font-size: 18px;
    font-weight: normal;
    color: white;
    background: linear-gradient(to bottom, #f27223, #e45700);
    border: none;
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.platform-button:hover {
    background: linear-gradient(to bottom, #e45700, #f27223);
}

.platform-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
    display: inline-block;
}

.platform-button span {
    text-align: center;
    width: 100%;
}
.platform-images {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
}

.footer-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
}

.footer-container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

.footer-image {
    width: 100%;
    height: auto;
    display: block;
}
.footer-copyright {
    background-color: #212129;
    color: #52586a;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    padding: 10px 0;
    margin: 0;
    width: 100%;
}
.menu > li .jsBox {
    position: absolute;
    display: none;
    width: 95%;
    max-width: 400px;
    box-sizing: border-box;
    background: #fff;
    padding: 1rem;
    z-index: 999;
    transform: translateX(-50%);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border: 4px double #ff9800;
    border-radius: 8px;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
}
.menu > li.on ~ .overlay {
    display: block;
}
.menu > li.on .jsBox {
    display: block;
}

.menu > li .jsBox .arrow {
    position: absolute;
    left: 50% !important;
    transform: translateX(-50%) rotate(180deg);
    width: 24px;
    height: 24px;
    z-index: 100;
    display: block;
}

.menu > li .jsBox ul {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}
.menu > li .jsBox p {
    font-size: 0.8rem;
}
.menu > li .jsBox li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 0.5rem 0;*/
    border-bottom: 1px solid #f0f0f0;
}

.menu > li .jsBox li:last-child {
    border-bottom: none;
}

.menu > li .jsBox li span.ms {
    font-size: 0.8rem;
    color: #666;
}

.menu > li .jsBox li span.url {
    font-size: 0.8rem;
    font-weight: bold;
    color: #333;
}

.menu > li .jsBox li a {
    font-size: 0.8rem;
    color: #fff;
    background: #ff9800;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
}

.menu > li .jsBox .txtapp {
    display: block;
    margin: 1rem 0;
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
    background: #f27223;
    padding: 0.5rem 1rem;
    border-radius: px;
    text-align: center;
    text-decoration: none;
}
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu > li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menuBtn-gradient-6 {
    background-image: linear-gradient(130deg, #29f19c, #02a1f9) !important;
}
