/* General Reset and Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    background-color: #121212;
    color: #FFFFFF;
    line-height: 1.5;
}

#game-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00FF00;
    text-align: center;
}

#game-instructions {
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: center;
}

/* ASCII Art Area */
#ascii-game {
    width: 100%;
    background-color: #1E1E1E;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: auto;
}

#ascii-map {
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    white-space: pre;
    color: #00FF00;
    text-align: left;
}

/* Controls */
#controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

#command-input {
    flex: 1;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #1E1E1E;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.2s;
}

#command-input::placeholder {
    color: #666;
}

#command-input:focus {
    border-color: #00FF00;
}

#submit {
    padding: 10px 20px;
    font-size: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #00FF00;
    color: #121212;
    cursor: pointer;
    transition: background-color 0.2s;
}

#submit:hover {
    background-color: #00CC00;
}

#submit:active {
    background-color: #009900;
}

#restart {
    padding: 10px 20px;
    font-size: 1rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #FF4500;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.2s;
}

#restart:hover {
    background-color: #FF6347;
}

#restart:active {
    background-color: #FF0000;
}

/* Game Log */
#game-log {
    width: 100%;
    background-color: #1E1E1E;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    box-sizing: border-box;
}

#game-log h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #00FF00;
}

#log-messages {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    color: #FFFFFF;
    overflow-wrap: break-word;
}

#log-messages div {
    margin-bottom: 5px;
}