.terminal-container {
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    font-family: var(--font-mono);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.terminal-header {
    background: rgba(17, 24, 39, 0.85);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.terminal-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 1.5rem;
    background: rgba(9, 14, 24, 0.92);
    min-height: 300px;
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.75rem;
}

.prompt {
    color: var(--accent-secondary);
    font-weight: 600;
}

.command {
    color: var(--accent);
}

.terminal-output {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    white-space: pre-wrap;
}

.command-cursor {
    display: inline-block;
    width: 8px;
    height: 18px;
    background: var(--accent);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}
