.window-frame {
    background: #c0c0c0;
    border: 3px outset #fff; /* Outer 3D bevel */
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
    box-sizing: border-box;
}


.window-title-bar {
    background: linear-gradient(90deg, #000080, #1084d0); /* Classic 98 Gradient */
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 5px;
    margin: 2px;
}

.title-text {
    color: white;
    font-weight: bold;
    font-size: 12px;
    font-family: 'MS Sans Serif', Arial, sans-serif;
}

.title-controls {
    display: flex;
    gap: 2px;
}

.win-btn {
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: bold;
    background: #c0c0c0;
    border: 1px outset #fff;
    cursor: default;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.win-btn:active {
    border: 1px inset #fff;
}

.bonkyrs-portal {
    display: flex;
    background: #c0c0c0;
    padding: 10px;
    gap: 12px;
    height: 800px;         
    box-sizing: border-box;
}

.bonkyrs-nav {
    width: 200px;
    flex-shrink: 0; 
    height: 100%;
    background: #c0c0c0;
    border: 2px outset #fff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.bonkyrs-display {
    flex-grow: 1;
    min-width: 0;          
    height: 100%;
    background: #051a05;
    border: 10px solid #333;
    border-radius: 10px;
    position: relative;
    overflow: hidden; 
    box-sizing: border-box;
}

.nav-header {
    background: #000080; /* Dark Blue Title Bar */
    color: #fff;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: bold;
    font-family: 'MS Sans Serif', Arial, sans-serif;
    letter-spacing: 1px;
    margin-bottom: 5px;
    border-bottom: 1px solid #000;
}

.nav-links {
    list-style: none !important; /* Forces the removal of bullets/radio dots */
    list-style-type: none !important;
    padding: 5px;                /* Padding for the container, not the dots */
    margin: 0;
    flex-grow: 1;
}

.nav-links li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 0 6px 0;           /* Clean margin, no hidden markers */
    padding: 0;                  /* Ensure no space is reserved for a bullet */
}

.nav-links li a {
    display: block;
    padding: 8px;
    background: #c0c0c0;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    font-family: sans-serif;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    text-align: center;
    outline: none; 
}

.nav-links li a:hover {
    background: #dfdfdf;
    color: #000;
    cursor: pointer;
}

.nav-links li a.active {
    background: #808080; 
    color: #fff;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 9px 7px 7px 9px; 
}
.crt-frame {
    width: 100%;
    height: 100%;
}

.crt-monitor {
    width: 100%;
    height: 100%;
    background: #051a05;    /* Unified CRT background color */
    padding: 20px;
    position: relative;
    box-sizing: border-box;
}

.terminal-body {
    width: 100%;
    height: 100%;
    font-family: 'Courier New', Courier, monospace;
    color: #33ff33;
    text-shadow: 0 0 8px rgba(51, 255, 51, 0.5);
    line-height: 1.4;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.scanlines {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.05), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.05));
    background-size: 100% 3px, 2px 100%;
    pointer-events: none;
    z-index: 10;
}

.monitor-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 11;
}

.bonkyrs-logo {
    display: block;
    font-family: 'Courier New', Courier, monospace;
    font-size: 8px;
    line-height: 1.1;
    color: #33ff33;
    margin: 0;
    background: transparent;
    border: none;
    white-space: pre;
}

.system-line {
    font-weight: bold;
    text-align: center;
    display: block;
    font-size: 12px;
}

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

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