/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}
body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}
.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
h1, h2, h3 {
    color: #8B4513;
    margin-bottom: 15px;
}

/* 头部导航 */
.header {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 50px;
}
.nav ul {
    display: flex;
    gap: 40px;
}
.nav a {
    color: #fff;
    font-size: 18px;
    padding: 8px 12px;
    transition: 0.3s;
}
.nav a.active, .nav a:hover {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Banner通用 */
.banner, .download-banner, .guide-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.banner img, .download-banner img, .guide-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-text, .download-title, .guide-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.banner-text h1 {
    font-size: 48px;
    color: #fff;
}
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #FFD700;
    color: #8B4513;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}
.btn:hover {
    background-color: #fff;
}

/* 主体内容 */
.main {
    padding: 60px 0;
}
.intro, .feature, .screenshot, .download-area, .config, .update, .guide-section {
    margin-bottom: 60px;
    text-align: center;
}
.intro p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto;
}

/* 特色模块 */
.feature-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.feature-item {
    width: 30%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.feature-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* 截图 */
.screenshot-box img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/* 下载按钮 */
.download-btn-group {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}
.download-btn {
    width: 200px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}
.android { background-color: #32C5FF; }
.ios { background-color: #fff; color: #333; border: 1px solid #ddd; }
.pc { background-color: #8B4513; }
.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 配置/攻略 */
.config-table, .job-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.config-item, .job-item {
    width: 30%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.update-content, .guide-content, .faq {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}
.faq p {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

/* 底部 */
.footer {
    background-color: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 30px 0;
}
.footer p {
    margin-bottom: 10px;
}

/* 响应式 */
@media (max-width: 1200px) {
    .container { width: 100%; }
}
@media (max-width: 768px) {
    .feature-list, .config-table, .job-list, .download-btn-group {
        flex-direction: column;
        align-items: center;
    }
    .feature-item, .config-item, .job-item { width: 90%; }
    .nav ul { gap: 20px; }
    .banner, .download-banner, .guide-banner { height: 300px; }
}