        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans SC', sans-serif;
        }

        body {
            background-color: #0a0e1a;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* 容器样式 */
        .container {
            width: 90%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 头部样式 */
        header {
            position: relative;
            z-index: 100;
            padding: 20px 0;
            background: transparent;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 60px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #4a90e2;
        }

        /* 英雄区域样式 */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            padding-top: 0;
            padding-bottom: 0;
            overflow: visible;
            background-image: url('/static/image/游戏网页/bg1.png');
            background-size: cover;
            background-position: top center;
            z-index: 1;
        }
        
        /* 默认隐藏手机端下载区域，在媒体查询中显示 */
        .mobile-download {
            display: none;
        }
        
        /* 确保英雄区域在手机端有足够的高度显示完整的首页图 */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 100vh;
                padding-bottom: 0;
            }
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
        }

        .hero-title {
            margin-bottom: 30px;
        }

        .hero-title img {
            max-width: 100%;
            height: auto;
        }

        .hero-description {
            font-size: 24px;
            margin-bottom: 40px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: #4a90e2;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(74, 144, 226, 0.4);
        }

        /* 游戏特色区域 */
        .features-section {
            padding: 200px 0;
            margin: -100px 0 -150px 0;
            position: relative;
            z-index: 2;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0px;
            bottom: 0px;
            left: 0;
            right: 0;
            background-image: url('/static/image/游戏网页/bg2.png');
            background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -1;
        }

        .features-title {
            text-align: center;
            margin-bottom: 0px;
        }

        .features-title img {
            max-width: 100%;
            height: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature-item {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }



        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: transparent;
        }

        .feature-frame {
            margin-bottom: 20px;
        }

        .feature-frame img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .feature-title {
            text-align: center;
            font-size: 20px;
            margin-bottom: 15px;
            color: #907441;
        }

        .feature-description {
            color: #FBE9C5;
            line-height: 1.6;
        }

        /* 合并后的区域 */
        .merged-section {
            padding: 100px 0;
            position: relative;
            background-image: url('/static/image/游戏网页/bg3.png');
            background-size: cover;
            background-position: center;
            z-index: 1;
            min-height: 100vh;
        }

        .merged-content {
            margin-top: 100px;
            text-align: center;
            padding: 50px 0;
        }

        .merged-content img {
            max-width: 100%;
            height: auto;
        }

        /* 页脚内容样式 */
        .footer-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: center;
            padding: 30px 0;
            margin: 0;
        }

        .footer-logo {
            margin-bottom: 30px;
        }

        .footer-logo img {
            height: 60px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 80px;
            flex-wrap: wrap;
            margin-bottom: 0px;
        }

        .footer-links a {
            color: #39320F;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #39320F;
        }

        .copyright {
            color: #6c757d;
            font-size: 14px;
        }

        /* 装饰元素 */
        .decor-left {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
        }

        .decor-right {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            /* 大屏幕适配 */
            .desktop-download {
                left: 50px;
            }
        }

        @media (max-width: 768px) {
            /* 导航栏适配 - 手机端隐藏导航链接 */
            .nav-links {
                display: none !important;
            }

            /* 英雄区域适配 */
            .hero-content {
                padding: 0 20px;
                height: auto;
                min-height: 100vh;
            }

            .hero-title img {
                max-width: 70%;
            }

            /* 下载区域适配 - PC端隐藏，手机端显示在右上角 */
            .desktop-download {
                display: none;
            }
            
            .mobile-download {
                display: block;
                bottom: auto;
                top: 120px;
                left: auto;
                right: 20px;
                transform: none;
                max-width: 280px;
            }

            .download-buttons {
                gap: 12px;
            }

            .download-button-item span {
                font-size: 20px;
            }
            
            .download-btn img {
                width: 100%;
                height: auto;
            }
            
            /* 文字样式适配 - 手机端左对齐并空两格 */
            .game-slogan,
            .game-description {
                text-align: left !important;
                text-indent: 2em;
                padding: 0 10px;
            }
            
            /* 隐藏装饰图片在手机端 */
            .features-section img[src="/static/image/游戏网页/装饰-左.png"],
            .features-section img[src="/static/image/游戏网页/装饰-右.png"] {
                display: none;
            }

            /* 游戏特色适配 */
            .features-section {
                padding: 120px 0;
                margin: -60px 0 -100px 0;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            /* 页脚适配 */
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            /* 小屏幕适配 */
            /* 导航栏适配 - 确保小屏幕也隐藏导航链接 */
            .nav-links {
                display: none !important;
            }
            
            /* Logo适配 */
            .logo img {
                height: 80px;
            }
            
            /* 英雄区域适配 */
            .hero-title img {
                max-width: 85%;
            }
            
            /* 下载区域适配 - 小屏幕右上角显示 */
            .mobile-download {
                top: 100px;
                right: 15px;
                max-width: 260px;
            }
            
            .download-button-item span {
                font-size: 18px;
            }
            
            /* 游戏特色适配 */
            .features-section {
                padding: 120px 0;
                margin: -60px 0 -100px 0;
            }
            
            /* 页脚适配 */
            .footer-links a {
                font-size: 14px;
            }
        }

        @media (max-width: 360px) {
            /* 最小屏幕适配 */
            /* 导航栏适配 - 确保最小屏幕也隐藏导航链接 */
            .nav-links {
                display: none !important;
            }
            
            /* 英雄区域适配 */
            .hero-title img {
                max-width: 95%;
            }
            
            /* 下载区域适配 - 最小屏幕右上角显示 */
            .mobile-download {
                top: 80px;
                right: 10px;
                max-width: 240px;
            }
            
            .download-button-item span {
                font-size: 16px;
            }
        }
