body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #ff9900, #ff3300); color: white; padding: 20px; border-radius: 10px; margin-bottom: 30px; }
        .logo { font-size: 28px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .mobile-menu { display: none; cursor: pointer; }
        @media (max-width: 768px) {
            nav ul { display: none; position: absolute; top: 80px; left: 0; right: 0; background: #ff3300; padding: 10px; }
            nav ul.active { display: block; }
            .mobile-menu { display: block; }
        }
        h1 { color: #ff3300; border-bottom: 3px solid #ff9900; padding-bottom: 10px; }
        h2 { color: #ff6600; margin-top: 25px; }
        h3 { color: #ff9933; margin-top: 20px; }
        .download-btn { background: #4CAF50; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; display: inline-block; margin: 15px 0; }
        .login-btn { background: #2196F3; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; display: inline-block; margin: 15px 0; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { margin-top: 50px; padding: 20px; background: #f5f5f5; border-radius: 5px; }
        .tag { background: #e0e0e0; padding: 3px 8px; border-radius: 3px; margin: 3px; display: inline-block; }
