html, body{
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
    font-family: 'Segoe UI', sans-serif;
}

#scene{
    position: relative;
    width: 100%;
    height: 100%;
}

#scene-bg{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    object-fit: cover;
}

#ui-container{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
}

#choice-prompt{
    float: right;
    background: rgba(26,26,26,0.8);
    border: 2px wolid rgb(68,68,68);
    border-radius: 6px;
    padding: 8px 12px;
    color: white;
    margin-bottom: 10px;
}

#choices{
    clear: both;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 10px;
}

.choice{
    background: black;
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border: 1px solid rgb(68,68,68);
    border-radius: 6px;
    transition: background 0.2s ease;
}

.choice:hover{
    background: rgb(58,58,58);
}

#dialogue-box{
    background: rgba(26,26,26,0.8);
    border: 2px solid rgb(68,68,68);
    border-radius: 8px;
    padding: 20px 24px;
    color: white;
    line-height: 24px;
}

#dialogue-speaker{
    margin: 12px;
    padding: 10px 14px;
    background: black;
    color:lightgray;
    border-left: 4px solid lightgray;
    font-style: italic;
    font-weight: bold;
    border-radius: 4px;
}