body {
    background: #181a1b;
    color: #33ff33;
    font-family: 'Fira Mono', 'Consolas', monospace;
    margin: 0;
    padding: 0;
}
.terminal {
    background: #232526;
    border-radius: 8px;
    box-shadow: 0 0 18px #111;
    margin: 3em auto;
    width: 80vw;
    min-height: 70vh;
    max-width: 1200px;
    padding: 2em 3em 2em 3em;
    border: 2px solid #222;
    position: relative;
}
.terminal-bar {
    background: #111;
    border-radius: 8px 8px 0 0;
    height: 32px;
    display: flex;
    align-items: center;
    padding-left: 1em;
    margin: -2em -3em 2em -3em;
    border-bottom: 1px solid #222;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.theme-select {
    position: absolute;
    top: 12px;
    right: 32px;
    background: #232526;
    color: #33ff33;
    border: 1px solid #333;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1em;
    padding: 2px 12px;
}
pre.ascii-art {
    color: #33ff33;
    font-size: 1em;
    margin-bottom: 2em;
    white-space: pre;
    line-height: 1.1;
    font-weight: bold;
}
.prompt {
    color: #33ff33;
}
a {
    color: #00e6e6;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.actions {
    margin-top: 2em;
}
.actions a {
    margin-right: 1em;
}
input[type=email] {
    background: #181a1b;
    color: #33ff33;
    border: 1px solid #33ff33;
    padding: 0.5em;
    font-family: inherit;
    border-radius: 4px;
}
input[type=submit] {
    background: #33ff33;
    color: #181a1b;
    border: none;
    padding: 0.5em 1em;
    font-family: inherit;
    border-radius: 4px;
    cursor: pointer;
}
.messages {
    margin-bottom: 1em;
}
