* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #4361ee;
            --secondary: #3a86ff;
            --light: #f8f9fa;
            --light-gray: #f0f2f5;
            --medium-gray: #e9ecef;
            --dark-gray: #6c757d;
            --text: #343a40;
            --accent: #ff6b6b;
            --border: rgba(0, 0, 0, 0.1);
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        body {
            background-color: var(--light-gray);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* 头部导航 */
        header {
            background: rgba(255, 255, 255, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 18px;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            font-size: 32px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin: 0 15px;
        }

        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover, 
        .nav-menu a.active {
            background: rgba(67, 97, 238, 0.1);
            color: var(--primary);
        }

        .mobile-toggle {
            display: none;
            font-size: 24px;
            color: var(--text);
            cursor: pointer;
        }

        /* 页面内容 */
        .page {
            display: none;
            padding: 40px 0;
            animation: fadeIn 0.5s ease;
        }

        .page.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* 首页样式 */
        .hero-slider {
            position: relative;
            height: 30vh;
            min-height: 400px;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: var(--card-shadow);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.2);
            background-blend-mode: multiply;
        }

        .slide.active {
            opacity: 1;
        }

        .slide h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .slide-content {
            padding: 30px;
            border-radius: 10px;
            max-width: 800px;
        }

        /* 幻灯片导航居中 */
        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 15px;
            border-radius: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* 下载区域 */
        .download-section {
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(58, 134, 255, 0.1));
            padding: 40px;
            border-radius: 12px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 30px;
            box-shadow: var(--card-shadow);
        }

        .download-content {
            max-width: 500px;
        }

        .download-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .download-content p {
            margin-bottom: 30px;
            font-size: 1.1rem;
            color: var(--dark-gray);
        }

        .download-btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(67, 97, 238, 0.3);
        }

        .download-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
        }

        .qrcode {
            background: white;
            padding: 15px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: var(--card-shadow);
        }

        .qrcode img {
            width: 150px;
            height: 150px;
        }

        .qrcode p {
            margin-top: 15px;
            color: var(--text);
            font-weight: 600;
        }

        /* 内容区域 */
        .section-title {
            position: relative;
            font-size: 2rem;
            margin: 40px 0 30px;
            padding-bottom: 15px;
            color: var(--primary);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        /* 文章网格 */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .article-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
            border: 1px solid var(--border);
            box-shadow: var(--card-shadow);
         }
        
      
        
        
        .article-card a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .article-card a:hover, 
        .article-card a.active {
            background: rgba(67, 97, 238, 0.1);
            color: var(--primary);
        }
        
        
        .article-img {
            height: 200px;
            width: 100%;
            background-size: cover;
            background-position: center;
        }

        .article-content {
            padding: 20px;
        }

        .article-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--text);
        }

        .article-content p {
            color: var(--dark-gray);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            color: var(--dark-gray);
            font-size: 0.85rem;
        }

        /* 游戏特色 */
        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
        }

        .feature {
            flex: 1;
            min-width: 250px;
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            box-shadow: var(--card-shadow);
        }

        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature i {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .feature h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text);
        }

        .feature p {
            color: var(--dark-gray);
        }

        /* 人物展示幻灯片 */
        .characters-section {
            margin: 60px 0;
            padding: 30px 0;
            background: linear-gradient(to right, rgba(67, 97, 238, 0.03), rgba(58, 134, 255, 0.03));
            border-radius: 15px;
        }

        .characters-slider {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            height: 450px;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .character-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            background-color: rgba(0, 0, 0, 0.3);
            background-blend-mode: multiply;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 60px;
        }

        .character-slide.active {
            opacity: 1;
        }

        .character-title {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            transition: all 0.3s ease;
        }

        .character-slide:hover .character-title {
            background: rgba(67, 97, 238, 0.9);
            transform: translateY(-10px);
        }

        .character-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .character-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .character-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* 文章列表页 */
        .articles-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .category-nav {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .category-btn {
            padding: 8px 20px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text);
        }

        .category-btn.active, 
        .category-btn:hover {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
        }

        /* 文章详情页 */
        .article-detail {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            padding: 0;
            border: 1px solid var(--border);
            box-shadow: var(--card-shadow);
        }

        .detail-header {
            padding: 40px;
            text-align: center;
      
            color: white;
        }

        .detail-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .detail-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: rgba(255, 255, 255, 0.9);
        }

        .detail-content {
            padding: 40px;
            line-height: 1.8;
            color: var(--text);
        }

        .detail-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .detail-content img {
            max-width: 100%;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: var(--card-shadow);
        }

        /* 页脚 */
        footer {
            background: white;
            padding: 50px 0 20px;
            border-top: 1px solid var(--border);
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: var(--primary);
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--dark-gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(67, 97, 238, 0.1);
            border-radius: 50%;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            color: var(--dark-gray);
            font-size: 0.9rem;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .slide h2 {
                font-size: 2.5rem;
            }
            
            .download-section {
                text-align: center;
                justify-content: center;
            }

            .characters-slider {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                padding: 20px 0;
                transition: all 0.4s ease;
                border-top: 1px solid var(--border);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 10px 0;
                text-align: center;
            }
            
            .hero-slider {
                height: 60vh;
            }
            
            .slide h2 {
                font-size: 1rem;
            }
            
            .download-content h2 {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }

            .characters-slider {
                height: 350px;
            }
        }

        @media (max-width: 576px) {
            .hero-slider {
                height: 30vh;display: none;
            }
            
            .slide h2 {
                font-size: 1.8rem;
            }
            
            .download-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
            
            .qrcode img {
                width: 120px;
                height: 120px;
            }
            
            .detail-header {
                padding: 30px 20px;
            }
            
            .detail-header h1 {
                font-size: 1.8rem;
            }
            
            .detail-content {
                padding: 30px 20px;
            }

            .characters-slider {
                height: 300px;
            }
            
            .character-title {
                font-size: 1.8rem;
                padding: 12px 30px;
            }
        }