body {
    background: #23272e;
    color: #33ff33;
    font-family: 'Fira Mono', 'Consolas', 'Monaco', monospace;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
.terminal {
    background: #181c20;
    border-radius: 8px;
    box-shadow: 0 0 20px #000a;
    max-width: 700px;
    margin: 40px auto;
    padding: 32px 24px 24px 24px;
    position: relative;
}
.terminal-header {
    display: flex;
    align-items: center;
    height: 24px;
    margin-bottom: 16px;
}
.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
}
.btn-close { background: #ff5f56; }
.btn-min { background: #ffbd2e; }
.btn-max { background: #27c93f; }
h1 {
    margin: 0 0 12px 0;
    font-size: 1.6em;
    font-weight: normal;
}
.prompt {
    color: #33ff33;
}

/* Make all links inherit color and remove underline */
a, a:visited {
    color: inherit;
    text-decoration: underline;
}

a:hover, a:active {
    color: #444;
    text-decoration: underline;
}
