.console-compact {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--cyber-accent-dark);
    padding: 15px;
    margin-bottom: 2rem;
    font-family: monospace;
    font-size: 0.9rem;
    color: #0f0;
    box-shadow: inset 0 0 10px rgba(139, 0, 255, 0.2);
    border-left: 4px solid var(--cyber-accent-pink);
}
.cli-line {
    margin-bottom: 5px;
    opacity: 0;
    animation: type 0.1s forwards;
}
.cli-line:nth-child(1) { animation-delay: 0.5s; }
.cli-line:nth-child(2) { animation-delay: 1.5s; color: #aaa; }
.cli-line:nth-child(3) { animation-delay: 2.5s; color: #ff3333; }
@keyframes type {
    to { opacity: 1; }
}
.console-interface {
    background: #090909;
    border: 1px solid #333;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.console-top-bar {
    background: #1a1a1a;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    color: #888;
    border-bottom: 1px solid #333;
}
.metric-display {
    color: var(--cyber-accent-blue);
    font-weight: bold;
}
.console-output-area {
    padding: 20px;
    font-family: monospace;
    color: #0f0;
    min-height: 250px;
}
.cli-record {
    margin-bottom: 15px;
    line-height: 1.5;
}
.cli-timestamp {
    color: #666;
    margin-right: 10px;
}
.cli-identity {
    color: var(--cyber-accent-pink);
    font-weight: bold;
    margin-right: 10px;
}
.cli-output {
    color: #ccc;
}
.cli-cursor {
    display: inline-block;
    width: 10px;
    height: 15px;
    background: var(--cyber-accent-blue);
    animation: blink 1s step-end infinite;
}
