/* Terminal styles extracted to avoid inline CSS for stricter CSP */
.terminal {
    position: relative;
    background-color: #000;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    padding: 2rem 2rem;
    min-height: 50vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 1.25rem;
    overflow: hidden;
}

.terminal-text::after {
    content: '|';
    animation: blink 1s infinite;
}

.terminal-input {
    display: none;
    background: transparent;
    color: #0f0;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
