        * { margin: 0; padding: 0; box-sizing: border-box; user-select: none; }
        body { background: #0d0a14; overflow: hidden; height: 100vh; width: 100vw; font-family: 'Courier New', Courier, monospace; color: #00ff00; touch-action: manipulation; }
        
        .crt-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.3) 50%);
            background-size: 100% 4px; z-index: 10; pointer-events: none; opacity: 0.2;
        }

        canvas { display: block; width: 100%; height: 100%; position: fixed; top: 0; left: 0; z-index: 1; }

        .text-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            z-index: 2; display: flex; align-items: center; justify-content: center; padding: 2rem; pointer-events: none;
        }

        .text-scroll { max-height: 85vh; width: 100%; max-width: 800px; overflow-y: auto; pointer-events: auto; scrollbar-width: none; }
        .text-scroll::-webkit-scrollbar { display: none; }
        
        .text-card { background: transparent; padding: 1rem; position: relative; }
        .text-card p {
            margin-bottom: 2rem; line-height: 1.6; font-size: 1.15rem; font-weight: bold;
            text-shadow: 0 0 5px #00ff00, 0 0 10px rgba(0, 255, 0, 0.4); visibility: hidden;
        }

        #cursor {
            display: inline-block; width: 10px; height: 1.2em; background: #00ff00;
            margin-left: 2px; vertical-align: middle; box-shadow: 0 0 8px #00ff00;
            animation: blink 0.8s step-end infinite;
        }

        @keyframes blink { from, to { opacity: 1; } 50% { opacity: 0; } }

        .footer {
            margin-top: 2rem; font-size: 0.9rem; letter-spacing: 2px; font-weight: bold;
            color: #00ff00; text-shadow: 0 0 5px #00ff00; opacity: 0.8; visibility: hidden;
        }
        .footer.corrupted { color: #ff3333 !important; text-shadow: 0 0 10px #ff0000; }

        .continue {
            display: inline-block; margin-top: 1.5rem; font-size: 1.1rem; letter-spacing: 3px; font-weight: bold;
            color: #ffb000; text-shadow: 0 0 8px #ffb000, 0 0 16px rgba(255, 176, 0, 0.4);
            text-decoration: none; cursor: pointer;
            visibility: hidden; animation: pulse 2s ease-in-out infinite;
        }
        .continue .blink {
            display: inline-block; width: 10px; height: 1.2em; background: #ffb000;
            vertical-align: middle; margin-left: 4px; box-shadow: 0 0 8px #ffb000;
            animation: blink 0.8s step-end infinite;
        }
        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
