* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #0a192f;
            color: #e6f1ff;
            line-height: 1.6;
            background-image: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), 
                              url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-attachment: fixed;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 头部样式 */
        header {
            background-color: rgba(17, 34, 64, 0.95);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            font-size: 2.5rem;
            color: #64ffda;
        }
        
        .logo-text h1 {
            font-size: 1.8rem;
            color: #64ffda;
            letter-spacing: 2px;
        }
        
        .logo-text p {
            font-size: 0.9rem;
            color: #8892b0;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            color: #ccd6f6;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }
        
        nav a:hover {
            color: #64ffda;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #64ffda;
            left: 0;
            bottom: 0;
            transition: width 0.3s;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        /* 英雄区域 */
        .hero {
            padding: 100px 0;
            text-align: center;
            background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, rgba(10, 25, 47, 0) 70%);
        }
        
        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #ccd6f6;
            text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #8892b0;
        }
        
        .cta-button {
            display: inline-block;
            background-color: transparent;
            color: #64ffda;
            border: 2px solid #64ffda;
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            letter-spacing: 1px;
            transition: all 0.3s;
            margin: 10px;
        }
        
        .cta-button:hover {
            background-color: rgba(100, 255, 218, 0.1);
            box-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
            transform: translateY(-3px);
        }
        
        .cta-button.primary {
            background-color: #64ffda;
            color: #0a192f;
        }
        
        .cta-button.primary:hover {
            background-color: #52d3b0;
            border-color: #52d3b0;
        }
        
        /* 通用部分样式 */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #ccd6f6;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background: #64ffda;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* 游戏介绍 */
        .game-intro {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .intro-text {
            flex: 1;
        }
        
        .intro-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #64ffda;
        }
        
        .intro-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #a8b2d1;
        }
        
        .intro-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .intro-image:hover img {
            transform: scale(1.05);
        }
        
        /* 游戏特色 */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: rgba(17, 34, 64, 0.7);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(100, 255, 218, 0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border-color: rgba(100, 255, 218, 0.3);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: #64ffda;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #ccd6f6;
        }
        
        /* 角色展示 */
        .characters {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .character-card {
            background-color: rgba(17, 34, 64, 0.7);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
        }
        
        .character-card:hover {
            transform: translateY(-10px);
        }
        
        .character-img {
            height: 250px;
            background-color: #112240;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: #64ffda;
        }
        
        .character-info {
            padding: 20px;
        }
        
        .character-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #ccd6f6;
        }
        
        .character-info p {
            color: #8892b0;
            font-size: 0.95rem;
        }
        
        /* 截图展示 */
        .screenshots {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .screenshot {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }
        
        .screenshot:hover {
            transform: scale(1.03);
        }
        
        .screenshot img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        
        /* 获取方式 */
        .download-options {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .platform {
            background-color: rgba(17, 34, 64, 0.7);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            width: 250px;
            border: 1px solid rgba(100, 255, 218, 0.1);
        }
        
        .platform-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #64ffda;
        }
        
        .platform h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #ccd6f6;
        }
        
        /* TapTap 独家下载专区 */
        .taptap-platform {
            width: 320px;
            max-width: 90%;
            border: 1px solid rgba(0, 217, 255, 0.25);
            box-shadow: 0 0 30px rgba(0, 217, 255, 0.12);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .taptap-platform:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 40px rgba(0, 217, 255, 0.22);
            border-color: rgba(0, 217, 255, 0.45);
        }
        
        .taptap-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            filter: drop-shadow(0 4px 10px rgba(0, 132, 255, 0.35));
        }
        
        .taptap-download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            padding: 16px 36px;
            font-size: 1.15rem;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 1px;
            border-radius: 50px;
            background: linear-gradient(135deg, #00D9FF 0%, #0084FF 100%);
            box-shadow: 0 6px 20px rgba(0, 132, 255, 0.45);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .taptap-download-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
            transition: left 0.6s;
        }
        
        .taptap-download-btn:hover::before {
            left: 100%;
        }
        
        .taptap-download-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 217, 255, 0.55);
            background: linear-gradient(135deg, #00E5FF 0%, #0099FF 100%);
        }
        
        .taptap-download-btn:active {
            transform: translateY(0) scale(0.98);
        }
        
        .taptap-download-btn i {
            font-size: 1.1rem;
        }
        
        /* 页脚 */
        footer {
            background-color: rgba(10, 25, 47, 0.95);
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-logo h3 {
            font-size: 1.8rem;
            color: #64ffda;
            margin-bottom: 10px;
        }
        
        .social-links {
            display: flex;
            gap: 20px;
        }
        
        .social-links a {
            color: #ccd6f6;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: #64ffda;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #8892b0;
            font-size: 0.9rem;
        }
        
        .icp {
            margin-top: 10px;
            font-size: 0.85rem;
            color: #64b5f6;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .game-intro {
                flex-direction: column;
            }
            
            .hero h2 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            
            nav ul {
                gap: 15px;
            }
            
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        /* 模态框样式 */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            padding-top: 60px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
        }

        .modal-content {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 1200px;
            max-height: 80%;
            object-fit: contain;
        }

        #caption {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 700px;
            text-align: center;
            color: #ccc;
            padding: 10px 0;
            height: 150px;
        }

        .modal-content, #caption {
            animation-name: zoom;
            animation-duration: 0.6s;
        }

        @keyframes zoom {
            from {transform: scale(0)}
            to {transform: scale(1)}
        }

        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
        }

        .close:hover,
        .close:focus {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }

        #fullSizeImage {
            cursor: pointer;
            transition: 0.3s;
        }

        #fullSizeImage:hover {
            opacity: 0.7;
        }

        /* QQ加群按钮 */
        .qq-group-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #12b7f5, #0099ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 153, 255, 0.4);
            transition: all 0.3s;
            z-index: 999;
        }

        .qq-group-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 153, 255, 0.6);
        }

        .qq-group-btn i {
            font-size: 32px;
            color: white;
        }