body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #1a1a1a;
    color: #00ff00;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.game-container {
    background-color: #000;
    border: 2px solid #00ff00;
    padding: 20px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 0 15px #00ff00;
    text-align: center;
}

h1 {
    color: #00dd00;
    border-bottom: 1px solid #00cc00;
    padding-bottom: 10px;
}

#player-info-section {
    text-align: left;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px dashed #008800;
}

#player-info-section p {
    margin: 5px 0;
}

#story-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 50px;
    text-align: left;
}

#choices-section button {
    background-color: #113311;
    color: #00ff00;
    border: 1px solid #00cc00;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#choices-section button:hover {
    background-color: #225522;
    box-shadow: 0 0 5px #00ff00;
}

#input-section input[type="text"] {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #00cc00;
    background-color: #111;
    color: #00ff00;
    font-family: inherit;
}

#input-section button,
#game-over-section button {
    background-color: #006600;
    color: #fff;
    border: 1px solid #00cc00;
    padding: 10px 15px;
    cursor: pointer;
    font-family: inherit;
}

#input-section button:hover,
#game-over-section button:hover {
    background-color: #009900;
}

#game-over-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #008800;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 255, 0, 0.3);
    border-radius: 50%;
    border-top-color: #00ff00;
    animation: spin 1s ease-in-out infinite;
    vertical-align: middle;
    margin-left: 5px;
}

#exitGameButton {
    background-color: #550000;
    /* Dark red */
    color: #ffdddd;
    border: 1px solid #880000;
    /* Add other styles */
}

#exitGameButton:hover {
    background-color: #770000;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}