/* Retro BBS Style - 80s/90s terminal look */
body {
    background-color: #000;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px 0;
    line-height: 1.4;
}

.bbs-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px;
    border: 2px solid #0f0;
    box-shadow: 0 0 20px #0f0;
    background: #000;
}

.ascii-title {
    color: #0f0;
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
    margin: 10px 0 30px;
    white-space: pre;
    text-shadow: 0 0 10px #0f0;
}

.login-box {
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    color: #ff0;
    background: #000;
    padding: 10px 0;
    text-align: center;
    margin: 30px 0;
    line-height: 1.4;
    /* border: 1px dashed #0f0;        optional extra glow */
    /* box-shadow: 0 0 15px #0f0; */
}

.login-box p {
    color: #ff0;
    text-align: center;
    margin: 8px 0;
}

.bbs-menu {
    margin-top: 40px;
}

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

.menu-list li {
    margin: 15px 0;
    font-size: 18px;
}

.menu-list a {
    color: #00ffff;
    text-decoration: none;
    padding: 4px 8px;
    border: 1px dashed #00ffff;
}

.menu-list a:hover {
    background: #00ffff;
    color: #000;
}

.prompt {
    color: #fff;
    font-weight: bold;
    margin-top: 30px;
}

footer {
    margin-top: 50px;
    text-align: center;
    color: #0b0;
    font-size: 14px;
}

/* Common section styling */
.content {
    margin-top: 30px;
    line-height: 1.8;
}

h2 {
    color: #ff0;
    text-transform: uppercase;
    border-bottom: 1px dashed #0f0;
    padding-bottom: 8px;
}

.back {
    display: inline-block;
    margin-top: 30px;
    color: #00ffff;
    text-decoration: underline;
}