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

body {
    background-color: #000000;
    font-family: 'Courier New', monospace;
    color: #00ff00;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-size: 16px;
}

.terminal-header {
    background-color: #1a1a1a;
    border-bottom: 1px solid #00ff00;
    padding: 12px 16px;
    font-size: 16px;
    color: #00ff00;
    text-align: center;
}

.terminal-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    
}

.output-line {
    margin-bottom: 4px;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 15px;
}

.command-line {
    color: #00ff00;
    font-weight: bold;
}

.input-line {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid #00ff00;
    background-color: #000000;
}

.prompt {
    color: #00ff00;
    font-weight: bold;
    margin-right: 4px;
    font-size: 15px;
}

.terminal-input {
    background-color: #000000;
    border: none;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    outline: none;
    flex: 1;
    padding: 0;
    letter-spacing: 0.5px;
}

.terminal-input::placeholder {
    color: #005500;
}

@media (max-width: 900px) {
    body {
        font-size: 14px;
    }
    
    .terminal-header {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .terminal-content {
        padding: 12px;
    }
    
    .output-line {
        font-size: 13px;
        margin-bottom: 2px;
        line-height: 1.3;
    }
    
    .prompt {
        font-size: 13px;
    }
    
    .terminal-input {
        font-size: 13px;
    }
    
    .input-line {
        padding: 10px 12px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 12px;
    }
    
    .terminal-header {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .terminal-content {
        padding: 10px;
    }
    
    .output-line {
        font-size: 12px;
        margin-bottom: 2px;
        line-height: 1.2;
    }
    
    .prompt {
        font-size: 12px;
        margin-right: 2px;
    }
    
    .terminal-input {
        font-size: 12px;
    }
    
    .input-line {
        padding: 8px 10px;
    }
}