        
        * {
            box-sizing: border-box;
        }

        body {
            background-color: #0a0a0a;
            color: #33ff33;
            font-family: 'Courier New', Courier, monospace;
            margin: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
            line-height: 1.2;
            overflow-x: hidden; 
        }

        


        .terminal-container {
            max-width: 800px;
            width: 100%;
            position: relative;
            text-shadow: 0 0 5px #33ff33;
            word-wrap: break-word; 
        }

        header {
            margin-bottom: 15px;
            border-bottom: 1px dashed #33ff33;
            padding-bottom: 10px;
        }

        .terminal-nav {
            margin-bottom: 30px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .nav-item {
            color: #33ff33;
            text-decoration: none;
            padding: 2px 5px;
            white-space: nowrap;
        }

        .nav-item::before { content: "[ "; }
        .nav-item::after { content: " ]"; }

        .nav-item:hover {
            background-color: #33ff33;
            color: #0a0a0a;
        }

        h1 {
            font-size: clamp(1.1rem, 5vw, 1.5rem);
            margin: 0;
        }

        .dir-info {
            font-size: 0.8rem;
            color: #1a8a1a;
            margin-top: 5px;
        }

        .mod-entry {
            margin-bottom: 25px;
            padding-left: 10px;
        }

        .mod-entry h2 {
            font-size: 1.1rem;
            margin: 0;
            color: #fff;
        }

        .mod-entry h2::before {
            color: #33ff33;
        }

	.exe h2::before { content: "[EXE] "; }
	.unr h2::before { content: "[UNR] "; }
	.utx h2::before { content: "[UTX] "; }

        .mod-entry p {
            margin: 5px 0 10px 0;
            color: #33ff33;
            font-size: 0.95rem;
        }

        .cmd-link {
            color: #0a0a0a;
            background-color: #33ff33;
            text-decoration: none;
            padding: 2px 8px;
            font-weight: bold;
            display: inline-block;
            font-size: 0.9rem;
        }

        .cmd-link:hover {
            background-color: #fff;
            color: #0a0a0a;
        }

        .ascii-divider {
            margin: 20px 0;
            letter-spacing: -1px;
            overflow: hidden;
            white-space: nowrap;
        }

        footer {
            margin-top: 40px;
            padding-top: 10px;
            border-top: 1px dashed #33ff33;
        }

        .cursor {
            display: inline-block;
            width: 10px;
            height: 18px;
            background: #33ff33;
            animation: blink 1s infinite;
            vertical-align: middle;
        }

        @keyframes blink { 50% { opacity: 0; } }

        @media (max-width: 400px) {
            body { padding: 10px; }
            .nav-item { font-size: 0.85rem; }
        }