/* Terminal Component Styles */
.terminal-window {
    background: #0F1623;
    /* Deep dark background */
    border-radius: 12px;
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(59, 130, 246, 0.2);
    /* Subtle blue border */
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 auto;
    position: relative;
    /* Float animation inherited from hero__visual context if needed, 
     but let's define a specific one here to be safe */
    animation: float-terminal 6s ease-in-out infinite;
}

@keyframes float-terminal {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.terminal-header {
    background: #1E293B;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

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

.control.close {
    background: #EF4444;
}

.control.minimize {
    background: #F59E0B;
}

.control.maximize {
    background: #10B981;
}

.terminal-title {
    color: #94A3B8;
    font-size: 12px;
    font-weight: 500;
}

.terminal-tabs {
    display: flex;
    background: #0F1623;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.tab {
    padding: 8px 16px;
    color: #64748B;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.tab:hover {
    color: #E2E8F0;
    background: rgba(255, 255, 255, 0.02);
}

.tab.active {
    color: #3B82F6;
    border-bottom-color: #3B82F6;
}

.terminal-body {
    padding: 20px;
    height: 320px;
    overflow-y: auto;
    color: #E2E8F0;
    position: relative;
}

.command-line {
    margin-bottom: 8px;
    display: flex;
}

.prompt {
    color: #10B981;
    /* Green prompt */
    margin-right: 10px;
    font-weight: bold;
}

.command-text {
    color: #E2E8F0;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: #E2E8F0;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.output {
    color: #94A3B8;
    white-space: pre-wrap;
    margin-bottom: 16px;
    display: block;
}

/* Syntax Highlighting for Output */
.key {
    color: #60A5FA;
}

/* Blue */
.string {
    color: #F472B6;
}

/* Pink */
.number {
    color: #FCD34D;
}

/* Yellow */
.keyword {
    color: #C084FC;
}

/* Purple */