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%;
    height: 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 solid 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;
    color: white;
    line-height: 24px;
    padding: 20px 24px;
}

.popup{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    max-width: 600px;
    background: rgba(26,26,26,0.95);
    border: 2px solid rgb(68,68,68);
    border-radius: 8px;
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
    pointer-events: none;
}

#close-popup{
    display: inline-block;
    margin-top: 16px;
}

#popup-terminal:target{
    opacity: 1;
    pointer-events: auto;
}

.popup-content h2{
    margin-bottom: 24px;
    font-size: 20px;
}

.popup-content p{
    margin: 12px;
    line-height: 24px;
}

.strikethrough{
    text-decoration: line-through;
    color: rgba(200,200,200,0.8);
}