@font-face {
    font-family: 'LCD';
    src: url('../fonts/LCD/LCD Normal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'LCD';
    src: url('../fonts/LCD/LCD Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@keyframes ap-blink {

            0% {

                opacity: 0.2;

            }



            100% {

                opacity: 1.0;

            }

        }



        :root {

            --bg-color: #030308;

            --panel-bg: rgba(10, 10, 20, 0.6);

            --panel-border: rgba(255, 255, 255, 0.1);

            --text-color: #f0f0f5;

            --accent-color: #3b82f6;

            --accent-glow: rgba(59, 130, 246, 0.5);

        }



        * {

            box-sizing: border-box;

            margin: 0;

            padding: 0;

            user-select: none;

        }



        body,

        html {

            width: 100%;

            height: 100%;

            overflow: hidden;

            background-color: var(--bg-color);

            font-family: 'VT323', monospace;

            color: var(--text-color);

            font-size: 16px;

        }



        #canvasZone {

            width: 100%;

            height: 100%;

            position: absolute;

            top: 0;

            left: 0;

        }



        #renderCanvas {

            width: 100%;

            height: 100%;

            touch-action: none;

            display: block;

        }



        #hudCanvas {

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            pointer-events: none;

            display: block;

            z-index: 5;

        }



        /* Retro Double Border Control Panel */

        .ui-panel {

            position: absolute;

            top: 20px;

            left: 20px;

            z-index: 10;

            background: var(--panel-bg);

            border: 3px double var(--text-color);

            border-radius: 0px;

            padding: 12px 14px;

            width: 230px;

            box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.9);

            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        }



        #uiPanelContent {

            max-height: 280px;

            overflow-y: auto;

            padding-right: 4px;

        }



        /* Styled scrollbar for uiPanelContent to match debugLog */

        #uiPanelContent::-webkit-scrollbar {

            width: 8px;

        }



        #uiPanelContent::-webkit-scrollbar-track {

            background: rgba(0, 0, 0, 0.2);

            border-left: 1px solid var(--text-color);

        }



        #uiPanelContent::-webkit-scrollbar-thumb {

            background: var(--text-color);

        }



        h1 {

            font-family: 'Press Start 2P', monospace;

            font-size: 8px;

            font-weight: 800;

            margin-bottom: 4px;

            color: var(--text-color);

            text-transform: uppercase;

            line-height: 1.2;

        }



        .subtitle {

            font-family: 'VT323', monospace;

            font-size: 12px;

            color: var(--text-color);

            opacity: 0.75;

            margin-bottom: 8px;

            text-transform: uppercase;

            letter-spacing: 0.5px;

        }



        .control-group {

            margin-bottom: 10px;

        }



        .control-group:last-child {

            margin-bottom: 0;

        }



        label {

            display: flex;

            justify-content: space-between;

            font-family: 'VT323', monospace;

            font-size: 14px;

            color: var(--text-color);

            margin-bottom: 2px;

            font-weight: 400;

            letter-spacing: 0.5px;

        }



        label span {

            color: var(--accent-color);

            font-weight: bold;

        }



        /* Retro Blocky Custom Slider */

        input[type="range"] {

            -webkit-appearance: none;

            width: 100%;

            height: 8px;

            background: rgba(0, 0, 0, 0.4);

            border: 1px solid var(--text-color);

            border-radius: 0px;

            outline: none;

        }



        input[type="range"]::-webkit-slider-thumb {

            -webkit-appearance: none;

            appearance: none;

            width: 10px;

            height: 14px;

            border-radius: 0px;

            background: var(--text-color);

            cursor: pointer;

            border: 1px solid var(--bg-color);

            transition: background-color 0.1s;

        }



        input[type="range"]::-webkit-slider-thumb:hover {

            background: var(--accent-color);

        }



        /* Toggle Buttons */

        .btn-toggle {

            display: flex;

            align-items: center;

            justify-content: space-between;

            width: 100%;

            background: rgba(0, 0, 0, 0.4);

            border: 1px solid var(--text-color);

            padding: 6px 10px;

            border-radius: 0px;

            color: var(--text-color);

            font-family: inherit;

            font-size: 13px;

            cursor: pointer;

            transition: all 0.1s ease;

        }



        .btn-toggle:hover {

            background: rgba(255, 255, 255, 0.1);

        }



        .btn-toggle.active {

            background: var(--text-color);

            color: var(--bg-color);

            border-color: var(--text-color);

        }



        .toggle-indicator {

            width: 8px;

            height: 8px;

            border-radius: 0px;

            border: 1px solid var(--text-color);

            background: transparent;

        }



        .active .toggle-indicator {

            background: var(--bg-color);

            border-color: var(--bg-color);

        }



        /* Retro Dropdown Select */

        select {

            width: 100%;

            background: rgba(0, 0, 0, 0.4);

            border: 1px solid var(--text-color);

            color: var(--text-color);

            padding: 5px 8px;

            border-radius: 0px;

            font-family: 'VT323', monospace;

            font-size: 14px;

            outline: none;

            cursor: pointer;

            -webkit-appearance: none;

            appearance: none;

            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 8px center;

            padding-right: 24px;

        }



        select:hover {

            background-color: rgba(255, 255, 255, 0.1);

        }



        select option {

            background-color: var(--bg-color);

            color: var(--text-color);

        }





        @keyframes pulse {



            0%,

            100% {

                opacity: 1;

            }



            50% {

                opacity: 0.3;

            }

        }



        /* Debug Log Screen Overlay */

        #debugLog {

            position: fixed;

            bottom: 20px;

            left: 20px;

            z-index: 9999;

            background: var(--panel-bg);

            color: var(--text-color);

            border-radius: 0px;

            border: 3px double var(--text-color);

            line-height: 1.4;

            box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.9);

            width: 230px;

            display: flex;

            flex-direction: column;

            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        }



        #debugLogHeader {

            display: flex;

            justify-content: space-between;

            align-items: center;

            background: rgba(0, 0, 0, 0.3);

            padding: 6px 10px;

            border-bottom: 2px solid var(--text-color);

            border-radius: 0px;

            cursor: move;

            user-select: none;

        }



        #debugLogHeader strong {

            font-family: 'Press Start 2P', monospace;

            font-size: 8px;

            letter-spacing: 0.5px;

        }



        #debugCollapseBtn {

            background: none;

            border: none;

            color: var(--text-color);

            font-family: 'Press Start 2P', monospace;

            font-size: 8px;

            cursor: pointer;

            padding: 2px 4px;

            display: flex;

            align-items: center;

            font-weight: bold;

            outline: none;

        }



        #debugLogContent {

            padding: 8px 10px;

            font-family: 'VT323', monospace;

            font-size: 13px;

            max-height: 150px;

            overflow-y: auto;

        }



        /* Custom Scrollbar for Retro feeling */

        #debugLogContent::-webkit-scrollbar {

            width: 8px;

        }



        #debugLogContent::-webkit-scrollbar-track {

            background: rgba(0, 0, 0, 0.2);

            border-left: 1px solid var(--text-color);

        }



        #debugLogContent::-webkit-scrollbar-thumb {

            background: var(--text-color);

        }



        /* Responsive styling */

        @media (max-width: 480px) {

            .info-panel {

                display: none;

            }

        }



        /* ── TOP MENU BAR ── */

        #topMenuBar {

            position: fixed;

            top: 0;

            left: 0;

            right: 0;

            height: 26px;

            z-index: 1000;

            background: var(--panel-bg);

            border-bottom: 1px solid var(--text-color);

            display: flex;

            align-items: center;

            padding: 0 8px;

            gap: 0;

            backdrop-filter: blur(4px);

            pointer-events: all;

        }



        .tmb-brand {

            font-family: 'Press Start 2P', monospace;

            font-size: 7px;

            color: var(--text-color);

            opacity: 0.7;

            padding: 0 12px 0 4px;

            white-space: nowrap;

            border-right: 1px solid var(--text-color);

            margin-right: 4px;

            letter-spacing: 1px;

        }



        .tmb-items {

            display: flex;

            align-items: stretch;

            height: 100%;

            gap: 0;

        }



        .tmb-item {

            position: relative;

            font-family: 'Press Start 2P', monospace;

            font-size: 7px;

            color: var(--text-color);

            padding: 0 10px;

            cursor: pointer;

            display: flex;

            align-items: center;

            white-space: nowrap;

            border-right: 1px solid rgba(255, 255, 255, 0.08);

            user-select: none;

        }



        .tmb-item:hover {

            background: rgba(255, 255, 255, 0.08);

        }



        .tmb-item.open {

            background: rgba(255, 255, 255, 0.12);

        }



        .tmb-dropdown {

            display: none;

            position: absolute;

            top: 26px;

            left: 0;

            min-width: 180px;

            background: var(--panel-bg);

            border: 1px solid var(--text-color);

            border-top: none;

            z-index: 1001;

            padding: 4px 0;

            backdrop-filter: blur(8px);

            box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.8);

            max-height: calc(100vh - 30px);

            overflow-y: auto;

        }



        .tmb-item.open .tmb-dropdown {

            display: block;

        }



        .tmb-section {

            font-family: 'Press Start 2P', monospace;

            font-size: 6px;

            color: var(--text-color);

            opacity: 0.5;

            padding: 6px 10px 3px 10px;

            text-transform: uppercase;

            letter-spacing: 0.5px;

            border-top: 1px solid rgba(255, 255, 255, 0.1);

            margin-top: 2px;

        }



        .tmb-section:first-child {

            border-top: none;

            margin-top: 0;

        }



        .tmb-btn {

            display: flex;

            align-items: center;

            justify-content: space-between;

            width: 100%;

            background: transparent;

            border: none;

            color: var(--text-color);

            font-family: 'VT323', monospace;

            font-size: 15px;

            padding: 3px 10px;

            cursor: pointer;

            text-align: left;

            white-space: nowrap;

        }



        .tmb-btn:hover {

            background: rgba(255, 255, 255, 0.1);

        }



        .tmb-btn.active::after {

            content: '●';

            font-size: 10px;

            opacity: 0.8;

        }



        .tmb-submenu-wrap {

            position: relative;

        }



        .tmb-submenu-head {

            width: 100%;

            justify-content: space-between;

        }



        .tmb-submenu {

            display: none;

            background: rgba(0, 0, 0, 0.7);

            border-left: 2px solid var(--text-color);

            margin-left: 8px;

        }



        .tmb-submenu.open {

            display: block;

        }



        .tmb-sub-opt {

            width: 100%;

            font-family: 'VT323', monospace;

            font-size: 13px;

            padding: 3px 12px;

        }



        .tmb-sub-opt::after {

            content: none !important;

        }



        .tmb-row {

            display: flex;

            align-items: center;

            gap: 6px;

            padding: 3px 10px;

            font-family: 'VT323', monospace;

            font-size: 14px;

            color: var(--text-color);

        }



        .tmb-row input[type=range] {

            width: 80px;

            height: 6px;

        }



        .tmb-select-row {

            padding: 3px 10px;

        }



        .tmb-select-row select {

            width: 100%;

            background: rgba(0, 0, 0, 0.5);

            border: 1px solid var(--text-color);

            color: var(--text-color);

            font-family: 'VT323', monospace;

            font-size: 14px;

            padding: 2px 4px;

        }



        /* ── CONTROLS MENU ── */

        .ctrl-panel {

            padding: 4px 0;

            min-width: 280px;

        }



        .ctrl-section {

            font-family: 'Press Start 2P', monospace;

            font-size: 7px;

            color: var(--accent-color);

            padding: 6px 10px 3px;

            border-top: 1px solid var(--text-color);

            margin-top: 4px;

            opacity: 0.8;

        }



        .ctrl-section:first-child {

            border-top: none;

            margin-top: 0;

        }



        .ctrl-row {

            display: flex;

            align-items: center;

            justify-content: space-between;

            padding: 2px 10px;

            gap: 8px;

        }



        .ctrl-label {

            font-family: 'VT323', monospace;

            font-size: 14px;

            color: var(--text-color);

            flex: 1;

            white-space: nowrap;

        }



        .ctrl-key-btn {

            font-family: 'Press Start 2P', monospace;

            font-size: 7px;

            color: var(--bg-color);

            background: var(--text-color);

            border: 1px solid var(--accent-color);

            padding: 2px 6px;

            cursor: pointer;

            min-width: 44px;

            text-align: center;

            white-space: nowrap;

            transition: background 0.1s;

        }



        .ctrl-key-btn:hover {

            background: var(--accent-color);

            color: var(--bg-color);

        }



        .ctrl-key-btn.capturing {

            background: var(--accent-color);

            color: var(--bg-color);

            animation: ctrl-blink 0.4s infinite;

        }



        @keyframes ctrl-blink {



            0%,

            100% {

                opacity: 1

            }



            50% {

                opacity: 0.3

            }

        }



        .ctrl-sens-row {

            display: flex;

            align-items: center;

            gap: 6px;

            padding: 4px 10px;

            font-family: 'VT323', monospace;

            font-size: 14px;

            color: var(--text-color);

        }



        .ctrl-sens-row input[type=range] {

            width: 90px;

            height: 6px;

        }



        /* overheat flash on eng temp bar */

        @keyframes overheat-flash {



            0%,

            100% {

                opacity: 1

            }



            50% {

                opacity: 0.2

            }

        }



        .eng-overheat-bar {

            animation: overheat-flash 0.5s infinite;

        }



        /* ── HUD WINDOWS ── */

        .hud-window {

            position: fixed;

            background: var(--panel-bg);

            border: 1px solid var(--text-color);

            box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.9);

            pointer-events: all;

            min-width: 160px;

            z-index: 60;

            user-select: none;

            display: flex;

            flex-direction: column;

            box-sizing: border-box;

        }



        .hud-win-header {

            display: flex;

            justify-content: space-between;

            align-items: center;

            padding: 3px 6px;

            background: rgba(0, 0, 0, 0.3);

            border-bottom: 1px solid var(--text-color);

            cursor: move;

            font-family: 'Press Start 2P', monospace;

            font-size: 6px;

            color: var(--text-color);

            letter-spacing: 0.5px;

            box-sizing: border-box;

        }



        .hud-win-close {

            background: none;

            border: none;

            color: var(--text-color);

            font-family: 'Press Start 2P', monospace;

            font-size: 6px;

            cursor: pointer;

            padding: 1px 3px;

            opacity: 0.6;

            line-height: 1;

        }



        .hud-win-close:hover {

            opacity: 1;

            background: rgba(255, 255, 255, 0.1);

        }



        .hud-win-body {

            padding: 6px 8px;

            font-family: 'VT323', monospace;

            font-size: 15px;

            color: var(--text-color);

            flex: 1;

            box-sizing: border-box;

            overflow: hidden;

        }



        .hud-bar-track {

            position: relative;

            width: 100%;

            height: 36px;

            border: 1px solid var(--text-color);

            margin: 4px 0;

            background: rgba(0, 0, 0, 0.3);

        }



        .hud-bar-fill {

            height: 100%;

            background: var(--accent-color);

            transition: width 0.1s;

        }



        .hud-bar-label {

            font-family: 'VT323', monospace;

            font-size: 13px;

            color: var(--text-color);

            text-align: right;

            margin-top: 1px;

            opacity: 0.9;

        }



        /* ruler ticks on bar */

        .hud-ruler {

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            bottom: 0;

            pointer-events: none;

        }



        .hud-ruler-tick {

            position: absolute;

            top: 0;

            transform: translateX(-50%);

            border-left: 1px solid var(--text-color);

            height: 5px;

            opacity: 0.5;

        }



        .hud-ruler-tick span {

            position: absolute;

            top: 6px;

            left: 50%;

            transform: translateX(-50%);

            font-family: 'VT323', monospace;

            font-size: 8px;

            color: var(--text-color);

            white-space: nowrap;

            opacity: 0.7;

        }



        .hud-ruler-tick:first-child {

            transform: none;

        }



        .hud-ruler-tick:last-child {

            transform: translateX(-100%);

        }



        .hud-val-big {

            font-family: 'VT323', monospace;

            font-size: 28px;

            color: var(--accent-color);

            text-align: center;

            line-height: 1;

        }



        .hud-led {

            display: inline-block;

            width: 7px;

            height: 7px;

            border: 1px solid var(--text-color);

            border-radius: 0;

            margin-right: 4px;

            vertical-align: middle;

        }



        .hud-led.on {

            background: var(--accent-color);

            box-shadow: 0 0 4px var(--accent-color);

        }



        .hud-toggle-btn {

            width: 100%;

            background: rgba(0, 0, 0, 0.4);

            border: 1px solid var(--text-color);

            color: var(--text-color);

            font-family: 'VT323', monospace;

            font-size: 16px;

            padding: 4px 8px;

            cursor: pointer;

            text-align: left;

            display: flex;

            align-items: center;

            justify-content: space-between;

        }



        .hud-toggle-btn.on {

            background: var(--text-color);

            color: var(--bg-color);

        }



        .hud-toggle-btn.active {

            background: var(--text-color);

            color: var(--bg-color);

        }



        .hud-win-key {

            opacity: 0.5;

            margin-right: 3px;

        }



        #wRadar .hud-win-body {

            padding: 2px;

            height: calc(100% - 22px);

            display: flex;

            align-items: center;

            justify-content: center;

        }



        #wRadar .hud-win-body canvas {

            /* quadrado perfeito baseado na menor dimensão */

            width: calc(100% - 4px) !important;

            height: calc(100% - 4px) !important;

            max-width: calc(100% - 4px);

            max-height: calc(100% - 4px);

            aspect-ratio: 1 / 1;

            display: block;

        }



        #splashScreen {

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: #000;

            z-index: 99999;

            display: flex;

            flex-direction: column;

            align-items: center;

            justify-content: center;

            gap: 0px;

            cursor: pointer;

            overflow: hidden;

        }



        #splashIllus {

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            display: block;

            image-rendering: pixelated;

            image-rendering: crisp-edges;

        }



        #splashCanvas {

            position: relative;

            z-index: 1;

            image-rendering: pixelated;

            image-rendering: crisp-edges;

        }



        #splashStart {

            position: relative;

            z-index: 1;

            font-family: 'Press Start 2P', monospace;

            font-size: 11px;

            color: #00ff00;

            letter-spacing: 3px;

            animation: splashBlink 1s step-end infinite;

            margin-top: 15px;

        }



        #splashCopyright {

            position: absolute;

            bottom: 25px;

            font-family: 'Press Start 2P', monospace;

            font-size: 18px;

            color: rgba(0, 255, 0, 0.45);

            letter-spacing: 2px;

            z-index: 1;

        }

        #splashLoading {

            display: none;

            position: absolute;

            bottom: 70px;

            left: 50%;

            transform: translateX(-50%);

            flex-direction: column;

            align-items: center;

            gap: 6px;

            z-index: 2;

        }

        #splashLoadingText {

            font-family: 'Press Start 2P', monospace;

            font-size: 10px;

            color: #00ff00;

            letter-spacing: 3px;

            animation: pulse 0.5s steps(2) infinite;

        }

        #splashLoadingBar {

            width: 200px;

            height: 12px;

            border: 2px solid #00ff00;

            padding: 2px;

            background: rgba(0,255,0,0.05);

            box-sizing: border-box;

        }

        #splashLoadingFill {

            height: 100%;

            width: 0%;

            background: #00ff00;

            transition: width 0.3s linear;

        }

        #splashLoadingPct {

            font-family: 'VT323', monospace;

            font-size: 14px;

            color: #00ff00;

            opacity: 0.8;

        }



        @keyframes splashBlink {



            0%,

            100% {

                opacity: 1;

            }



            50% {

                opacity: 0;

            }

        }

        /* RETRO LCD PANELS */
        .retro-lcd-container {
            position: relative;
            background: #040d06;
            border: 1px solid #0a5a2a;
            border-radius: 3px;
            box-shadow: inset 0 0 14px rgba(0, 255, 102, 0.13), inset 0 0 4px rgba(0, 0, 0, 0.9);
            padding: 6px 10px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-sizing: border-box;
        }

        .retro-lcd-label {
            font-family: 'Press Start 2P', monospace;
            font-size: 5px;
            letter-spacing: 1.5px;
            color: #2e7a4a;
            margin-bottom: 2px;
            text-transform: uppercase;
        }

        .retro-lcd-text-wrapper {
            position: relative;
            font-family: 'LCD', monospace;
            font-size: 21px;
            line-height: 1.0;
            letter-spacing: 1px;
            white-space: nowrap;
            height: 21px;
        }

        .retro-lcd-text-wrapper.small {
            font-size: 13px;
            height: 13px;
        }

        .retro-lcd-ghost {
            color: #0d2714;
            user-select: none;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .retro-lcd-active {
            color: #00ff88;
            text-shadow: 0 0 8px rgba(0, 255, 136, 0.45);
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
        }

        .retro-lcd-bar-track {

            background: #092010;

            height: 8px;

            border-radius: 1px;

            margin-top: 5px;

            overflow: hidden;

            position: relative;

        }



        .retro-lcd-bar-fill {

            background: #00ff88;

            box-shadow: 0 0 6px #00ff88bb;

            height: 100%;

        }



        /* ── RETRO SLIDING SWITCH ── */

        .retro-switch-container {

            display: flex;

            align-items: center;

            justify-content: space-between;

            width: 100%;

            margin-bottom: 4px;

            font-family: 'Press Start 2P', monospace;

            font-size: 6px;

            color: var(--text-color);

            box-sizing: border-box;

        }

        .retro-switch {

            position: relative;

            width: 42px;

            height: 16px;

            background: #020703;

            border: 1px solid var(--text-color);

            cursor: pointer;

            box-sizing: border-box;

            transition: background 0.2s;

            display: inline-block;

        }

        .retro-switch::before {

            content: "OFF";

            position: absolute;

            right: 4px;

            top: 50%;

            transform: translateY(-50%);

            font-family: 'Press Start 2P', monospace;

            font-size: 5px;

            color: #ff2200;

            pointer-events: none;

        }

        .retro-switch.on {

            background: #041a08;

        }

        .retro-switch.on::before {

            content: "ON";

            left: 4px;

            right: auto;

            color: #00ff88;

        }

        .retro-switch-knob {

            position: absolute;

            left: 1px;

            top: 1px;

            width: 16px;

            height: 12px;

            background: var(--text-color);

            box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #888;

            transition: transform 0.15s ease-in-out;

            pointer-events: none;

        }

        .retro-switch.on .retro-switch-knob {

            transform: translateX(22px);

        }



        /* ── SHRUNK LCD FONTS (25% SMALLER) ── */

        .retro-lcd-text-wrapper.shrink {

            font-size: 16px;

            height: 16px;

        }

        .retro-lcd-label.shrink {

            font-size: 4px;

        }



        /* ── RETRO CRT/LCD MONITOR OVERLAYS (Radar & Target Vision) ── */

        #wRadar-body, #wTargetVision-body {

            padding: 0 !important;

            background: #020703 !important;

            position: relative !important;

            overflow: hidden !important;

        }

        #wRadar-body::after, #wTargetVision-body::after {

            content: " ";

            display: block;

            position: absolute;

            top: 0; left: 0; bottom: 0; right: 0;

            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.04), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.04));

            background-size: 100% 3px, 3px 100%;

            pointer-events: none;

            z-index: 10;

        }

        #radarCanvas, #tvCanvas {

            box-sizing: border-box !important;

            border: 2px solid #0a5a2a !important;

            box-shadow: inset 0 0 16px rgba(0, 255, 102, 0.15) !important;

            background: #020703 !important;

        }
