/* Reset and Base Styles */
body {
    background-color: #000000;
    color: #00FF00; /* Classic Terminal Green */
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    text-align: center;
}

/* CRT Scanline Effect Overlay */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0) 50%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.2)
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 999;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border: 2px solid #004400;
    margin-top: 20px;
    box-shadow: 0 0 20px #00FF00;
    background-color: #050505;
}

/* Typography & Effects */
h2 {
    text-shadow: 2px 2px #004400;
    text-decoration: underline;
}

a {
    color: #00FF00;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

a:hover {
    background-color: #00FF00;
    color: #000000;
    cursor: crosshair;
}

.ascii-art {
    font-size: 12px;
    line-height: 12px;
    white-space: pre;
    color: #00FF00;
    text-shadow: 0 0 5px #00FF00;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Marquee Simulation */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: #003300;
    color: #ccffcc;
    border: 1px solid #00FF00;
}

.marquee {
    white-space: nowrap;
    animation: scroll-left 10s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Connection Box Styles */
.box {
    border: 2px border-style: ridge;
    border-color: #00FF00;
    padding: 20px;
    margin: 20px 0;
    background-color: #001100;
}

.connection-details {
    font-size: 1.2em;
    text-align: left;
    display: inline-block;
    border: 1px dashed #00FF00;
    padding: 15px;
    width: 80%;
}

.highlight {
    color: #FFFFFF;
    font-weight: bold;
    text-shadow: 0 0 8px #FFFFFF;
}

/* Blinking Text Animation */
.blink {
    animation: blinker 1s linear infinite;
    font-weight: bold;
}

@keyframes blinker {
    50% { opacity: 0; }
}

.neon-line {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 255, 0, 0.75), rgba(0, 0, 0, 0));
    margin: 20px 0;
}

.sysop-note {
    font-size: 0.8em;
    color: #00aa00;
    margin-top: 20px;
}

footer {
    font-size: 0.7em;
    margin-top: 40px;
    color: #006600;
}