 /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: #0f0f15;
            color: #f0f0f0;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #00a8ff;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: #4cd137;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部导航 */
        header {
            background: rgba(15, 15, 25, 0.95);
            /*position: sticky;*/
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: 700;
            color: #fff;
        }
        
        .logo i {
            color: #00a8ff;
            margin-right: 10px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 25px;
        }
        
        .nav-links a {
            color: #e0e0e0;
            font-weight: 500;
            font-size: 16px;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #00a8ff;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #00a8ff;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 8px 15px;
        }
        
        .search-box input {
            background: transparent;
            border: none;
            color: #fff;
            padding: 5px 10px;
            outline: none;
            width: 200px;
        }
        
        .search-box button {
            background: transparent;
            border: none;
            color: #00a8ff;
            cursor: pointer;
            font-size: 16px;
        }
        
        /* Banner区域 - 纯背景色设计 */
        .banner {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 20%);
            pointer-events: none;
        }
        
        .banner-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .banner h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .banner p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            background: #00a8ff;
            color: white;
            padding: 12px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(0, 168, 255, 0.4);
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background: #4cd137;
            box-shadow: 0 5px 20px rgba(76, 209, 55, 0.6);
            transform: translateY(-3px);
        }
        
        /* 新增优势区域 */
        .features-section {
            padding: 70px 0;
            background: rgba(20, 20, 30, 0.8);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 36px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #00a8ff;
            border-radius: 2px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .feature-card {
            background: rgba(30, 30, 40, 0.8);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 168, 255, 0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 168, 255, 0.3);
            border-color: rgba(0, 168, 255, 0.3);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #00a8ff, #4cd137);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .feature-icon i {
            font-size: 36px;
            color: white;
        }
        
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #00a8ff;
        }
        
        .feature-card p {
            color: #aaa;
            font-size: 16px;
        }
        
        /* 热门游戏区域 - 更新为按钮列表 */
        .games-section {
            padding: 70px 0;
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        
        .game-link {
            display: block;
            background: rgba(40, 40, 55, 0.8);
            color: #e0e0e0;
            text-align: center;
            padding: 15px 10px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .game-link:hover {
            background: rgba(0, 168, 255, 0.2);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 168, 255, 0.2);
            border-color: rgba(0, 168, 255, 0.3);
        }
        
        .game-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .game-link:hover::before {
            transform: translateX(100%);
        }
        
        /* 页脚区域 */
        footer {
            background: #0a0a10;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #00a8ff;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #aaa;
            display: block;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #00a8ff;
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #00a8ff;
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: #777;
            font-size: 14px;
        }
		 /* 文章内容区域 */
        .article-main {
            background: rgba(25, 25, 35, 0.8);
            border-radius: 15px;
            padding: 40px;
            margin: 50px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            max-width: 1000px;
        }
        
        .article-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .article-title {
            font-size: 36px;
            margin-bottom: 15px;
            line-height: 1.3;
            color: #fff;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            color: #aaa;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .article-meta span {
            margin-right: 20px;
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 6px;
            color: #00a8ff;
        }
        
        .tags {
            display: flex;
            flex-wrap: wrap;
            margin-top: 15px;
        }
        
        .tag {
            background: rgba(0, 168, 255, 0.15);
            color: #00a8ff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            margin-right: 10px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background: rgba(0, 168, 255, 0.3);
        }
        
        .article-content {
            font-size: 18px;
            line-height: 1.8;
        }
        
        .article-content p {
            margin-bottom: 25px;
        }
        
        .article-content img {
            max-width: 100%;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .article-content h2 {
            font-size: 28px;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(0, 168, 255, 0.5);
            color: #4cd137;
        }
        
        .article-content h3 {
            font-size: 22px;
            margin: 30px 0 15px;
            color: #00a8ff;
        }
        
        .highlight {
            background: rgba(0, 168, 255, 0.1);
            border-left: 4px solid #00a8ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .rating-box {
            display: flex;
            align-items: center;
            margin: 30px 0;
            padding: 20px;
            background: rgba(30, 30, 45, 0.8);
            border-radius: 10px;
        }
        
        .rating-score {
            font-size: 48px;
            font-weight: 700;
            color: #4cd137;
            margin-right: 20px;
            min-width: 100px;
            text-align: center;
        }
        
        .rating-details {
            flex: 1;
        }
        
        .rating-details h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #fff;
        }
        
        .rating-bar {
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            margin: 8px 0;
            overflow: hidden;
        }
        
        .rating-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #00a8ff, #4cd137);
            border-radius: 4px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .games-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                padding: 15px 0;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            .nav-links {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-links li {
                margin: 0 10px 10px;
            }
            
            .search-box {
                margin-top: 15px;
            }
            
            .banner h1 {
                font-size: 36px;
            }
            
            .banner p {
                font-size: 18px;
            }
            
            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .banner {
                padding: 60px 0;
            }
            
            .banner h1 {
                font-size: 28px;
            }
            
            .banner p {
                font-size: 16px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .games-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }