        body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background-color: #000000;
            font-family: 'Courier New', monospace;
            color: rgba(255, 255, 255, 0.8);
            cursor: crosshair;
        }

        @font-face {
            font-family: 'VT323';
            src: url('https://cdnjs.cloudflare.com/ajax/libs/vt323/0.1.4/VT323-Regular.ttf') format('truetype');
        }

        * {
            font-family: 'VT323', 'Courier New', monospace;
            letter-spacing: 1px;
        }

        #container {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        #terminal {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 1200px;
            height: 85%;
            background-color: rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(150, 220, 255, 0.2),
                        inset 0 0 40px rgba(0, 50, 100, 0.2);
            padding: 20px;
            z-index: 2;
            backdrop-filter: blur(5px);
            overflow: hidden;
        }

        #terminal-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 15px;
            margin-bottom: 20px;
            font-size: 1.8em;
            letter-spacing: 5px;
            text-align: center;
            text-shadow: 0 0 10px rgba(150, 220, 255, 0.5);
            position: relative;
        }

        #terminal-header::before, #terminal-header::after {
            content: "< >";
            font-size: 0.6em;
            opacity: 0.6;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

        #terminal-header::before {
            left: 20px;
        }

        #terminal-header::after {
            right: 20px;
        }

        .content-container {
            height: calc(100% - 100px);
            overflow-y: auto;
            padding-right: 10px;
            scrollbar-width: thin;
            scrollbar-color: rgba(150, 220, 255, 0.3) rgba(0, 0, 0, 0.1);
        }

        .content-container::-webkit-scrollbar {
            width: 6px;
        }

        .content-container::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.1);
        }

        .content-container::-webkit-scrollbar-thumb {
            background-color: rgba(150, 220, 255, 0.3);
            border-radius: 3px;
        }

        .wave-divider {
            height: 30px;
            width: 100%;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(100, 200, 255, 0.1) 20%, 
                rgba(150, 220, 255, 0.2) 50%,
                rgba(100, 200, 255, 0.1) 80%,
                transparent 100%);
            margin: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .wave-divider::before {
            content: "";
            position: absolute;
            width: 200%;
            height: 100%;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 20px,
                rgba(255, 255, 255, 0.1) 20px,
                rgba(255, 255, 255, 0.1) 40px
            );
            animation: wave 8s linear infinite;
        }

        @keyframes wave {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .section {
            margin: 20px 0;
            padding: 15px;
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: 5px;
            box-shadow: 0 0 15px rgba(0, 20, 40, 0.4);
            border-left: 3px solid rgba(150, 220, 255, 0.2);
        }

        .section-title {
            color: rgba(200, 240, 255, 0.9);
            margin-bottom: 15px;
            font-weight: normal;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            text-shadow: 0 0 8px rgba(150, 220, 255, 0.4);
        }

        .section-title::before {
            content: "//";
            color: rgba(150, 220, 255, 0.6);
            margin-right: 10px;
        }

        .section-title::after {
            content: "";
            flex-grow: 1;
            height: 1px;
            background: linear-gradient(90deg, 
                rgba(150, 220, 255, 0.3) 0%, 
                transparent 100%);
            margin-left: 15px;
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
        }

        .floating-item {
            display: inline-block;
            margin: 8px;
            padding: 12px 15px;
            background-color: rgba(20, 20, 25, 0.8);
            border: 1px solid rgba(150, 220, 255, 0.2);
            border-radius: 4px;
            box-shadow: 0 0 10px rgba(150, 220, 255, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .floating-item:hover {
            background-color: rgba(30, 30, 40, 0.9);
            box-shadow: 0 0 15px rgba(150, 220, 255, 0.3);
            transform: translateY(-2px);
        }

        .floating-item:hover .item-text {
            animation: dissolve 1.5s forwards;
        }

        .floating-item:active {
            transform: translateY(1px);
            box-shadow: 0 0 5px rgba(150, 220, 255, 0.2);
        }

        @keyframes dissolve {
            0% { opacity: 1; }
            20% { opacity: 0; }
            40% { opacity: 0; }
            100% { opacity: 1; }
        }

        .binary {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            font-size: 0.8em;
            color: rgba(150, 220, 255, 0.8);
        }

        .floating-item:hover .binary {
            animation: show-binary 1.5s forwards;
        }

        @keyframes show-binary {
            0% { opacity: 0; }
            20% { opacity: 0; }
            40% { opacity: 1; }
            80% { opacity: 1; }
            100% { opacity: 0; }
        }

        .status-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 10px 20px;
            font-size: 0.9em;
            background-color: rgba(10, 10, 15, 0.8);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            box-sizing: border-box;
        }

        .blinking-cursor {
            animation: blink 1s step-end infinite;
        }

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

        .status-indicators {
            display: flex;
            justify-content: space-between;
            margin-right: 150px;
        }

        .status-indicator {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 6px;
        }

        .status-dot.green {
            background-color: rgba(100, 255, 150, 0.8);
            box-shadow: 0 0 5px rgba(100, 255, 150, 0.5);
        }

        .status-dot.amber {
            background-color: rgba(255, 200, 0, 0.8);
            box-shadow: 0 0 5px rgba(255, 200, 0, 0.5);
        }

        .status-dot.red {
            background-color: rgba(255, 100, 100, 0.8);
            box-shadow: 0 0 5px rgba(255, 100, 100, 0.5);
        }

        .status-dot.pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.8; }
            100% { transform: scale(1); opacity: 1; }
        }

        #time {
            float: right;
        }

        canvas {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 0;
        }

        .metric-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding: 8px;
            background-color: rgba(30, 30, 40, 0.5);
            border-radius: 3px;
            position: relative;
            overflow: hidden;
        }

        .metric-label {
            z-index: 1;
        }

        .metric-value {
            color: rgba(150, 220, 255, 0.9);
            font-weight: bold;
            z-index: 1;
        }

        .progress-bar {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            background: linear-gradient(90deg, 
                rgba(100, 200, 255, 0.1) 0%, 
                rgba(100, 200, 255, 0.2) 100%);
            z-index: 0;
            transition: width 1s ease;
        }

        .data-display {
            font-family: monospace;
            white-space: pre-wrap;
            font-size: 0.85em;
            padding: 10px;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 4px;
            border: 1px solid rgba(100, 180, 255, 0.2);
            height: 120px;
            overflow-y: auto;
            color: rgba(180, 230, 255, 0.8);
        }

        .console-line {
            margin: 3px 0;
            opacity: 0;
            animation: fade-in 0.2s forwards;
        }

        @keyframes fade-in {
            from { opacity: 0; transform: translateY(5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .visualization {
            height: 180px;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 4px;
            border: 1px solid rgba(100, 180, 255, 0.2);
            margin-top: 15px;
            position: relative;
            overflow: hidden;
        }

        .node {
            position: absolute;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(150, 220, 255, 0.7);
            box-shadow: 0 0 8px rgba(150, 220, 255, 0.5);
            transform: translate(-50%, -50%);
        }

        .node::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200%;
            height: 200%;
            border-radius: 50%;
            background-color: rgba(150, 220, 255, 0.1);
            transform: translate(-50%, -50%);
            animation: pulse-ring 3s infinite;
        }

        @keyframes pulse-ring {
            0% { width: 100%; height: 100%; opacity: 0.5; }
            100% { width: 300%; height: 300%; opacity: 0; }
        }

        .connection {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, 
                rgba(150, 220, 255, 0.1), 
                rgba(150, 220, 255, 0.5),
                rgba(150, 220, 255, 0.1));
            transform-origin: 0 0;
            z-index: 0;
        }

        .data-packet {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 5px rgba(150, 220, 255, 0.8);
            transform: translate(-50%, -50%);
            z-index: 1;
        }
        
        @keyframes packet-motion {
            0% {
                transform: translate(-50%, -50%) translateX(0) translateY(0);
            }
            100% {
                transform: translate(-50%, -50%) translateX(var(--dx)) translateY(var(--dy));
            }
        }

        .grid-3col {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .chart-container {
            height: 150px;
            position: relative;
            margin-top: 10px;
        }

        .chart-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            fill: none;
            stroke: rgba(150, 220, 255, 0.6);
            stroke-width: 2;
        }

        .chart-area {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            fill: url(#chart-gradient);
        }

        .chart-dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            box-shadow: 0 0 5px rgba(150, 220, 255, 0.5);
            transform: translate(-50%, -50%);
        }

        .chart-x-axis {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: rgba(150, 220, 255, 0.3);
        }

        .chart-y-axis {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 1px;
            height: 100%;
            background-color: rgba(150, 220, 255, 0.3);
        }

        .chart-label {
            position: absolute;
            font-size: 0.7em;
            color: rgba(150, 220, 255, 0.6);
        }

        .ascii-art {
            font-size: 0.7em;
            line-height: 1.2;
            white-space: pre;
            color: rgba(150, 220, 255, 0.8);
            text-align: center;
            margin: 10px 0;
            text-shadow: 0 0 5px rgba(150, 220, 255, 0.3);
        }

        .tabs {
            display: flex;
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(150, 220, 255, 0.2);
        }

        .tab {
            padding: 8px 15px;
            cursor: pointer;
            background-color: rgba(0, 0, 0, 0.3);
            color: rgba(150, 220, 255, 0.6);
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
            margin-right: 5px;
            transition: all 0.3s ease;
        }

        .tab.active {
            background-color: rgba(30, 50, 70, 0.5);
            color: rgba(150, 220, 255, 0.9);
            box-shadow: 0 -2px 5px rgba(0, 20, 40, 0.3);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fade-in 0.3s forwards;
        }

        .hexmap {
            display: grid;
            grid-template-columns: repeat(10, 30px);
            grid-gap: 2px;
            justify-content: center;
            margin-top: 15px;
        }

        .hex-cell {
            width: 30px;
            height: 30px;
            background-color: rgba(20, 30, 50, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7em;
            color: rgba(150, 220, 255, 0.7);
            position: relative;
            transition: all 0.3s ease;
        }

        .hex-cell:hover {
            background-color: rgba(40, 80, 120, 0.5);
            color: rgba(255, 255, 255, 0.9);
            transform: scale(1.1);
            z-index: 1;
        }

        .hex-cell::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 1px solid rgba(150, 220, 255, 0.2);
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
            background-color: rgba(30, 50, 80, 0.3);
            z-index: -1;
        }

        .hex-cell.active {
            background-color: rgba(50, 100, 150, 0.4);
            animation: hex-pulse 2s infinite;
        }

        @keyframes hex-pulse {
            0%, 100% { box-shadow: 0 0 5px rgba(150, 220, 255, 0.5); }
            50% { box-shadow: 0 0 15px rgba(150, 220, 255, 0.8); }
        }

        .alert {
            background-color: rgba(255, 100, 100, 0.1);
            border-left: 3px solid rgba(255, 100, 100, 0.5);
            padding: 8px 12px;
            margin: 10px 0;
            position: relative;
            animation: alert-pulse 2s infinite;
        }

        @keyframes alert-pulse {
            0%, 100% { background-color: rgba(255, 100, 100, 0.1); }
            50% { background-color: rgba(255, 100, 100, 0.2); }
        }

        .alert::before {
            content: "!";
            display: inline-block;
            width: 20px;
            height: 20px;
            background-color: rgba(255, 100, 100, 0.8);
            color: #000;
            border-radius: 50%;
            text-align: center;
            line-height: 20px;
            margin-right: 10px;
            font-weight: bold;
        }

        .notification {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: rgba(0, 20, 40, 0.8);
            border: 1px solid rgba(150, 220, 255, 0.4);
            border-radius: 5px;
            padding: 15px;
            width: 300px;
            box-shadow: 0 0 20px rgba(0, 10, 20, 0.6);
            z-index: 100;
            transform: translateX(400px);
            opacity: 0;
        }

        .notification.show {
            animation: slide-in 0.5s forwards, slide-out 0.5s forwards 5s;
        }

        @keyframes slide-in {
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slide-out {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(400px); opacity: 0; }
        }

        .notification-title {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            color: rgba(150, 220, 255, 0.9);
        }

        .notification-title::before {
            content: "";
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: rgba(150, 220, 255, 0.8);
            border-radius: 50%;
            margin-right: 10px;
            animation: pulse 1.5s infinite;
        }

        .notification-message {
            font-size: 0.9em;
        }

        .reflection {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.05) 0%, 
                transparent 40%, 
                transparent 60%, 
                rgba(255, 255, 255, 0.05) 100%);
            pointer-events: none;
        }

        .data-stream {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0.3;
        }

        .stream-column {
            position: absolute;
            top: -20%;
            font-family: monospace;
            color: rgba(150, 220, 255, 0.7);
            font-size: 10px;
            line-height: 1;
            white-space: nowrap;
            animation-name: stream-flow;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        @keyframes stream-flow {
            0% { transform: translateY(0); }
            100% { transform: translateY(calc(120vh)); }
        }

        .glitch {
            position: relative;
        }

        .glitch::before, .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: black;
        }

        .glitch::before {
            left: 2px;
            text-shadow: -1px 0 rgba(255, 0, 0, 0.7);
            animation: glitch-animation 2s infinite linear alternate-reverse;
        }

        .glitch::after {
            left: -2px;
            text-shadow: 1px 0 rgba(0, 0, 255, 0.7);
            animation: glitch-animation 3s infinite linear alternate-reverse;
        }

        @keyframes glitch-animation {
            0% { clip-path: inset(45% 0 37% 0); }
            5% { clip-path: inset(33% 0 25% 0); }
            10% { clip-path: inset(14% 0 4% 0); }
            15% { clip-path: inset(53% 0 74% 0); }
            20% { clip-path: inset(86% 0 83% 0); }
            25% { clip-path: inset(14% 0 27% 0); }
            30% { clip-path: inset(2% 0 87% 0); }
            35% { clip-path: inset(52% 0 9% 0); }
            40% { clip-path: inset(25% 0 53% 0); }
            45% { clip-path: inset(65% 0 92% 0); }
            50% { clip-path: inset(47% 0 46% 0); }
            55% { clip-path: inset(95% 0 37% 0); }
            60% { clip-path: inset(23% 0 14% 0); }
            65% { clip-path: inset(58% 0 53% 0); }
            70% { clip-path: inset(27% 0 40% 0); }
            75% { clip-path: inset(73% 0 5% 0); }
            80% { clip-path: inset(43% 0 96% 0); }
            85% { clip-path: inset(81% 0 93% 0); }
            90% { clip-path: inset(29% 0 47% 0); }
            95% { clip-path: inset(54% 0 18% 0); }
            100% { clip-path: inset(9% 0 79% 0); }
        }