/* UNDERGROUND TRUTH WEBSITE - 1990S AESTHETIC */

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

body {
    font-family: 'Times New Roman', Times, serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

/* Very simple header - 1990s style */
.header {
    background: #000080; /* Classic dark blue */
    color: #ffffff;
    padding: 10px 20px;
    border-bottom: 3px solid #ff0000;
}

.header h1 {
    font-size: 24px;
    margin: 0;
    font-weight: bold;
}

.header p {
    font-size: 12px;
    margin: 5px 0 0 0;
    font-style: italic;
}

/* Simple text navigation */
.nav {
    background: #cccccc;
    padding: 8px 20px;
    border-bottom: 2px solid #000000;
}

.nav a {
    color: #000080;
    text-decoration: underline;
    margin-right: 15px;
    font-size: 14px;
}

.nav a:hover {
    color: #ff0000;
    background: #ffff00;
}

/* Warning banner */
.warning {
    background: #ff0000;
    color: #ffffff;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    border-bottom: 3px solid #000000;
}

/* Main content */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.content h2 {
    color: #000080;
    border-bottom: 2px solid #000000;
    padding-bottom: 5px;
    margin: 30px 0 15px 0;
    font-size: 20px;
}

.content h3 {
    color: #000000;
    margin: 20px 0 10px 0;
    font-size: 16px;
    font-weight: bold;
}

.content p {
    margin-bottom: 12px;
    text-align: justify;
}

/* Document boxes */
.document {
    background: #f0f0f0;
    border: 2px solid #000000;
    padding: 15px;
    margin: 20px 0;
    font-family: 'Courier New', monospace;
    font-size: 12px;
}

.document-header {
    background: #ffff00;
    padding: 8px;
    margin: -15px -15px 15px -15px;
    border-bottom: 2px solid #000000;
    font-weight: bold;
}

/* Testimony blocks */
.testimony {
    border-left: 5px solid #000080;
    padding-left: 15px;
    margin: 20px 0;
    font-style: italic;
}

.testimony-author {
    font-weight: bold;
    font-style: normal;
    margin-top: 10px;
    color: #000080;
}

/* Editor's notes */
.editor-note {
    background: #ffffcc;
    border: 1px solid #000000;
    padding: 10px;
    margin: 15px 0;
    font-size: 13px;
}

.editor-note strong {
    color: #ff0000;
}

/* Last updated banner */
.last-updated {
    background: #cccccc;
    padding: 10px;
    text-align: center;
    font-size: 11px;
    border-top: 1px solid #000000;
    margin-top: 40px;
}

/* Simple tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #ffffff;
}

th {
    background: #000080;
    color: #ffffff;
    padding: 8px;
    text-align: left;
    font-weight: bold;
    border: 1px solid #000000;
}

td {
    padding: 8px;
    border: 1px solid #000000;
}

tr:nth-child(even) {
    background: #f0f0f0;
}

/* Links */
a {
    color: #000080;
    text-decoration: underline;
}

a:visited {
    color: #551a8b; /* Classic visited link purple */
}

a:hover {
    background: #ffff00;
    color: #000000;
}

/* Lists */
ul, ol {
    margin: 10px 0 10px 40px;
}

li {
    margin-bottom: 8px;
}

/* Horizontal rules */
hr {
    border: none;
    border-top: 2px solid #000000;
    margin: 30px 0;
}

/* Footer */
.footer {
    background: #000080;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    border-top: 3px solid #ff0000;
}

.footer p {
    margin: 5px 0;
    font-size: 12px;
}

.footer a {
    color: #ffff00;
}

/* Counter style (classic 90s) */
.counter {
    background: #000000;
    color: #00ff00;
    padding: 3px 8px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    display: inline-block;
    margin: 10px 0;
}

/* Broken image placeholder */
.broken-img {
    background: #cccccc;
    border: 1px solid #000000;
    padding: 20px;
    text-align: center;
    font-family: 'Courier New', monospace;
    color: #666666;
    font-size: 12px;
}

/* "Under construction" style banner */
.construction {
    background: #ffff00;
    color: #000000;
    padding: 8px;
    text-align: center;
    font-weight: bold;
    border: 2px solid #000000;
    margin: 20px 0;
}
