body {
    background: #050b14; /* deep blue-black */
    color: #39ff88;      /* default Archive green */
    font-family: "Courier New", monospace;
    font-size: 18px;
    margin: 0;
    padding: 20px;

    /* subtle atmospheric tint */
    background-image: radial-gradient(
        rgba(80, 120, 255, 0.12),
        transparent 70%
    );
}

.left-section {
    text-align: left;
    margin-top: 20px;
}

a {
    color: #7fffd4;
    text-decoration: none;
}

a:hover {
    color: white;
    text-shadow: 0 0 6px #7fffd4;
}

.system {
    color: #00e5ff;
    text-shadow: 0 0 6px rgba(0, 229, 255, 0.4);
}

.captain {
    color: #ff8c2a;
    text-shadow: 0 0 6px rgba(255, 140, 42, 0.5);
}

.archive {
    color: #39ff88;
    text-shadow: 0 0 6px rgba(57, 255, 136, 0.35);
}

.flicker {
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0% { opacity: 1; }
    2% { opacity: 0.6; }
    3% { opacity: 1; }
    50% { opacity: 0.95; }
    51% { opacity: 0.7; }
    52% { opacity: 1; }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.03) 1px,
        transparent 2px,
        transparent 4px
    );

    opacity: 0.15;
}