   <style>
        /* 全局重置 - 移动端优化 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: #f5f7fa;
            color: #1e2a3a;
            line-height: 1.5;
            padding-bottom: 70px; /* 为底部导航留出空间 */
        }
        
        /* 容器 */
        .container {
            padding: 12px 16px;
        }
        
        /* 头部（简洁） */
        .header {
            background: #ffffff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 10;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            font-size: 20px;
            font-weight: bold;
            background: linear-gradient(135deg, #2d8cff, #ff6b35);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-decoration: none;
        }
        
        .back-btn {
            font-size: 24px;
            text-decoration: none;
            color: #2d8cff;
            line-height: 1;
        }
        
        /* 面包屑（移动端简化） */
        .breadcrumb {
            font-size: 12px;
            color: #7f8c8d;
            padding: 12px 16px 4px;
            background: #f5f7fa;
        }
        
        .breadcrumb a {
            color: #2d8cff;
            text-decoration: none;
        }
        
        /* 主卡片 */
        .game-card {
            background: white;
            border-radius: 16px;
            margin-bottom: 12px;
            padding: 20px 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }
        
        /* 游戏标题区 */
        .game-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        
        .game-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12px;
            color: #7f8c8d;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid #ecf0f1;
        }
        
        /* 游戏截图（滑动区域） */
        .screenshot-slider {
            margin: 0 -16px 16px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            display: flex;
            gap: 8px;
            padding: 0 16px;
            -webkit-overflow-scrolling: touch;
        }
        
        .screenshot-slider img {
            scroll-snap-align: start;
            width: 280px;
            height: 160px;
            object-fit: cover;
            border-radius: 12px;
            background: #ecf0f1;
            flex-shrink: 0;
        }
        
        /* 下载按钮区域 */
        .download-area {
            background: #ffffff;
            margin-bottom: 12px;
            padding: 12px 16px;
            border-radius: 16px;
            display: flex;
            gap: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }
        
        .download-btn {
            flex: 1;
            background: linear-gradient(135deg, #2d8cff, #1a6fd9);
            color: white;
            text-align: center;
            padding: 14px 0;
            border-radius: 44px;
            font-weight: bold;
            font-size: 16px;
            text-decoration: none;
            display: block;
            transition: opacity 0.2s;
        }
        
        .download-btn:active {
            opacity: 0.8;
        }
        
        .info-btn {
            flex: 1;
            background: #ecf0f1;
            color: #2c3e50;
            text-align: center;
            padding: 14px 0;
            border-radius: 44px;
            font-weight: bold;
            font-size: 16px;
            text-decoration: none;
        }
        
        /* 章节标题 */
        .section-title {
            font-size: 18px;
            font-weight: 600;
            margin: 8px 0 12px;
            padding-left: 10px;
            border-left: 4px solid #2d8cff;
        }
        
        /* 游戏介绍 */
        .game-desc {
            color: #2c3e50;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 16px;
        }
        
        /* 配置要求（移动端折叠为单列） */
        .requirements {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 12px;
            margin: 12px 0;
        }
        
        .requirements h4 {
            font-size: 14px;
            margin: 8px 0 4px;
            color: #2d8cff;
        }
        
        .requirements ul {
            list-style: none;
            font-size: 13px;
            margin-bottom: 12px;
        }
        
        .requirements li {
            padding: 4px 0;
            border-bottom: 1px solid #ecf0f1;
        }
        
        /* 攻略内链 */
        .guide-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 12px 0;
        }
        
        .guide-list a {
            background: #ecf0f1;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            color: #2d8cff;
            text-decoration: none;
        }
        
        /* 相关推荐（横向滚动） */
        .related-scroll {
            overflow-x: auto;
            display: flex;
            gap: 12px;
            padding-bottom: 8px;
            -webkit-overflow-scrolling: touch;
        }
        
        .related-item {
            flex: 0 0 140px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .related-item img {
            width: 100%;
            height: 90px;
            object-fit: cover;
            background: #ecf0f1;
        }
        
        .related-item h4 {
            font-size: 13px;
            padding: 8px 8px 4px;
            font-weight: 500;
        }
        
        .related-item p {
            font-size: 11px;
            color: #7f8c8d;
            padding: 0 8px 8px;
        }
        
        /* 评论区精简 */
        .comment-box {
            background: white;
            border-radius: 16px;
            padding: 16px;
            margin-top: 12px;
        }
        
        .comment-box textarea {
            width: 100%;
            border: 1px solid #ecf0f1;
            border-radius: 12px;
            padding: 12px;
            font-size: 14px;
            font-family: inherit;
            resize: vertical;
            margin-bottom: 12px;
        }
        
        .comment-submit {
            background: #2d8cff;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 14px;
            width: 100%;
        }
        
        /* 底部导航栏 */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-around;
            padding: 8px 16px 12px;
            border-top: 1px solid #ecf0f1;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
            z-index: 20;
        }
        
        .nav-item {
            text-align: center;
            text-decoration: none;
            color: #95a5a6;
            font-size: 12px;
            transition: color 0.2s;
        }
        
        .nav-item.active {
            color: #2d8cff;
        }
        
        .nav-item span {
            display: block;
            font-size: 20px;
            margin-bottom: 2px;
        }
        
        /* 页脚 */
        .footer {
            text-align: center;
            font-size: 11px;
            color: #95a5a6;
            padding: 20px 16px;
            background: #f5f7fa;
        }
        
        /* 辅助 */
        .safe-tag {
            background: #e8f5e9;
            padding: 8px 12px;
            border-radius: 30px;
            font-size: 12px;
            color: #2e7d32;
            text-align: center;
            margin-top: 8px;
        }
        
        img {
            max-width: 100%;
            vertical-align: middle;
        }
    </style>