/*
   00_BLACK:   #0B0B0B  |  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: darkslategray;
    color: #AAAAAA;
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 15px;
    line-height: 1.4;
    padding: 24px;
    image-rendering: pixelated;
}

.system-frame {
    max-width: 1100px;
    margin: 0 auto;
    border: 3px solid #555555;
    background-color: #0B0B0B;
    box-shadow: 0 0 20px rgba(85, 85, 255, 0.15);
}

.system-header {
    background-color: #0000AA;
    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;
    text-transform: uppercase;
}

.archive-intro {
    padding: 24px;
    border-bottom: 2px double #DDDDDD;
    background: #0B0B0B;
}

h1 {
    color: #55FFFF;
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 6px;
}

.foreword-header {
    color: #55FFFF;
    font-size: 20px;
    text-align: center;
    margin-top: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

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

.submit {
    color: #55FFFF;
    text-align: center;
    font-size: 18px;
    margin-top: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

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

.directory-container {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

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

.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;
    text-decoration: none;
    font-weight: bold;
}

.file-link:hover {
    color: #FFFFFF;
    background-color: #AA0000;
}

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

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

.action-dl {
    background-color: #0B0B0B;
    color: #55FF55;
    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: #0B0B0B;
    box-shadow: 0 0 8px #55FF55;
}

.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;
    letter-spacing: 1px;
}

.archive-contents {
    padding: 24px;
    border-bottom: 2px double #DDDDDD;
    background: #222222;
    font-weight: bold
    text-align: center
}

.liveos {
    color: #55FF55;
    font-size: 15px;
}