* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    padding: 40px 20px;
}
.container { max-width: 640px; margin: 0 auto; }
.name {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}
.terminal {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    margin-bottom: 48px;
    font-family: 'SF Mono', 'Fira Code', 'Monaco', monospace;
}
.terminal-bar {
    background: #1a1a1a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #222;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.r { background: #ff5f56; }
.dot.y { background: #ffbd2e; }
.dot.g { background: #27c93f; }
.title {
    margin-left: 8px;
    font-size: 0.75rem;
    color: #666;
}
.terminal-screen {
    padding: 16px;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
}
#output {
    margin-bottom: 12px;
    white-space: pre-wrap;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #0f0;
}
#output .line { margin-bottom: 4px; }
#output .line.system { color: #666; }
#output .line.error { color: #ff5f56; }
#output .line.success { color: #27c93f; }
#output .line.info { color: #00aaff; }
.input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.prompt { color: #0f0; font-weight: bold; }
#cmd {
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    flex: 1;
    caret-color: #0f0;
}
.links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 48px;
}
.links a {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid #1a1a1a;
    text-decoration: none;
    color: #aaa;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}
.links a:hover {
    padding-left: 12px;
    border-bottom-color: #333;
    color: #fff;
}
.quote {
    font-size: 0.95rem;
    color: #444;
    font-style: italic;
    text-align: center;
    padding: 32px 0;
}
@media (max-width: 480px) {
    .name { font-size: 2rem; }
    .links a { padding: 16px 0; font-size: 0.95rem; }
    .terminal-screen { min-height: 150px; }
    #output { font-size: 0.75rem; }
}
