    .GameVoid {
        background: radial-gradient(circle, rgba(0, 30, 45, 0.9) 0%, rgba(0, 5, 10, 0.95) 100%) !important;
        border: 1px solid #00e5ff;
        padding: 20px;
        position: relative;
        color: #00e5ff !important;
        font-family: 'Share Tech Mono', monospace !important;
        text-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
        box-shadow: inset 0 0 30px rgba(0, 229, 255, 0.1);
        border-radius: 2px;
        margin: 10px 0;
    }

    /* Эффект старого монитора (сканирующие линии) */
    .GameVoid::before {
        content: " ";
        position: absolute;
        top: 0; left: 0; bottom: 0; right: 0;
        background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                    linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
        background-size: 100% 3px, 3px 100%;
        pointer-events: none;
        z-index: 10;
    }

    /* Декоративные уголки бортового компьютера */
    .hud-corner {
        position: absolute;
        width: 15px; height: 15px;
        border: 2px solid #00e5ff;
        z-index: 5;
    }
    .c-tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
    .c-tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
    .c-bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
    .c-br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

    /* Рамки блоков (будто окна ОС) */
    .v-terminal-block, .game-dossier, .v-quests, .InventoryTerminal {
        border: 1px solid rgba(0, 229, 255, 0.2);
        background: rgba(0, 0, 0, 0.3);
        padding: 10px;
        margin-bottom: 15px;
        position: relative;
    }

    /* Иконки FontAwesome с эффектом свечения */
    .GameVoid i {
        filter: drop-shadow(0 0 3px #00e5ff);
        margin-right: 5px;
    }

    /* Заголовки с "технической информацией" */
    .ui-header-v2 {
        font-size: 12px;
        background: rgba(0, 229, 255, 0.1);
        padding: 3px 10px;
        margin: -10px -10px 10px -10px;
        border-bottom: 1px solid #00e5ff;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .ui-header-v2::after {
        content: "SYS_VER: 4.0.4 // LINK_STABLE";
        font-size: 8px;
        opacity: 0.6;
    }

    /* Слоты предметов в стиле "ячеек памяти" */
    .inv-slot {
        border: 1px double #00e5ff !important;
        background: rgba(0, 229, 255, 0.05) !important;
        position: relative;
    }
    .inv-slot::after {
        content: "";
        position: absolute;
        top: 1px; left: 1px;
        width: 3px; height: 3px;
        background: #00e5ff;
        box-shadow: 0 0 5px #00e5ff;
    }

    /* Анимация мигания (как у старых ПК) */
    @keyframes blink {
        0% { opacity: 1; }
        50% { opacity: 0.7; }
        100% { opacity: 1; }
    }
    .status-online {
        color: #b2ff59;
        animation: blink 2s infinite;
    }

    /* Стилизация полосы прокрутки */
    .q-container::-webkit-scrollbar { width: 5px; }
    .q-container::-webkit-scrollbar-thumb { background: #00e5ff; border-radius: 10px; }
`;

.ui-name {}