  <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        

        
        .container {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            width: 100%;
            max-width: 800px;
            padding: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            z-index: -1;
            animation: rotate 15s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        header {
            margin-bottom: 30px;
        }
        
        .gameTitle{
            font-size: 2.8rem;
            margin-bottom: 10px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            background: linear-gradient(to right, #ff8a00, #da1b60);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .subtitle {
            font-size: 1.2rem;
            color: #bbb;
            margin-bottom: 30px;
        }
        
        .game-card {
            background: rgba(30, 30, 50, 0.8);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        
        .game-info {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            text-align: left;
        }
        
        .game-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
        }
        
        .game-details h2 {
            font-size: 1.8rem;
            margin-bottom: 5px;
            color: #4facfe;
        }
        
        .game-details p {
            color: #aaa;
            font-size: 1rem;
        }
        
        .launch-btn {
            background: linear-gradient(to right, #00b09b, #96c93d);
            color: white;
            border: none;
            padding: 18px 50px;
            font-size: 1.4rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            display: block;
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }
        
        .launch-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            background: linear-gradient(to right, #00b09b, #00cdac);
        }
        
        .launch-btn:active {
            transform: translateY(0);
        }
        
        .launch-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: all 0.6s ease;
        }
        
        .launch-btn:hover::after {
            left: 100%;
        }
        
        .status {
            margin-top: 25px;
            padding: 15px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }
        
        .status.error {
            background: rgba(255, 50, 50, 0.2);
            color: #ff6b6b;
        }
        
        .status.success {
            background: rgba(50, 255, 100, 0.2);
            color: #6bff8f;
        }
        
        .steps {
            text-align: left;
            margin-top: 40px;
            background: rgba(0, 0, 0, 0.4);
            padding: 25px;
            border-radius: 15px;
        }
        
        .steps h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #4facfe;
        }
        
        .steps ol {
            padding-left: 25px;
        }
        
        .steps li {
            margin-bottom: 12px;
            line-height: 1.5;
        }
        
        footer {
            margin-top: 30px;
            color: #888;
            font-size: 0.9rem;
        }
        
        .wechat-logo {
            width: 40px;
            height: 40px;
            background: #09bb07;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 24px;
            color: white;
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 25px;
            }
            
            .gameTitle {
                font-size: 2.2rem;
            }
            
            .game-info {
                flex-direction: column;
                text-align: center;
            }
            
            .launch-btn {
                padding: 15px 30px;
                font-size: 1.2rem;
            }
        }
        
        #splash-screen {

                width: 100%;
                height: 100%;
                background-image: url('https://www.jlgames.cn/static/miniGame/images/bg4.jpg');
                background-size: cover;
                background-position: center;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                z-index: 1000;
                transition: opacity 0.5s ease-out;
            }
        
    </style>