/*
   THE ACCURATE 16-COLOR VGA PALETTE (MODERN HERETIC THEME)
   00_BLACK:   #000000  |  04_RED:      #AA0000  |  08_DK_GRAY:  #555555  |  12_LT_RED:   #FF5555
   01_BLUE:    #0000AA  |  05_PURPLE:   #AA00AA  |  09_LT_BLUE:  #5555FF  |  13_YELLOW:   #FFFF55
   02_GREEN:   #00AA00  |  06_BROWN:    #AA5500  |  10_LT_GREEN: #55FF55  |  14_BR_WHITE: #FFFFFF
   03_CYAN:    #00AAAA  |  07_LT_GRAY:  #AAAAAA  |  11_LT_CYAN:  #55FFFF  |  15_WHITE:    #FFFFFF
*/

@import url('https://googleapis.com');

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

body {
    background-color: #000000; /* Pure VGA Black Backdrop */
    color: #AAAAAA;            /* Readable Light Gray Text */
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 15px;
    line-height: 1.4;
    padding: 24px;
    image-rendering: pixelated;
}

/* 640x480 Proportional Output Window */
.system-frame {
    max-width: 1100px;
    margin: 0 auto;
    border: 3px solid #555555;
    background-color: #000000;
    box-shadow: 0 0 20px rgba(85, 85, 255, 0.15);
}

/* Header Navigation bar */
.system-header {
    background-color: #0000AA; /* Authentic Deep Blue Bar */
    color: #FFFFFF;
    padding: 6px 12px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    border-bottom: 2px solid #5555FF;
}

.menu-item {
    margin-right: 15px;
}

.header-brand {
    color: #FFFF55; /* Piercing Yellow Accent */
    text-transform: uppercase;
}

/* Hero Wrapper */
.archive-intro {
    padding: 24px;
    border-bottom: 2px dashed #555555;
    background: linear-gradient(180deg, #000011 0%, #000000 100%);
}

h1 {
    color: #55FFFF; /* Authentic Light Cyan */
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.meta-line {
    color: #55FF55; /* Authentic Light Green */
    font-size: 13px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* Directory System Sections Container */
.directory-container {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.directory-section {
    border: 1px solid #555555;
    background-color: #000000;
}

.directory-banner {
    background-color: #555555;
    color: #000000;
    font-weight: bold;
    padding: 4px 12px;
    text-transform: uppercase;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.directory-banner .path {
    color: #FFFFFF;
}

/* File Entries Table Structure */
.file-table {
    width: 100%;
    border-collapse: collapse;
}

.file-table th {
    text-align: left;
    padding: 8px 12px;
    background-color: #000011;
    color: #5555FF;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid #555555;
}

.file-row {
    border-bottom: 1px solid #000011;
}

.file-row:hover {
    background-color: #000022;
}

.file-name-cell {
    padding: 12px;
    white-space: nowrap;
    width: 25%;
}

.file-link {
    color: #FFFF55; /* Accurate Yellow File Links */
    text-decoration: none;
    font-weight: bold;
}

.file-link:hover {
    color: #FFFFFF;
    background-color: #AA0000; /* Flash Red Highlighter */
}

.file-desc-cell {
    padding: 12px;
    color: #AAAAAA;
    font-size: 14px;
    width: 60%;
}

.file-action-cell {
    padding: 12px;
    text-align: right;
    width: 15%;
}

/* Unified Download Node Button */
.action-dl {
    background-color: #000000;
    color: #55FF55; /* Light Green Text */
    border: 1px solid #55FF55;
    padding: 4px 10px;
    font-family: inherit;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

.action-dl:hover {
    background-color: #55FF55;
    color: #000000;
    box-shadow: 0 0 8px #55FF55;
}

/* Footer System Console logs */
.system-footer {
    background-color: #000011;
    padding: 16px 24px;
    border-top: 2px solid #555555;
    font-size: 13px;
}

.console-line {
    margin-bottom: 4px;
}

.console-prompt {
    color: #55FF55;
}

.editorial-divider {
    border-top: 1px dotted #555555;
    margin-top: 12px;
}

.memorial-tag {
    color: #FF5555;
    text-align: center;
    margin-top: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact {
    color: #55FFFF;
    text-align: center;
    margin-top: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}