@charset "utf-8";

body {
    background-color: #051005;
    color: #aaddaa;
    font-family: "Consolas", "Courier New", monospace;
    margin: 0;
}

header {
    background: #000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #2f4f2f;
}

.logo-area img {
    height: 40px;
}

.nav-links a {
    color: #4af626;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

.danger-hero {
    background: #112211;
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid #4af626;
}

.danger-hero h1 {
    font-size: 3rem;
    color: #4af626;
    margin: 0;
}

.archive-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

.group-header {
    color: #4af626;
    border-bottom: 1px dashed #2f4f2f;
    padding-bottom: 5px;
    margin-top: 40px;
}

.data-list {
    list-style: none;
    padding: 0;
}

.data-item {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #113311;
    align-items: center;
}

.data-item:hover {
    background: #0a200a;
}

.item-id {
    width: 100px;
    color: #88aa88;
}

.item-title {
    flex: 1;
}

.data-item a:hover .item-title {
    text-decoration: underline;
    color: #fff;
}

.item-level {
    width: 150px;
    text-align: right;
    font-weight: bold;
}

/* Danger Levels */
.danger-special {
    color: #d46aff;
    text-shadow: 0 0 5px #d46aff;
}

/* Purple */
.danger-god {
    color: #ffd700;
    text-shadow: 0 0 5px #ffd700;
}

/* Gold */
.danger-critical {
    color: #ff3333;
    text-shadow: 0 0 5px #ff3333;
}

/* Red Critical */
.danger-warning {
    color: #ff6666;
}

/* Red */
.danger-caution {
    color: #ffff44;
}

/* Yellow */
.danger-safe {
    color: #44ff44;
}

/* Green */
.danger-info {
    color: #44ffff;
}

/* Blue */

footer {
    text-align: center;
    padding: 40px;
    color: #446644;
    font-size: 0.8rem;
    border-top: 1px solid #113311;
}