body {
    margin: 0;
    padding: 0;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Malgun Gothic', sans-serif;
}

#game-container {
    position: relative;
    width: 100vw;
    max-width: 1280px; /* PC 해상도 최대치 제한 */
    aspect-ratio: 16 / 9; /* 16:9 비율 고정 */
    background-color: #333;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,1);
}

/* 레이어 공통 속성 */
#background-layer, #character-layer, #ui-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* UI 이외의 부분 클릭 통과 */
}

/* 임시 배경색 (나중에 이미지로 교체) */
#background-layer { background-color: #e0e0e0; }
#character-layer { background-color: transparent; }

/* 상태창 UI */
#ui-layer {
    pointer-events: auto;
    padding: 15px;
    box-sizing: border-box;
}

#status-bar, #stats-bar {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    font-size: 14px;
}

/* 대화창 UI */
#dialogue-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 25%;
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: auto;
    cursor: pointer;
}

#dialogue-name {
    font-size: 20px;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 10px;
}

#dialogue-text {
    font-size: 18px;
    line-height: 1.5;
}
