/* 基础样式 */
body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: #0f0;
    background-color: #000;
}

a {
    color: #0f0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
}