body {
    background-color: #000;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#game-container {
    width: 80%;
    max-width: 800px;
    border: 2px solid #0f0;
    padding: 20px;
    box-shadow: 0 0 20px #0f0;
}

#story-text {
    margin-bottom: 20px;
    white-space: pre-wrap;
    line-height: 1.5;
}

#choices button {
    background-color: #000;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
}

#choices button:hover {
    background-color: #0f0;
    color: #000;
}

#inventory {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #0f0;
}

#player-input {
    background-color: #000;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1em;
}

#fireworks-canvas {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}