/* Terminal Card Styling */
.terminal-card {
    grid-area: terminal;
    width: 100%;
    background: #1e1e1e;
    /* VSCode/Linux Dark Gray */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
    margin-top: 0px;
    animation: fadeIn 0.8s ease backwards;
    animation-delay: 0.4s;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terminal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.terminal-header {
    background: #252526;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    /* Move controls to right for Linux feel */
    align-items: center;
    border-bottom: 1px solid #333;
}

.terminal-title {
    color: #ccc;
    font-size: 13px;
    font-weight: 500;
}

.terminal-controls {
    display: flex;
    gap: 6px;
}

/* Linux-style simple buttons */
.window-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.minimize {
    background: #fec02f;
}

.maximize {
    background: #28c840;
}

.close {
    background: #dd2b2b;
}



.terminal-body {
    padding: 16px;
    color: #e0e0e0;
    font-size: 13px;
    line-height: 1.6;
    min-height: 140px;
}

.terminal-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.prompt {
    color: #98c379;
    /* Soft Linux Green */
    margin-right: 8px;
    font-weight: 700;
}

/* Neofetch Layout */
.neofetch-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
}

.ascii-art {
    color: #61afef;
    /* Linux Blue */
    font-weight: bold;
    white-space: pre;
    line-height: 1.2;
    flex-shrink: 0;
}

.stats-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.command-text {
    color: #fff;
}

.output-line {
    color: #b5bac1;
    margin-top: 2px;
    display: flex;
}

.output-label {
    color: #7289da;
    /* Discord Blurple-ish */
    width: 60px;
    font-weight: 700;
}

.output-value {
    color: #f2f3f5;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background-color: #fff;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}