@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #00ff00;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.4;
    overflow-x: hidden;
}

.terminal {
    width: 100vw;
    height: 100vh;
    padding: 20px;
    overflow-y: auto;
}

.boot-sequence {
    animation: fadeIn 0.5s ease-in;
}

.boot-line {
    margin: 2px 0;
    opacity: 0;
    animation: bootLine 0.1s ease-in forwards;
}

.prompt {
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.prompt-text {
    color: #00ff00;
    margin-right: 5px;
}

.input-line {
    display: flex;
    align-items: center;
    margin: 5px 0;
    position: relative;
}

.input {
    background: transparent;
    border: none;
    color: #00ff00;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    flex: 1;
    caret-color: transparent;
    position: relative;
    z-index: 1;
    padding-right: 12px;
    text-transform: lowercase;
}

.input:focus {
    caret-color: transparent;
}

.cursor-block {
    position: absolute;
    width: 8px;
    height: 16px;
    background: #00ff00;
    animation: blink 1s infinite;
    pointer-events: none;
    z-index: 2;
    transform: translateX(1ch);
}

.output {
    margin: 5px 0;
    white-space: pre-wrap;
}

.error {
    color: #ff6b6b;
}

.success {
    color: #51cf66;
}

.info {
    color: #74c0fc;
}

.warning {
    color: #ffd43b;
}

.link {
    color: #74c0fc;
    text-decoration: underline;
    cursor: pointer;
}

.ascii-art {
    color: #00ff00;
    font-size: 12px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .ascii-art {
        font-family: 'Courier New', monospace;
        font-size: 11px;
        line-height: 1.0;
        letter-spacing: 0.5px;
    }
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bootLine {
    to { opacity: 1; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@media (max-width: 768px) {
    body {
        font-size: 12px;
    }
    
    .terminal {
        padding: 10px;
    }
}