@charset "utf-8";

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

body {
    background-color: #050a05;
    color: #4af626;
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Scanline effect */
body::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    border-left: 1px dashed #1a331a;
    border-right: 1px dashed #1a331a;
}

header {
    border-bottom: 2px solid #4af626;
    padding-bottom: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    filter: drop-shadow(0 0 5px #4af626);
}

.site-title {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Breadcrumb nav */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: #2c7a1b;
}

.breadcrumb a {
    color: #4af626;
    text-decoration: none;
}

/* SCP-style List */
.data-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.data-item {
    border: 1px solid #1a331a;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 20, 0, 0.3);
    transition: 0.2s;
}

.data-item:hover {
    border-color: #4af626;
    background: rgba(74, 246, 38, 0.1);
}

.item-id {
    font-weight: bold;
    color: #4af626;
    min-width: 100px;
}

.item-title {
    flex-grow: 1;
    margin: 0 20px;
    color: #e0e0e0;
}

.item-level {
    font-size: 0.8rem;
    padding: 2px 8px;
    border: 1px solid #4af626;
    border-radius: 3px;
}

.danger-critical {
    color: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.4);
}

.danger-warning {
    color: #ff8800;
    border-color: #ff8800;
}

.danger-caution {
    color: #eeee00;
    border-color: #eeee00;
}

.danger-safe {
    color: #4af626;
    border-color: #4af626;
}

/* Group Headers */
.group-header {
    margin-top: 40px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #4af626;
    color: #4af626;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.danger-special {
    color: #d400ff;
    border-color: #d400ff;
    box-shadow: 0 0 5px rgba(212, 0, 255, 0.4);
}

.danger-god {
    color: #ffd700;
    border-color: #ffd700;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    text-shadow: 0 0 5px #ffd700;
}

.danger-info {
    color: #00ffff;
    border-color: #00ffff;
}