


/* This is the css for flynn's terminal specifically. So if you want to change some colors, go ahead. */


:root {
    --term-green: #33ff00;
    --term-bg: #051405;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'VT323', monospace;
    color: var(--term-green);
    overflow: hidden;
}


#crt-monitor {
    width: 100vw;
    height: 100vh;
    background-color: var(--term-bg);
    position: relative;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.9);
}


.scanlines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0) 50%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.2)
    );
    background-size: 100% 4px;
    pointer-events: none; 
    z-index: 10;
}


p, h2, li, pre {
    text-shadow: 0 0 5px var(--term-green);
    margin: 0 0 15px 0;
    font-size: 1.8rem;
    line-height: 1.2;
}

.ascii-art {
    font-size: 1.8rem;
    line-height: 1;
}


.blink {
    animation: blinker 1s step-end infinite;
}
@keyframes blinker { 50% { opacity: 0; } }


.hidden { display: none !important; }


#terminal-interface {
    display: flex;
    height: 100%;
    gap: 40px;
    position: relative;
    z-index: 5;
}

#directory {
    width: 30%;
    border-right: 2px solid var(--term-green);
    padding-right: 20px;
}

#directory ul {
    list-style-type: none;
    padding: 0;
}

#directory li {
    cursor: pointer;
    padding: 5px;
    transition: background 0.1s;
}

#directory li:hover {
    background-color: var(--term-green);
    color: var(--term-bg);
    text-shadow: none;
}

#document-viewer {
    width: 70%;
    height: 100%;
    overflow-y: auto; 
    padding-right: 20px;
}


#doc-content {
    font-size: 2rem; 
    line-height: 1.4; 
}


::-webkit-scrollbar { width: 20px; }
::-webkit-scrollbar-track { background: var(--term-bg); border-left: 1px solid var(--term-green); }
::-webkit-scrollbar-thumb { background: var(--term-green); }