:root {
    --bg: #000000;
    --text: #98b395;
    --prompt: #98b395;
    --dim: #4a5a4a;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monospace;
}
body {
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.4;
    min-height: 100vh;
    padding: 2rem;
}
.terminal {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 600px;
}
.prompt {
    color: var(--text);
    margin-bottom: 0.5rem;
    opacity: 0.6;
}
.prompt::before {
    content: "/dev > ";
    color: var(--dim);
    opacity: 0.6;
}
.prompt::after {
    content: attr(data-cmd);
    opacity: 1;
}
.output-block {
    margin-bottom: 1.5rem;
}
.separator {
    color: var(--dim);
    margin: 0.5rem 0;
}
.stat-line {
    display: flex;
    gap: 1rem;
}
.stat-label {
    color: var(--dim);
}
.link {
    color: var(--text);
    text-decoration: none;
}
.link:hover {
    text-decoration: underline;
}
.ascii-art {
    font-family: monospace;
    font-size: 12px;
    line-height: 1.2;
    white-space: pre;
    color: var(--prompt);
    margin: 0 0 1rem 0;
    padding: 0;
}
.system-info {
    margin-left: 0;
}
@media (max-width: 768px) {
    .ascii-art {
        font-size: 8px;
        max-width: 100%;
        overflow-x: auto;
    }
    .system-info {
        margin-left: 0;
    }
}
.theme-toggle {
    margin-top: 0.5rem;
    cursor: pointer;
}
.theme-option {
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.2s;
}
.theme-option:hover {
    opacity: 1;
}
.theme-option.active {
    opacity: 1;
    text-decoration: underline;
}
.about-text {
    max-width: 450px;
    line-height: 1.5;
    word-wrap: break-word;
    white-space: normal;
}
@media screen and (max-width: 768px) {
    .about-text {
        max-width: 100%;
    }
}
