body {
    background-color: #0f0f0f;
    color: #00ff41; /* Matrix Yeşili */
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.container {
    width: 80%;
    max-width: 800px;
    text-align: center;
}

input {
    padding: 10px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    width: 60%;
}

button {
    padding: 10px 20px;
    background: #00ff41;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.terminal-box {
    background: #000;
    border: 1px solid #333;
    padding: 20px;
    text-align: left;
    margin-top: 20px;
    min-height: 200px;
    white-space: pre-wrap;
    overflow-y: auto;
}