/* ========================================
   CYTUS II — STORY ARCHIVE
   Main visual style
   ======================================== */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    background: #05070a;
    color: #d8e1e8;
    font-family: "Courier New", monospace;
    overflow-x: hidden;
}

/* Main screen */

.terminal {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
}

/* Small system text */

.system {
    font-size: 12px;
    letter-spacing: 4px;
    color: #6f8b99;
    margin-bottom: 30px;
}

/* Main title */

h1 {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: clamp(60px, 12vw, 150px);
    font-weight: 300;
    letter-spacing: 18px;
    color: #eaf7ff;
    text-shadow:
        0 0 10px rgba(150, 220, 255, 0.8),
        0 0 35px rgba(70, 180, 255, 0.4);
}

/* Subtitle */

.subtitle {
    margin-top: 15px;
    font-size: 18px;
    letter-spacing: 10px;
    color: #7ccfff;
}

/* Decorative line */

.line {
    width: min(600px, 80vw);
    height: 1px;
    margin: 45px 0 30px;
    background: #36515e;
    box-shadow: 0 0 10px rgba(100, 200, 255, 0.4);
}

/* Introduction */

.intro {
    font-size: 16px;
    letter-spacing: 2px;
    color: #a9bac4;
}

/* Database status */

.status {
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 3px;
    color: #617782;
}

.status span {
    color: #7cffc4;
    text-shadow: 0 0 8px rgba(124, 255, 196, 0.8);
}

/* Archive button */

button {
    margin-top: 35px;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid #6ecfff;
    color: #9edfff;
    font-family: "Courier New", monospace;
    font-size: 12px;
    letter-spacing: 4px;
    cursor: pointer;
    transition: 0.25s ease;
}

button:hover {
    background: rgba(90, 200, 255, 0.12);
    box-shadow:
        0 0 10px rgba(90, 200, 255, 0.5),
        0 0 30px rgba(90, 200, 255, 0.2);
    color: white;
}

/* Footer */

.footer {
    position: absolute;
    bottom: 20px;
    font-size: 9px;
    letter-spacing: 3px;
    color: #35454d;
}

/* Scanline effect */

.scanlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255,255,255,0.015) 0px,
            rgba(255,255,255,0.015) 1px,
            transparent 1px,
            transparent 4px
        );
}