/* 基础样式 */
:root {
    --primary-color: #8b4513; /* 枫叶棕色 */
    --secondary-color: #ff8c00; /* 枫叶橙色 */
    --dark-color: #1a1a1a;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    background: #f5f5dc url('https://642740.freep.cn/642740/maple-bg.jpg') no-repeat center/cover;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

/* 顶部通栏 */
.header-bar {
    background: linear-gradient(90deg, var(--dark-color), var(--primary-color));
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--secondary-color);
}

.main-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    letter-spacing: 1px;
}

.sub-title {
    font-size: 16px;
    margin-top: 5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    opacity: 0.9;
}

/* 游戏展示区 */
.game-showcase {
    margin: 25px 15px;
    text-align: center;
}

.game-poster {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 3px solid var(--secondary-color);
    transition: transform 0.3s;
}

.game-poster:hover {
    transform: scale(1.02);
}

/* 内容卡片 */
.content-card {
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    padding: 20px;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-color);
    color: #333;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
}

.section-title span {
    margin-right: 10px;
    font-size: 28px;
}

/* 特色列表 */
.feature-list {
    margin: 20px 0;
}

.feature-item {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.feature-item::before {
    content: "🍁";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 20px;
}

/* 下载区域 */
.download-section {
    text-align: center;
    margin: 30px 15px;
}

.download-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #6b3e00);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 2px solid var(--secondary-color);
    margin: 0 10px;
}

.download-btn:hover {
    background: linear-gradient(135deg, #6b3e00, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.tips {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

/* 新手提示卡片 */
.tips-card {
    background: linear-gradient(135deg, rgba(255,248,220,0.9), rgba(255,255,255,0.9));
    border-left: 5px solid var(--secondary-color);
}

/* 标签云 */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.tag {
    background: rgba(139,69,19,0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid var(--secondary-color);
}

.tagline {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: bold;
}

/* 公众号引导模块 */
.wechat-footer {
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    padding: 20px 0;
    margin-top: 30px;
    border-top: 3px solid var(--secondary-color);
}

.wechat-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.wechat-qrcode {
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 20px;
}

.wechat-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wechat-info {
    flex: 1;
    color: #fff;
}

.wechat-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.wechat-info p {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.wechat-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.wechat-btn:hover {
    background: #6b3e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


        /* 底部引导 */
        .footer-guide {
            text-align: center;
            padding: 0px;
            color: #666;
            font-size: 14px;
        }

/* 响应式设计 */
@media (max-width: 480px) {
    .wechat-container {
        flex-direction: column;
        text-align: center;
    }
    
    .wechat-qrcode {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .download-btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-title span {
        font-size: 24px;
    }
}