
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e6e6e6;
            min-height: 100vh;
            padding-top: 80px;
            padding-bottom: 100px;
            position: relative;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid #2a3a5a;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
			padding-right: 10px;
        }
        
        .header-logo {
            height: 40px;
            width: auto;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a1a2e;
			font-weight: 800;
            font-size: 25px;
            padding: 0 5px;

			background: linear-gradient(to right, #ffaa00, #ffff00);
			-webkit-background-clip: text;
			background-clip: text;
			color: transparent;
			text-shadow: 0 2px 10px rgba(76, 201, 240, 0.2);
        }
        
        .nav-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .nav-btn {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid #445577;
            padding: 8px 10px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
			background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
        }
        
        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .language-container {
            position: relative;
            display: inline-block;
        }
        
        .language-icon {
            font-size: 20px;
            color: #e6e6e6;
            cursor: pointer;
            padding: 2px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .language-icon:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .language-dropdown {
            display: none;
            position: absolute;
            right: 0;
            background: rgba(25, 35, 60, 0.95);
            min-width: 120px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
            border-radius: 6px;
            z-index: 1;
            border: 1px solid #445577;
        }
        
        .language-dropdown a {
            color: #e6e6e6;
            padding: 10px 15px;
            text-decoration: none;
            display: block;
            transition: background 0.3s;
        }
        
        .language-dropdown a:hover {
            background: rgba(76, 201, 240, 0.2);
        }
        
        .language-container:hover .language-dropdown {
            display: block;
        }
        
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
		.game-logo {
			position: relative;
			width: 300px;
			height: 300px;
			border-radius: 55px;
			margin: 20px 0 40px;
			display: flex;
			align-items: center;
			justify-content: center;
			box-shadow: 0 10px 30px rgba(76, 201, 240, 0.3);
			border: 5px solid rgba(255, 255, 255, 0.1);
			max-width: min(300px, 80vw);
			overflow: hidden; /* 防止内容溢出 */
			z-index: 1;
		}
		.logo-img {
		    width: 100%; /* 根据需要调整大小 */
		    height: auto;
		    max-height: 100%;
		    object-fit: contain; /* 保持图片比例 */
		    z-index: 2; /* 确保图片在渐变之上 */
		}


				
        h1 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(to right, #4cc9f0, #f72585);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(76, 201, 240, 0.2);
        }
        
        .game-description {
            max-width: 700px;
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 40px;
            color: #c5c8d9;
        }
        
        .highlight {
            color: #4cc9f0;
            font-weight: 600;
        }
        
        .buttons-container {
            display: flex;
            gap: 25px;
            margin: 30px 0;
        }
        
        .main-btn {
            padding: 16px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: none;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        
        .play-btn {
            background: linear-gradient(135deg, #f72585 0%, #b5179e 100%);
            color: white;
        }
        
        .download-btn {
            background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
            color: white;
        }
        
        .main-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        
.screenshots-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0 0px 0px;
    margin: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #4cc9f0 #1a1a2e;
    -webkit-overflow-scrolling: touch;
	margin-bottom: 110px;
}

.screenshots {
    display: inline-flex;
    gap: 20px;
    padding: 10px;
    min-width: min-content;
}

.screenshot {
    width: 320px;
    height: 240px; /* 设置固定高度 */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #2a3a5a 0%, #1a1a2e 100%);
    flex-shrink: 0;
    position: relative;
}

.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
	
}


        
        footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 15, 30, 0.95);
            padding: 30px 5% 20px;
            border-top: 1px solid #2a3a5a;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-links {
            display: flex;
            gap: 30px;
            margin-bottom: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .footer-link {
            color: #90a0c0;
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
        }
        
        .footer-link:hover {
            color: #4cc9f0;
        }
        
        .social-media {
            display: flex;
            gap: 20px;
            margin: 20px 0;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e6e6e6;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: #4cc9f0;
            transform: translateY(-3px);
        }
        
        .copyright {
            color: #90a0c0;
            margin: 10px 0;
            font-size: 14px;
        }
        
        .age-restriction {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 15px;
            padding: 10px 20px;
            background: rgba(247, 37, 133, 0.15);
            border-radius: 8px;
            border: 1px solid rgba(247, 37, 133, 0.3);
        }
        
        .age-icon {
            font-size: 28px;
            color: #f72585;
        }
        
        .age-text {
            font-size: 14px;
            color: #e6e6e6;
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: #1a1a2e;
            padding: 30px;
            border-radius: 12px;
            max-width: 700px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid #445577;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: #90a0c0;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .close-modal:hover {
            color: #f72585;
        }
        
        .modal-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: #4cc9f0;
        }
        
        .modal-text {
            line-height: 1.7;
            color: #c5c8d9;
        }
		
		@media (max-width: 768px) {
			.screenshots-container {
			    margin-bottom: 130px;
			}
		    .screenshot {
		        width: 280px;
		        height: 210px;
		    }
		}
		
		@media (max-width: 480px) {
			.screenshots-container {
			    margin-bottom: 170px;
			}
		    .screenshot {
		        width: 240px;
		        height: 180px;
		    }
		}
        
        @media (max-width: 320px) {
            header {
                flex-direction: column;
                gap: 15px;
                padding: 15px;
            }
            
            .buttons-container {
                flex-direction: column;
                gap: 15px;
            }
            
            h1 {
                font-size: 36px;
            }
            
            .game-logo {
                width: 160px;
                height: 160px;
                font-size: 28px;
            }
            
            .game-description {
                font-size: 16px;
                padding: 0 15px;
            }
            
			.screenshots-container {
				margin-bottom: 340px;
			}
			.screenshot {
				width: 240px;
				height: 180px;
			}
        }
  
