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

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

body {
    font-family: 'JetBrains Mono', monospace;
    background-color: #1e1e1e;
    color: #f8f8f2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 900px;
}

.terminal {
    background-color: #282a36;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.terminal-header {
    background-color: #1e1e1e;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #44475a;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

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

.red {
    background-color: #ff5f56;
}

.yellow {
    background-color: #ffbd2e;
}

.green {
    background-color: #27c93f;
}

.terminal-title {
    color: #999;
    font-size: 14px;
}

.terminal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: 80vh;
}

.line {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}

.prompt {
    color: #50fa7b;
    margin-right: 10px;
    font-weight: bold;
}

.command {
    color: #8be9fd;
}

.output {
    color: #f8f8f2;
    margin: 10px 0 25px 0;
    line-height: 1.5;
    opacity: 0.9;
}

a {
    color: #ff79c6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #bd93f9;
    text-decoration: underline;
}

pre.ascii-art {
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.2;
    color: #50fa7b;
    overflow-x: auto;
    max-width: 100%;
    margin-bottom: 15px;
}

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

#cursor {
    animation: blink 1s step-end infinite;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
    }
    
    .terminal-body {
        padding: 15px;
    }
    
    pre.ascii-art {
        font-size: 10px;
    }
    
    .prompt, .command {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    pre.ascii-art {
        font-size: 6px;
    }
    
    .prompt, .command {
        font-size: 12px;
    }
}