body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
}

#game-container {
    width: 800px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

#background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

#character {
    width: 300px;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    bottom: 200px; /* Moved up to avoid overlapping with choices */
    left: 50%;
    transform: translateX(-50%);
}

#text-box {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

#character-name {
    font-weight: bold;
    margin-bottom: 5px;
}

#choices {
    position: absolute;
    bottom: 120px; /* Moved up slightly to create more space */
    left: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.choice-btn {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10; /* Ensure buttons are above character image */
}

.choice-btn:hover {
    background-color: rgba(255, 255, 255, 1);
}