body {
    background-color: #2b2b2b;
    margin: 0;
    padding: 20px;
    font-family: 'Courier New', monospace;
    height: 100vh;
    box-sizing: border-box;
}

.terminal {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    height: calc(100% - 40px);
    overflow-y: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background-color: #323232;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    margin: -20px -20px 10px -20px;
}

.terminal-title {
    color: #ffffff;
    margin: 0;
    font-size: 14px;
}

.terminal-output {
    margin-bottom: 20px;
    white-space: pre-wrap;
}

.prompt {
    color: #4CAF50;
    margin-right: 10px;
}

.command-line {
    display: flex;
    align-items: flex-start;
}

#input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    width: 100%;
    padding: 0;
    margin: 0;
    outline: none;
}

.output {
    color: #B3B3B3;
    margin: 5px 0;
}

.error {
    color: #ff6b6b;
}

.success {
    color: #4CAF50;
}

.game-input {
    color: #FFD700;
}