AI slop · Q4_K · click or tap the scene to change the view
# Fontainebleau Voxel Resort Prompt
Create a single self-contained `index.html` featuring a polished, full-screen voxel-style animation of the Fontainebleau Miami Beach.
Make the resort recognizable: the broad curved white Chateau building, taller rounded tower behind it, layered turquoise pools, blue-and-white umbrellas, palms, beach, and Atlantic Ocean.
Present it as a detailed miniature architectural diorama with stepped voxel geometry and warm late-afternoon lighting. Add a slow cinematic camera orbit or parallax, moving water, swaying palms, and subtle poolside activity. Click or tap should visibly change the camera view or lighting.
Use only HTML, CSS, and JavaScript in one file. Do not use external assets, libraries, or network requests. The animation should start automatically, run smoothly for at least 20 seconds, and adapt to desktop and mobile. Keep text minimal and let the scene dominate.
Expose this benchmark API:
```js
window.__BENCH = {
version: "prompt-expansion-v1",
name: "Fontainebleau Voxel Resort",
state: {
frame: 0,
startedAt: performance.now(),
scene: {
buildings: 0,
pools: 0,
palms: 0,
parasols: 0,
cameraAngle: 0,
waterPhase: 0,
motionActive: true
},
interactions: {
cameraChanges: 0
},
errors: []
},
report() {
return this.state;
}
};
```
`frame`, `cameraAngle`, and `waterPhase` must advance with the visible animation. The scene counts must reflect what is actually drawn, and click/tap changes must increment `cameraChanges`. Push caught internal errors into `errors`; do not fake benchmark state.
Return only the complete HTML file. Do not include explanations.