html, body {margin: 0;height: 100%;background: #000;display: flex;align-items: center;justify-content: center;overflow: hidden;cursor: pointer;}#imageRevealContainer {position: fixed;inset: 0;margin: 0 !important;padding: 0 !important;border: none !important;background: #000 !important;display: flex;align-items: center;justify-content: center;}#imageRevealContainer > *:not(canvas) {display: none !important;}#imageCanvas {width: 90vh;height: 90vh;max-width: 90vw;max-height: 90vh;display: block;background: #000 !important;border: none !important;}#pixelTextCanvas {position: fixed;top: 50%;left: 50%;transform: translate(-50%, -50%);width: 90vh;max-width: 90vw;height: auto;image-rendering: pixelated;opacity: 1;transition: opacity 20s ease-out, transform 24s ease-out; /* Adjusted transition for quicker hide/show feedback */ z-index: 1000;}#pixelTextCanvas.hidden {opacity: 0;transform: translate(-50%, -50%) scale(0);}#playBtn {display: none;}
