/* 全局样式 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.sticky-header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 30px;
}

.website-title {
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
}

.download-btn {
    background-color: #007BFF;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f0f8ff;
    padding: 50px 0;
    text-align: center;
}

.hero-content {
    width: 90%;
    max-width: 600px;
    margin-bottom: 20px;
}

.icon {
    height: 50px;
}

.hero h1 {
    font-size: 28px;
}

.hero h2 {
    font-size: 24px;
}

.hero-image {
    width: 90%;
    max-width: 600px;
}

.version-support {
    font-size: 14px;
    color: #777;
}

.game-features,
.popular-versions,
.user-reviews,
.faq {
    text-align: center;
    padding: 50px 0;
}

.feature-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card {
    width: 90%;
    max-width: 300px;
    margin: 10px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.feature-icon {
    height: 60px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-image {
    max-height: 80%;
    max-width: 80%;
}

.version-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.version-card {
    width: 90%;
    max-width: 300px;
    margin: 10px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.version-icon {
    height: 40px;
    margin-bottom: 10px;
}

.review-card {
    display: inline-block;
    width: 90%;
    max-width: 300px;
    margin: 10px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.avatar {
    height: 40px;
}

.faq-item {
    margin: 10px;
    text-align: left;
}

.faq-question {
    cursor: pointer;
    font-weight: bold;
    background-color: #007BFF;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.faq-answer {
    display: none;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: white;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer-logo {
    height: 50px;
}

.footer-links,
.copyright {
    font-size: 14px;
    color: #777;
}

/* 移动端样式 */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-menu a {
        margin: 10px;
    }
}    