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

#game-container {
    width: 100vw;
    height: 100vh;
    position: relative;
}

#background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#character-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#dialogue-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3;
}

#character-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

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

#options-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-button {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.option-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.option-button:active {
    background-color: rgba(255, 255, 255, 0.4);
}

img {
    max-width: 100%;
    max-height: 100%;
}

.character {
    position: absolute;
    bottom: 10%;
    max-height: 75%;
}

.character-left {
    left: 10%;
}

.character-right {
    right: 10%;
    left: auto;
}

.character-name-tag {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    z-index: 10;
}

.character-left .character-name-tag {
    left: 50%;
}

.character-right .character-name-tag {
    left: 50%;
}

.chapter-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1000;
    width: 100%;
    max-width: 800px;
}

.chapter-title h1 {
    font-size: 72px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.chapter-title h2 {
    font-size: 36px;
    color: #ffd700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin: 0 0 40px 0;
    line-height: 1.2;
}