
body {
    color: #fff;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.nav-link {
    color: #444 !important;
    font-size: 18px;
    margin: 0 15px;
    transition: color 0.3s;
    font-weight: bold;
}

.nav-link:hover {
    color: #3478bc !important;
}

.nav-link.active {
    color: #3478bc !important;
}


/* About Us 样式 */
.about-section {
    background-color: #fff;
    color: #000;
    padding: 120px 0 120px 0;
    display: flex;
    align-items: center;
    border-bottom: solid 1px #0000000f;
}

.about-image {
    width: 100%;
    max-width: 560px;
    /* padding: 40px 0px; */
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-image img {
    max-width: 98%;
    object-fit: cover;
    border-radius: 20px;
}

.about-content {
    padding-left: 60px;
    
}

.about-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-text {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.learn-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #333;
    color: #fff;
}

/* Stats 样式 */
.stats-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #000;
    background-image: url('./imgs/m6bg.webp');
}
.stats-section h3 {
    font-size: 50px;
    text-align: center;
}
.stats-section > div > p {
    text-align: center;
    margin: 40px 0;
    font-size: 18px;
}

.stats-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.stat-item {
    /* flex: 1;
    max-width: 400px; */
    width: 30%;
    max-width: 560px;
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
    color: #000;
    box-shadow: 0 4px 4px 0 #00000040;
}
.stat-item h4 {
    text-align: left;
}
.stat-item p {
    margin-top: 20px;
    text-align: left;
}

.stat-item:hover {
    transform: translateY(-10px);
}





/* Games 样式 */
.games-section {
    background-color: rgba(244, 249, 253, 0.8);
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 60px;
    color: #000;
}

.games-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.game-card {
    width: 45%;
    max-width: 600px;
    text-align: center;
}

.game-image {
    position: relative;
    margin-bottom: 30px;
}

.game-image img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.game-image:hover img {
    transform: translateY(-10px);
}

.game-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.game-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.explore-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #00a0e9;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: #0088cc;
    color: #fff;
    transform: translateY(-2px);
}

/* Banner 样式 */
.banner {
    position: relative;
    /* height: 680px; */
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: rgba(244, 249, 253, 0.8);
}

.mission-text {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.banner-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #444;
}

.banner-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    /* margin: 0 auto; */
}




.carousel-item {
    position: relative;
    /* min-height: 680px; */
}
#carouselExample {
    width: 100%;
}
#carouselExample > button {
    top: calc(50% - 24px);
    height: 48px;
    width: 48px;
    border-radius: 50%;
    padding: 16px;
    background-color: #ccc;
    /* background-color: rgba( #2B2B2B, 1); */
    /* backdrop-filter: blur(10px); */
}
#carouselExample > button:nth-of-type(1) {
    left: 40px;
}
#carouselExample > button:nth-of-type(2) {
    right: 40px;
}

.banner-content {
    height: 100%;
    width: 100%;
}
.banner-content section {
    max-width: 1296px;
    padding: 200px 10px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
.banner-content section img {
    width: 556px;
    height: 370px;
    object-fit:cover;
    border-radius: 20px;
}


.banner-down {
    background-color: #31353d;
    width: 100%;
}
.banner-down .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 50px 0;
}
.banner-down .container div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-align: center;
}
.banner-down .container div p {
    height: 42px;
}
.banner-down .container div img {
    width: 56px;
    height: 56px;
}




/* 模块1 */
.module1 {
    /*  */
    height: 360px;
    /* background-image: url('./imgs/b1.jpg'); */

    margin-top: 40px;
    color: #fff;
}
.module1-content {
    /* height: 360px; */
    border-radius: 60px;
    background-color: #3478bb;
    padding: 120px 20px 120px 100px;
    box-shadow: 0 1px 2px #0000000f, 0 1px 3px #0000001a; 
    
}
.module1 h2 {
    color: #fff;
    text-align: left;
}
.module1 p {
    color: #fff;
}



/* 模块2 */
.module2-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 100px 0 120px;
}
.module2-title {
    width: 100%;
    color: #444;
    margin-bottom: 60px;
    text-align: center;
}
.module2-content > div {
    width: 20%;
    text-align: center;
    /* border-right: solid 1px #ccc; */
    padding-right: 20px;
}
.module2-content > div p {
    margin-bottom: 0;
}

.module2 img {
    height: 60px;
}
.module2 p {
    color: rgb(128, 128, 128);
}



/* Footer 样式 */
.footer {
    background-color: #1a1a1a;
    padding: 80px 0 120px;
    color: #999;
    font-size: 14px;
}


.footer-content {
    display: flex;
    justify-content: space-between;
}
.footer-content > div {
    width: 40%;
}

.copyright {
    width: 50%;
    padding-top: 40px;
}

.copyright h4, .footer-links h4 {
    color: #fff;
}

.footer-links {
    padding-top: 40px;
}
.footer-links p {
    margin: 0;
    line-height: 28px;
}

.footer-link {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar-toggler {
    background-color: rgba(128, 128, 128, 0.2);
}


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

    .banner-content section {
        padding: 100px 10px;
        flex-wrap: wrap;
    }

    .banner-content section > div {
        width: 100%;
        text-align: center;
    }
    .banner-subtitle {
        height: 120px;
        margin: 0 auto;
    }

    .stats-container {
        flex-wrap: wrap;
    }
    .stat-item {
        width: 100%;
    }


    .about-section > div > div {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-content {
        flex-wrap: wrap;
    }
    .footer-content > div {
        width: 100%;
    }


    .module2-content > div {
        width: 40%;
    }

    .module1-content {
        padding: 100px 40px;
    }

    .games-container {
        flex-wrap: wrap;
    }

}


@media screen and (max-width: 800px) {
    h1 {
        font-size: 32px !important;
    }
    h2 {
        font-size: 28px !important;
    }
    h3 {
        font-size: 24px !important;
    }
    h4 {
        font-size: 20px !important;
    }
    p {
        font-size: 16px !important;
    }
    .banner-content section {
        padding: 50px 10px;
    }
    .stats-section {
        padding: 50px 10px;
    }
    .carousel-item {
        max-height: 650px;
    }
    .stat-item {
        padding: 20px 20px;
    }
    .about-section {
        padding: 50px 10px;
    }
    .games-section {
        padding: 50px 10px;
    }
    .games-container {
        gap: 10px;
    }
    .game-card {
        width: 100%;
    }

    .module1-content {
        padding: 50px 40px;
    }

    .module2-content {
        padding: 50px 10px;
    }

    .footer {
        padding: 20px 10px 50px 10px;
    }

    .banner-content img {
        width: 350px !important;
        max-height: 240px !important;
    }

    .about-content {
        padding-left: 10px;
    }
}

