body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #000;
}
#game-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
#background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 0;
}
#character-container {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
#character {
    height: 60vh;
}
#text-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    box-sizing: border-box;
    z-index: 2;
}
#choices button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
