        /* JGS Font Family */
        @font-face {
            font-family: 'JGS';
            src: url('../fonts/jgs5.woff2') format('woff2'),
                 url('../fonts/jgs5.woff') format('woff'),
                 url('../fonts/jgs5.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'JGS7';
            src: url('../fonts/jgs7.woff2') format('woff2'),
                 url('../fonts/jgs7.woff') format('woff'),
                 url('../fonts/jgs7.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'JGS9';
            src: url('../fonts/jgs9.woff2') format('woff2'),
                 url('../fonts/jgs9.woff') format('woff'),
                 url('../fonts/jgs9.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* CRT Animations */
        @keyframes flicker {
            0% {opacity: 0.27861;}
            5% {opacity: 0.34769;}
            10% {opacity: 0.23604;}
            15% {opacity: 0.90626;}
            20% {opacity: 0.18128;}
            25% {opacity: 0.83891;}
            30% {opacity: 0.65583;}
            35% {opacity: 0.67807;}
            40% {opacity: 0.26559;}
            45% {opacity: 0.84693;}
            50% {opacity: 0.96019;}
            55% {opacity: 0.08594;}
            60% {opacity: 0.20313;}
            65% {opacity: 0.71988;}
            70% {opacity: 0.53455;}
            75% {opacity: 0.37288;}
            80% {opacity: 0.71428;}
            85% {opacity: 0.70419;}
            90% {opacity: 0.7003;}
            95% {opacity: 0.36108;}
            100% {opacity: 0.24387;}
        }

        @keyframes textShadow {
            from {
                text-shadow: 0.5px 0 1px rgba(234, 54, 175, 0.7), -0.5px 0 1px rgba(117, 250, 105, 0.7), 0 0 5px rgba(255,255,255,0.3);
            }
            to {
                text-shadow: 0.8px 0.3px 2px rgba(234, 54, 175, 0.7), -0.8px -0.3px 2px rgba(117, 250, 105, 0.7), 0 0 5px rgba(255,255,255,0.3);
            }
        }

        @keyframes promptTextShadow {
            from {
                text-shadow: 1px 0 0.5px rgba(234, 54, 175, 0.9), -1px 0 0.5px rgba(117, 250, 105, 0.9), 0 0 5px rgba(255,255,255,0.3);
            }
            to {
                text-shadow: 1.5px 0.5px 1px rgba(234, 54, 175, 0.9), -1.5px -0.5px 1px rgba(117, 250, 105, 0.9), 0 0 5px rgba(255,255,255,0.3);
            }
        }

        :root {
            --terminal-green: #00ff00;
        }

        body {
            font-family: 'VT323', monospace;
            background: #111;
            color: white;
            padding: 0;
            margin: 0;
            width: 100vw;
            height: 100vh;
            overflow: auto;
        }

        /* CRT Screen Container */
        .crt-screen {
            position: relative;
            background: #121010;
            border-radius: 8px;
            overflow: hidden;
            margin: 0 auto;
        }

        /* Full screen terminal */
        .crt-screen {
            width: 100vw;
            height: 100vh;
        }

        /* CRT Scanlines */
        .crt-scanlines::before {
            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.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
            z-index: 2;
            background-size: 100% 4px, 6px 100%;
            pointer-events: none;
        }

        /* CRT Flicker */
        .crt-flicker::after {
            content: " ";
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background: rgba(18, 16, 16, 0.1);
            opacity: 0;
            z-index: 2;
            pointer-events: none;
            animation: flicker 0.15s infinite;
        }

        /* CRT Text Color Separation */
        .crt-colorsep {
            animation: textShadow 0.01s infinite alternate;
        }

        /* Overlay */
        .overlay {
            position: absolute;
            bottom: 20px;
            right: 30px;
            color: rgba(255, 255, 255, 0.3);
            font-size: 32px;
            font-weight: bold;
            pointer-events: none;
            z-index: 10;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        /* CRT Turn on effect */
        .crt-screen {
            animation: turn-on 1.5s linear;
            animation-fill-mode: forwards;
        }

        @keyframes turn-on {
            0% {
                transform: scale(1, 1) translate3d(0, 0, 0);
                filter: contrast(0) brightness(0);
                opacity: 0;
            }
            100% {
                transform: scale(1, 1) translate3d(0, 0, 0);
                filter: contrast(1) brightness(1.2) saturate(1.3);
                opacity: 1;
            }
        }

        /* Terminal Content */
        .terminal {
            position: relative;
            width: 100%;
            height: 100%;
            padding: 30px 30px 60px 30px;
            color: #fff;
            font-size: 24px;
            line-height: 1.5;
            overflow-y: auto;
            z-index: 1;
            box-sizing: border-box;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }

        .terminal::-webkit-scrollbar {
            width: 10px;
        }

        .terminal::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
        }

        .terminal::-webkit-scrollbar-thumb {
            background: rgba(224, 224, 224, 0.3);
            border-radius: 5px;
        }

        .terminal-output {
            margin-bottom: 10px;
        }

        .output-line {
            margin: 5px 0;
            white-space: pre;
            overflow-x: auto;
            word-wrap: normal;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
        }

        .neofetch {
            font-family: 'Noto Sans Mono', 'VT323', monospace;
            font-size: 20px;
            line-height: 1.3;
            white-space: pre-wrap;
        }

        .neofetch-row {
            display: flex;
            gap: 1ch;
            align-items: baseline;
        }

        .neofetch-label {
            color: #0ff;
            min-width: 10ch;
        }

        .neofetch-value {
            color: #fff;
        }

        .neofetch-divider {
            letter-spacing: 0.2ch;
        }

        .neofetch-spacer {
            height: 0.8em;
        }

        .command-line {
            color: #d0d0d0;
            margin-bottom: 5px;
            text-shadow: 0 0 5px rgba(208, 208, 208, 0.5);
        }

        .prompt {
            color: #00ff00;
            margin-right: 8px;
            font-size: 24px;
            animation: promptTextShadow 0.01s infinite alternate;
            filter: brightness(1.2);
        }

        .input-line {
            display: flex;
            align-items: center;
            position: relative;
        }

        .input-display {
            color: #fff;
            font-family: 'VT323', monospace;
            font-size: 24px;
            white-space: pre;
            animation: promptTextShadow 0.01s infinite alternate;
        }

        .terminal-input {
            position: fixed;
            width: 20px;
            height: 30px;
            background: transparent;
            border: none;
            outline: none;
            color: transparent;
            font-family: 'VT323', monospace;
            font-size: 24px;
            resize: none;
            overflow: hidden;
            caret-color: transparent;
            z-index: 100;
            pointer-events: auto;
        }

        .cursor {
            display: inline-block;
            width: 12px;
            height: 24px;
            background: #fff;
            animation: cursor-blink 1s step-end infinite;
            box-shadow: 1px 0 0.5px rgba(234, 54, 175, 0.9), -1px 0 0.5px rgba(117, 250, 105, 0.9), 0 0 5px rgba(255,255,255,0.3);
            vertical-align: bottom;
            flex-shrink: 0;
        }

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

        .ascii-art {
            color: #00ddff;
            font-size: clamp(7px, 1.2vw, 12px);
            line-height: 1.2;
            margin: 10px 0;
            animation: textShadow 0.01s infinite alternate;
        }

        .welcome-text {
            color: #66ccff;
            margin: 10px 0;
            animation: textShadow 0.01s infinite alternate;
        }

        .info-text {
            color: #00ff00;
            animation: textShadow 0.01s infinite alternate;
        }

        .welcome-divider {
            color: #00ff00;
            animation: textShadow 0.01s infinite alternate;
        }

        .error-text {
            color: #ff3333;
            text-shadow: 0 0 10px rgba(255, 51, 51, 0.8);
        }

        .success-text {
            color: #66ff99;
            text-shadow: 0 0 10px rgba(102, 255, 153, 0.8);
            animation: textShadow 0.02s infinite alternate;
        }

        .question-text {
            color: #00ffaa;
            animation: textShadow 0.01s infinite alternate;
        }

        .muted-text {
            color: rgba(255,255,255,0.7);
        }

        .red-text {
            color: #ff4d4d;
            text-shadow: 0 0 8px rgba(255, 77, 77, 0.8);
            animation: textShadow 0.015s infinite alternate;
        }

        .blue-text {
            color: #66aaff;
            text-shadow: 0 0 8px rgba(102,170,255,0.8);
            animation: textShadow 0.015s infinite alternate;
        }

        .ascii-art {
            font-family: 'JGS', 'DejaVu Sans Mono', 'Cascadia Mono', 'Liberation Mono', 'Noto Sans Mono', 'Roboto Mono', 'Courier New', monospace;
        }

        .ascii-art {
            font-variant-ligatures: none;
            white-space: pre;
            letter-spacing: 0;
            line-height: 1.1;
        }

        .ascii {
            white-space: pre;
            font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
            font-variant-ligatures: none;
            letter-spacing: 0;
            line-height: 1.1;
        }

        /* Neofetch styling */
        .neofetch-container {
            display: flex;
            gap: 30px;
            margin: 10px 0;
            align-items: flex-start;
        }

        .neofetch-logo {
            color: #00ddff;
            white-space: pre;
            font-family: monospace;
            line-height: 1.2;
            animation: textShadow 0.01s infinite alternate;
        }

        .neofetch-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .neofetch-header {
            color: #00ff00;
            font-weight: bold;
            margin-bottom: 2px;
            animation: textShadow 0.01s infinite alternate;
        }

        .neofetch-divider {
            color: #fff;
            margin-bottom: 4px;
        }

        .neofetch-info dl {
            margin: 0;
            padding: 0;
        }

        .neofetch-info dt {
            color: #0ff;
            font-weight: bold;
            display: inline;
        }

        .neofetch-info dt::after {
            content: ': ';
        }

        .neofetch-info dd {
            color: #fff;
            display: inline;
            margin: 0;
        }

        .neofetch-info dd::after {
            content: '';
            display: block;
        }

        .neofetch-label {
            color: #0ff;
            font-weight: bold;
        }

        .neofetch-value {
            color: #fff;
        }

        /* Glitch effect for ASCII art */
        @keyframes glitch {
            0% { text-shadow: 0.05em 0 0 var(--terminal-green), -0.025em -0.05em 0 #0ff, 0.025em 0.05em 0 #f0f; transform: translate(0.0125em, -0.0125em); }
            15% { text-shadow: -0.05em -0.025em 0 var(--terminal-green), 0.025em 0.025em 0 #0ff, -0.05em -0.05em 0 #f0f; transform: translate(-0.025em, 0.025em); }
            30% { text-shadow: 0.05em 0.025em 0 var(--terminal-green), 0.05em 0 0 #0ff, 0 -0.05em 0 #f0f; transform: translate(0.025em, 0); }
            45% { text-shadow: -0.025em 0 0 var(--terminal-green), -0.025em -0.025em 0 #0ff, -0.025em -0.05em 0 #f0f; transform: translate(-0.0125em, 0.0125em); }
            60% { text-shadow: 0.025em 0.05em 0 var(--terminal-green), 0 0.025em 0 #0ff, 0.025em 0 0 #f0f; transform: translate(0.025em, -0.025em); }
            75% { text-shadow: 0.05em 0.025em 0 var(--terminal-green), -0.05em -0.025em 0 #0ff, 0.025em -0.05em 0 #f0f; transform: translate(-0.025em, -0.0125em); }
            90% { text-shadow: -0.025em -0.05em 0 var(--terminal-green), 0.025em 0.025em 0 #0ff, -0.05em -0.025em 0 #f0f; transform: translate(0.0125em, 0.025em); }
            100% { text-shadow: 0.025em 0 0 var(--terminal-green), -0.025em -0.025em 0 #0ff, -0.025em -0.05em 0 #f0f; transform: translate(0, 0); }
        }

        @keyframes glitch-2 {
            0% { clip-path: inset(75% 0 25% 0); }
            10% { clip-path: inset(15% 0 85% 0); }
            20% { clip-path: inset(45% 0 15% 0); }
            30% { clip-path: inset(95% 0 5% 0); }
            40% { clip-path: inset(25% 0 75% 0); }
            50% { clip-path: inset(85% 0 15% 0); }
            60% { clip-path: inset(5% 0 95% 0); }
            70% { clip-path: inset(65% 0 35% 0); }
            80% { clip-path: inset(35% 0 65% 0); }
            90% { clip-path: inset(55% 0 45% 0); }
            100% { clip-path: inset(75% 0 25% 0); }
        }

        @keyframes glitch-3 {
            0% { clip-path: inset(25% 0 75% 0); }
            10% { clip-path: inset(85% 0 15% 0); }
            20% { clip-path: inset(55% 0 45% 0); }
            30% { clip-path: inset(5% 0 95% 0); }
            40% { clip-path: inset(75% 0 25% 0); }
            50% { clip-path: inset(15% 0 85% 0); }
            60% { clip-path: inset(95% 0 5% 0); }
            70% { clip-path: inset(35% 0 65% 0); }
            80% { clip-path: inset(65% 0 35% 0); }
            90% { clip-path: inset(45% 0 55% 0); }
            100% { clip-path: inset(25% 0 75% 0); }
        }

        .ascii-art.glitch {
            animation: glitch 1000ms cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
            position: relative;
            overflow: hidden;
        }

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

        .ascii-art.glitch::before {
            left: 2px;
            text-shadow: -2px 0 #ff0000;
            animation: glitch-2 750ms infinite;
        }

        .ascii-art.glitch::after {
            left: -2px;
            text-shadow: 2px 0 #00ff00;
            animation: glitch-3 750ms infinite;
        }

        /* Moving scanline effect - CRT refresh */
        @keyframes scanline {
            0% {
                transform: translate3d(0, 100vh, 0);
            }
        }

        .terminal::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0.2rem;
            z-index: 8;
            background: rgba(0, 0, 0, 0.25);
            opacity: 0.75;
            pointer-events: none;
            animation: scanline 6s linear infinite;
        }

        /* Boot overlay specific tweaks */
        #boot-overlay pre {
            text-shadow: 0 0 6px rgba(0,255,0,0.4);
        }

        /* Make boot text slightly smaller than main terminal */
        #boot-overlay .terminal {
            font-size: 16px;
            line-height: 1.5;
            font-style: italic;
        }
