        :root {
            --vcr-blue: #0000bb;
            --vcr-white: #ffffff;
            --vcr-gray: #aaaaaa;
            --vcr-yellow: #ffff00;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="6" viewBox="0 0 6 6"><rect width="4" height="4" fill="white" stroke="black" stroke-width="1"/></svg>'), auto;
        }

        body {
            background-color: var(--vcr-blue);
            color: var(--vcr-white);
            font-family: 'VT323', monospace;
            font-size: 16px;
            letter-spacing: 1px;
            line-height: 1.1;
            height: 100vh;
            overflow: hidden;
            text-transform: uppercase;
            position: relative;
            user-select: none;
        }

        img, div { -webkit-user-drag: none; }

        body.holding-food {
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="%23ffff00"/></svg>') 12 12, auto !important;
        }
        body.holding-food * {
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="%23ffff00"/></svg>') 12 12, auto !important;
        }

        @keyframes vcr-shake-gentle {
            0% { transform: translate(0, 0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(3px, -1px); }
            60% { transform: translate(-2px, -2px); }
            80% { transform: translate(2px, 3px); }
            100% { transform: translate(0, 0); }
        }
        .shaking-gentle {
            animation: vcr-shake-gentle 0.15s infinite;
        }

        @keyframes pop-and-vanish {
            0% { transform: scale(1); opacity: 1; filter: blur(0px); }
            50% { transform: scale(1.3); opacity: 0.7; filter: blur(2px); }
            100% { transform: scale(0); opacity: 0; filter: blur(8px); }
        }
        .popping-out {
            animation: pop-and-vanish 0.3s forwards !important;
            pointer-events: none;
        }

        .brand-header-topright {
            position: absolute;
            top: 30px;
            right: 40px;
            font-size: 2.2rem;
            letter-spacing: 2px;
            z-index: 100;
            text-transform: none;
        }

        .osd-telemetry-bottom {
            position: fixed;
            bottom: 30px;
            right: 40px;
            font-size: 1.1rem;
            text-align: right;
            pointer-events: none;
            line-height: 1.3;
            z-index: 10;
        }

        .vcr-container {
            position: absolute;
            top: 25px;
            left: 40px;
            width: calc(100% - 80px);
            max-width: 300px; /* Wieder schmaler für den Retro-Look */
            z-index: 50;
            display: flex;
            flex-direction: column;
        }

        nav.vcr-menu, .osd-window { width: 100%; }
        .menu-header { margin-bottom: 8px; font-size: 1.3rem; white-space: pre; }
        .menu-list, .window-content { display: flex; flex-direction: column; gap: 3px; }
        
        .menu-wrapper { 
            display: flex; 
            align-items: center; 
            position: relative; 
            padding-left: 20px;
            width: 100%;
        }
        
        .menu-arrow {
            position: absolute;
            left: 0;
            color: var(--vcr-white);
            font-size: 1.15rem;
            opacity: 0;
        }

        .menu-item, .back-vcr-btn, .inline-link-btn, .vcr-reset-btn {
            background: none;
            border: none;
            color: var(--vcr-white);
            font-family: inherit;
            font-size: 1.15rem;
            text-align: left;
            padding: 2px 8px;
            display: block;
            width: 100%;
        }

        .inline-link-btn {
            display: inline;
            width: auto;
            text-decoration: underline;
            padding: 0;
            color: var(--vcr-yellow);
        }
        .inline-link-btn:hover {
            background-color: var(--vcr-white);
            color: var(--vcr-blue) !important;
        }

        .vcr-reset-btn {
            display: inline-block;
            width: auto;
            background: var(--vcr-yellow);
            color: var(--vcr-blue);
            padding: 0px 6px;
            font-size: 0.85rem;
            margin-left: 10px;
            font-weight: bold;
            vertical-align: middle;
            border: 1px solid var(--vcr-white);
        }
        .vcr-reset-btn:hover { background: var(--vcr-white); color: var(--vcr-blue); }

        .menu-wrapper:hover .menu-arrow, 
        .menu-wrapper.selected-vcr .menu-arrow { 
            opacity: 1; 
        }
        .menu-wrapper:hover .menu-item,
        .menu-wrapper:hover .back-vcr-btn,
        .menu-wrapper.selected-vcr .menu-item {
            background-color: var(--vcr-white);
            color: var(--vcr-blue) !important;
        }

        .menu-footer-hints { margin-top: 20px; color: var(--vcr-white); font-size: 0.95rem; line-height: 1.3; }
        
        .osd-window { 
            display: none; 
            max-height: 96vh; 
            overflow: hidden; 
            padding-right: 5px; 
        }
        .osd-window-header { font-size: 1.2rem; border-bottom: 2px dashed var(--vcr-white); padding-bottom: 2px; margin-bottom: 4px; }
        
        .no-scroll-content {
            font-size: 0.95rem;
            text-transform: none;
            line-height: 1.2;
            letter-spacing: 0.2px;
            margin-top: 2px;
        }
        .no-scroll-content p { margin-bottom: 6px; }

        /* Kompakte Styles für Formular (damit es auf eine Seite passt) */
        .compact-form { display: flex; flex-direction: column; gap: 2px; margin-bottom: 2px; overflow: hidden; }
        .compact-form .form-group { display: flex; flex-direction: column; gap: 0px; margin-bottom: 1px;}
        .compact-form .form-group-row { display: flex; gap: 4px; align-items: flex-start; }
        .compact-form .form-group-row input[type="checkbox"] { margin-top: 1px; transform: scale(1.0); min-width: 14px; }
        .compact-form .vcr-label { font-size: 0.85rem; }
        .compact-form .vcr-input, .compact-form .vcr-select, .compact-form .vcr-textarea {
            background: var(--vcr-blue); border: 1px solid var(--vcr-white); color: var(--vcr-white);
            font-family: inherit; font-size: 0.9rem; padding: 1px 2px; text-transform: uppercase; width: 100%;
            -webkit-appearance: none; -moz-appearance: none; appearance: none; border-radius: 0;
        }
        .compact-form .vcr-select {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><polygon points="0,2 10,2 5,8" fill="white"/></svg>');
            background-repeat: no-repeat; background-position: right 4px center; padding-right: 15px;
        }
        .compact-form .vcr-input:focus, .compact-form .vcr-select:focus, .compact-form .vcr-textarea:focus { background-color: var(--vcr-white); color: var(--vcr-blue); outline: none; }
        .compact-form .vcr-textarea { resize: none; min-height: 22px; font-size: 0.9rem; text-transform: none; }
        .compact-form .chk-label { font-size: 0.75rem !important; line-height: 1.0 !important; text-transform:none; }
        
        .vcr-range { -webkit-appearance: none; width: 100%; background: transparent; margin: 1px 0; }
        .vcr-range:focus { outline: none; }
        .vcr-range::-webkit-slider-runnable-track { width: 100%; height: 3px; background: var(--vcr-white); }
        .vcr-range::-webkit-slider-thumb { height: 10px; width: 8px; background: var(--vcr-yellow); -webkit-appearance: none; margin-top: -3px; border: 1px solid #000; }

        .radio-btn-group { display: flex; gap: 10px; margin: 1px 0; }
        .radio-btn-label { display: flex; align-items: center; gap: 3px; font-size: 0.85rem; cursor: pointer; }
        .radio-btn-label input[type="radio"] { transform: scale(1.0); accent-color: var(--vcr-yellow); }

        /* Kompakte Styles für Infos (damit sie auf eine Seite passen) */
        .compact-info p { font-size: 0.8rem; line-height: 1.1; margin-bottom: 4px; text-transform: none;}
        .compact-info strong { color: var(--vcr-white); }
        .vcr-highlight-box {
            border: 1px dashed var(--vcr-yellow); padding: 4px; margin: 4px 0; background: rgba(255, 255, 0, 0.05);
        }
        .vcr-highlight-box p { margin-bottom: 2px !important; color: var(--vcr-yellow); font-size: 0.8rem; text-transform: uppercase;}

        .scrollable-content { 
            max-height: 60vh; 
            overflow-y: auto; 
            padding-right: 15px; 
            margin-top: 4px; 
            font-size: 0.95rem; 
            text-transform: none; 
            line-height: 1.25;
        }
        .scrollable-content p { margin-bottom: 8px; }
        .scrollable-content ul { margin-left: 20px; margin-bottom: 8px; }
        .scrollable-content li { margin-bottom: 3px; }
        .scrollable-content::-webkit-scrollbar { width: 8px; }
        .scrollable-content::-webkit-scrollbar-track { background: var(--vcr-blue); border: 1px dashed var(--vcr-white); }
        .scrollable-content::-webkit-scrollbar-thumb { background: var(--vcr-white); }

        .form-preview-area { display: inline-flex; gap: 4px; align-items: center; margin-top: 1px; flex-wrap: wrap; }
        .preview-wrapper-box { position: relative; width: 30px; height: 30px; border: 1px solid var(--vcr-white); background: #000; }
        .preview-mini-box { width: 100%; height: 100%; object-fit: cover; }
        .preview-del-x { position: absolute; top: -4px; right: -4px; background: var(--vcr-yellow); color: var(--vcr-blue); font-size: 0.6rem; font-weight: bold; line-height: 1; padding: 1px 2px; border: 1px solid var(--vcr-white); cursor: pointer; }

        .submit-btn { background: var(--vcr-white); color: var(--vcr-blue); font-family: inherit; font-size: 1rem; padding: 2px; border: none; margin-top: 2px; width: 100%;}
        .progress-container { display: none; margin-top: 2px; font-size: 1rem; }

        #floating-roh { 
            position: absolute; 
            z-index: 99999; 
            white-space: nowrap; 
            padding: 10px; 
            font-size: 3rem; 
            font-weight: bold; 
            color: var(--vcr-yellow);
            text-transform: lowercase; 
            cursor: grab;
            user-select: none;
            touch-action: none;
        }
        #floating-roh:active { cursor: grabbing; }

        .flying-image { position: absolute; z-index: 100; border: 2px solid var(--vcr-white); max-width: 100px; max-height: 100px; object-fit: cover; background: var(--vcr-blue); transition: transform 0.2s ease; touch-action: none;}

        .finger-ascii { font-family: monospace; white-space: pre; font-size: 1.2rem; line-height: 1.1; margin: 10px 0; color: #ff0055; text-align: center;}
        .chat-terminal { border: 2px solid var(--vcr-white); padding: 8px; background: rgba(0,0,0,0.3); margin-top: 5px; display: none; }
        .chat-history { max-height: 100px; overflow-y: auto; font-size: 1rem; margin-bottom: 6px; color: var(--vcr-gray); text-transform: none;}
        .chat-input { width: 100%; background: transparent; border: none; border-top: 2px dashed var(--vcr-white); color: var(--vcr-white); font-family: inherit; font-size: 1rem; padding-top: 5px; outline: none; }

        #food-zone { position: fixed; bottom: 40px; left: 40px; display: flex; gap: 15px; z-index: 2000; display: none; }
        .food-dot { font-size: 2.2rem; color: var(--vcr-yellow); user-select: none; line-height: 1; cursor: grab; position: relative; }

        .nav-block-bottom { display: flex; flex-direction: column; gap: 1px; margin-top: 2px; }

        .vcr-popup-overlay {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            background: rgba(0, 0, 187, 0.75); z-index: 999999;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
        }
        .vcr-popup-overlay.active { opacity: 1; pointer-events: auto; }
        .vcr-popup-box {
            background: var(--vcr-blue); border: 4px solid var(--vcr-white);
            padding: 20px; width: 380px; max-width: 90%; text-align: center;
            box-shadow: 0 0 20px rgba(0,0,0,0.8);
        }
        .vcr-popup-box h2 { font-size: 1.4rem; color: var(--vcr-yellow); margin-bottom: 10px; border-bottom: 2px dashed var(--vcr-white); padding-bottom: 5px;}
        .vcr-popup-box p { font-size: 0.95rem; text-transform: none; line-height: 1.3; margin-bottom: 15px; letter-spacing: 0.5px;}

        @media (max-width: 600px) {
            .brand-header-topright { top: 20px; right: 20px; font-size: 1.8rem; }
            .vcr-container { top: 90px; left: 20px; width: calc(100% - 40px); }
            .osd-telemetry-bottom { bottom: 20px; right: 20px; font-size: 0.9rem; }
            #floating-roh { font-size: 2.2rem; }
        }