        /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        
        /* 基础样式 - 全红色系统一 */
        :root {
            --primary-color: #e63946; /* 主红色 */
            --primary-light: #f05454; /* 浅红色（hover用） */
            --primary-deep: #d62828; /* 深红色（游戏分类区分用） */
            --text-color: #333;
            --light-text: #666;
            --border-color: #e5e5e5;
            --bg-color: #f5f7fa;
            --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        body {
            color: var(--text-color);
            background-color: var(--bg-color);
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: var(--text-color);
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--primary-color);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 头部样式 */
        header {
            background-color: #fff;
            box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .logo span {
            color: var(--primary-deep); /* 游戏文字用深红色区分 */
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin: 0 15px;
        }
        
        .nav-menu li a {
            font-size: 16px;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }
        
        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        
        .nav-menu li a:hover::after {
            width: 100%;
        }
        
        .active {
            color: var(--primary-color);
        }
        
        .active::after {
            width: 100% !important;
        }
        
        /* 移动端菜单按钮 */
        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* 分类切换区 */
        .category-section {
            padding: 30px 0;
        }
        
        .category-tabs {
            display: flex;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: var(--card-shadow);
        }
        
        .category-tab {
            flex: 1;
            text-align: center;
            padding: 15px 0;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
        }
        
        .category-tab.active {
            background-color: rgba(230, 57, 70, 0.1); /* 红色浅背景 */
            border-bottom-color: var(--primary-color);
        }
        
        .category-tab.game.active {
            border-bottom-color: var(--primary-deep); /* 游戏标签用深红色下划线 */
        }
        
        .category-tab:hover {
            background-color: rgba(230, 57, 70, 0.05); /* 红色极浅背景 */
        }
        
        /* 筛选区 */
        .filter-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-tag {
            padding: 8px 15px;
            background-color: #fff;
            border-radius: 20px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 14px;
            border: 1px solid var(--border-color);
        }
        
        .filter-tag.active {
            background-color: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }
        
        .sort-select {
            padding: 8px 15px;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            background-color: #fff;
            font-size: 14px;
            cursor: pointer;
            outline: none;
        }
        
        /* 专题列表区 */
        .topic-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .topic-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            padding: 20px;
        }
        
        .topic-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }
        
        .topic-content {
            padding: 0;
        }
        
        .topic-tag {
            display: inline-block;
            padding: 3px 8px;
            background-color: rgba(230, 57, 70, 0.1); /* 红色标签背景 */
            color: var(--primary-color);
            border-radius: 4px;
            font-size: 12px;
            margin-bottom: 10px;
        }
        
        .topic-tag.game {
            background-color: rgba(214, 40, 40, 0.1); /* 深红色标签背景区分游戏 */
            color: var(--primary-deep);
        }
        
        .topic-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .topic-desc {
            font-size: 14px;
            color: var(--light-text);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        /* 加载更多按钮 */
        .load-more {
            text-align: center;
            margin: 20px 0 40px;
        }
        
        .load-more-btn {
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: #fff;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3); /* 红色阴影 */
        }
        
        .load-more-btn:hover {
            background-color: var(--primary-light); /* 浅红色hover效果 */
            transform: translateY(-2px);
        }
        
        /* 底部样式 */
        footer {
            background-color: #fff;
            padding: 20px 0;
            border-top: 1px solid var(--border-color);
        }
        
        .copyright {
            text-align: center;
            font-size: 14px;
            color: #999;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background-color: #fff;
                width: 100%;
                height: calc(100vh - 70px);
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .topic-list {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            }
        }
        
        @media (max-width: 576px) {
            .category-tab {
                font-size: 16px;
                padding: 12px 0;
            }
            
            .topic-list {
                grid-template-columns: 1fr;
            }
        }
        
        /* 隐藏元素 */
        .hidden {
            display: none !important;
        }
