        * {
            margin: 1px;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #fef5f5 0%, #f5f9ff 100%);
            color: #333;
            line-height: 1.6;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        /* 头部样式 */
        .header {
            text-align: center;
            padding: -1px 20px;
            background: linear-gradient(45deg, #e6e6e6 0%, #ffffff 100%);
            color: black;
            position: relative;
        }
        
        .header h1 {
            font-size: 2.2rem;
            margin-bottom: 0px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            font-weight: 800;
            letter-spacing: -1px;
        }
        
        .subtitle {
            font-size: 1.2rem;
            margin-bottom: 5px;
            font-weight: 500;
            opacity: 0.95;
        }
        
        /* 游戏图片区域 */
        .game-banner {
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .game-banner img {
            width: 100%;
            display: block;
        }
        
/* URL展示区域 */
/* URL展示区域 */
.url-section {
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    gap: 10px; 
    text-align: center;
    padding: 0px;
    background: #f8f9ff;
    border-bottom: 0px solid #eaeaea;
    border-top: 0px solid #eaeaea;
    overflow: hidden; 
}

/* Ảnh hai bên */
.url-section .side-img {
    max-width: 500px;
    max-height: 500px;
    object-fit: contain;
    flex-shrink: 0;
    margin-left: -20px;
    margin-right: -5px;
}
        
        .url-display {
            background: transparent;
            padding: 15px 25px;
            border-radius: 12px;
            display: inline-block;
            font-size: 1.8rem;
            font-weight: bold;
            letter-spacing: 2px;
            margin: 15px 0;
            color: #7ed321;
            border: 2px dashed #7ed32100;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .url-display:hover {
            background: rgba(126, 211, 33, 0.25);
            transform: scale(1.03);
        }
        
        .url-display:after {
            content: "";
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8rem;
            color: #888;
            font-weight: normal;
        }
        
        .instruction {
            font-size: 1.2rem;
            margin: -20px 0 10px;
            color: #9013fe;
            font-weight: 500;
            letter-spacing: 0.5px;
            font-weight: 700; 
        }
        
        /* 游戏特色区域 */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            padding: 30px 20px;
            background: #fff;
        }
        
        .feature {
            background: #f8f9fa;
            padding: 25px 20px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 4px solid #ff3366;
        }
        
        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: #ff3366;
        }
        
        .feature h3 {
            margin-bottom: 12px;
            color: #333;
            font-size: 1.3rem;
        }
        
        .feature p {
            color: #666;
            font-size: 1rem;
        }
        
        /* 下载区域 */
        .download-section {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(45deg, #7e42ff 0%, #3d8bfd 100%);
            color: white;
        }
        
        .download-section h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .download-btn {
            display: inline-block;
            background: #ff3366;
            color: white;
            padding: 18px 50px;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: bold;
            text-decoration: none;
            margin: 25px 0 15px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 51, 102, 0.5);
            border: none;
            cursor: pointer;
        }
        
        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 51, 102, 0.7);
        }
        
        /* 步骤说明 */
        .steps {
            display: flex;
            justify-content: space-around;
            padding: 30px 20px;
            background: #f8f9ff;
            flex-wrap: wrap;
        }
        
        .step {
            text-align: center;
            width: 200px;
            margin: 15px;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: #ff3366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 20px;
            box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
        }
        
        .step h3 {
            margin-bottom: 10px;
            color: #333;
            font-size: 1.2rem;
        }
        
        .step p {
            color: #666;
        }
        
        /* 页脚 */
        footer {
            text-align: center;
            padding: 25px 20px;
            background: #2c3e50;
            color: #ecf0f1;
            font-size: 0.9rem;
        }
        
        footer p {
            margin: 5px 0;
        }
        
        /* 响应式设计 */
        @media (max-width: 600px) {
            .header h1 {
                font-size: 1.5rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
            }
            
            .url-display {
                font-size: 1.8rem;
                padding: 3px 20px;
            font-weight: 1000; 
            }
            
            .instruction {
                font-size: 1rem;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
            
            .steps {
                flex-direction: column;
                align-items: center;
            }
            
            .download-btn {
                padding: 15px 40px;
                font-size: 1.1rem;
            }
        }
        
        /* 动画效果 */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        /* 通知样式 */
        .notification {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 15px 25px;
            border-radius: 8px;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .notification.show {
            opacity: 1;
        }
        