Well, I posted corrected files last time, but this time I'm going to explain the problems and changes that I made so that the developer might actually take a look at fixing the issues directly. This isn't a knock at the developer, I'm just trying to help. You should want to reach as many people with your work as possible. Right now, the broken-ness of it might turn some people off.
In the code, there is a movie that doesn't match the file name; ilfs6.webm is in the code, but the actual file name is ilfs6 (2).webm and it loads as an empty/broken video in the game. You can either change the filename to match (recommended) or change the code to the proper filname.
Capitalization is still an issue. If you reference a file as images/milf/milf1.webp in the code, but the actual name on the filesystem is Images/Milf/milf1.webp, it will only work on windows. If you remain consistent with file name capitalization, it will work on all systems, especially the linux webservers that run 80% of the internet, and would run this game if it was put on one.
The folder "Images" (with a capital letter I) is referenced everywhere in the code as "images" (lowercase letter i).
Within that Images folder, many of the folders are capitalized in the file system, but referenced in the code with lowercase.
BigD != bigd
Cilf != cilf
GF != gf
Milf != milf
Misc != misc
There may be others that I haven't found yet. This presents a broken image within the application, and since people are looking for this application to have specific types of images, they might not continue after seeing broken image links.
And please, add the "muted" property to all videos? It's fine that they autoplay, but at least start them as muted. Since they all also have the "controls" property, it allows the users to unmute if they want to instead of blaring porn noises whenever a page loads.
Keep up the good work.