* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #c0c0c0;
    font-family: 'Cascadia Code', 'Fira Code', 'JetBrains Mono', 'Consolas', 'Courier New', monospace;
    font-size: 14px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#terminal {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    white-space: pre;
    line-height: 1.4;
}

#terminal::-webkit-scrollbar {
    width: 8px;
}

#terminal::-webkit-scrollbar-track {
    background: #0a0a0a;
}

#terminal::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.welcome-box {
    color: #c0c0c0;
}

.highlight {
    color: #ffffff;
    font-weight: bold;
}

.accent {
    color: #5faf5f;
}

.dim {
    color: #606060;
}

.command-output {
    color: #c0c0c0;
    margin-bottom: 8px;
}

#input-line {
    display: flex;
    align-items: center;
    padding: 8px 16px 16px 16px;
    background: #0a0a0a;
    flex-shrink: 0;
}

.prompt {
    color: #5faf5f;
    margin-right: 0;
    white-space: pre;
    flex-shrink: 0;
}

#command-input {
    background: transparent;
    border: none;
    outline: none;
    color: #e0e0e0;
    font-family: inherit;
    font-size: inherit;
    flex: 1;
    caret-color: #c0c0c0;
    line-height: 1.4;
}

#command-input::placeholder {
    color: #333;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.cursor-blink {
    animation: blink 1s step-end infinite;
    color: #c0c0c0;
}

.history-prompt {
    color: #5faf5f;
}

.history-command {
    color: #e0e0e0;
}

.error {
    color: #d75f5f;
}

.info {
    color: #5f87d7;
}

.welcome {
    color: #d7875f;
}
