/* Terminal Message Box */
.terminal_message_box {
    max-width: 900px;
    width: 90%;
    margin: 30px auto 30px;
    background-color: #1a1a1a;
    border: 1px solid #00ff42;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
}

.terminal_text {
    color: #00ff42;
    font-family: 'font_TF4';
    font-size: 1rem;
    line-height: 1.6;
    text-align-last: left;
    min-height: 20px;
    text-shadow: 0 0 2px rgba(0, 255, 65, 0.3);
}

.terminal_text::before {
    content: "felin:~$ ";
    color: #b6b6b6;
}

/* Responsive */
@media (max-width: 768px) {
    .terminal_message_box {
        width: 95%;
        padding: 15px;
        margin: 15px auto 15px;
    }

    .terminal_text {
        font-size: 0.9rem;
        min-height: 20px;
    }
}
