:root {
    --primary-color: #3b7bbf; /* 口袋妖怪主题蓝 */
    --secondary-color: #ffcb05; /* 口袋妖怪主题黄 */
    --dark-color: #1a1a1a;
}

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

/* 顶部通栏 */
.header-bar {
    background: linear-gradient(90deg, var(--dark-color), var(--primary-color));
    color: var(--secondary-color);
    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);
}

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

.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-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-left: 5px solid var(--primary-color);
    backdrop-filter: blur(5px);
}

.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;
}

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

/* 下载按钮 */
.download-section {
    text-align: center;
    margin: 30px 0;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #2a5a8f);
    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.3);
    border: 2px solid var(--secondary-color);
    margin: 0 10px;
}

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

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

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

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

.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: #ffd700;
}

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

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

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

@media (max-width: 480px) {
    .wechat-container {
        flex-direction: column;
        text-align: center;
    }
    
    .wechat-qrcode {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

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