/* 웹툰 기본 스타일 */
.webtoon-container {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
}

.webtoon-panel {
    position: relative;
    margin-bottom: 0;
}

.webtoon-panel img {
    display: block;
    width: 100%;
    height: auto;
}

/* 나레이션 스타일 */
.narration {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    text-align: center;
    font-weight: 500;
}

.end-narration {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1.5rem 2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

/* 말풍선 스타일 */
.speech-bubble {
    position: absolute;
    background-color: white;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    max-width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    font-weight: 500;
    z-index: 10;
}

.speech-bubble.left {
    bottom: 20%;
    left: 5%;
}

.speech-bubble.right {
    bottom: 20%;
    right: 5%;
}

.speech-bubble:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.speech-bubble.left:after {
    border-right-color: white;
    border-left: 0;
    left: -15px;
    bottom: 20px;
}

.speech-bubble.right:after {
    border-left-color: white;
    border-right: 0;
    right: -15px;
    bottom: 20px;
}

/* 반응형 스타일 */
@media (max-width: 640px) {
    .speech-bubble {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .narration {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .end-narration {
        font-size: 1.1rem;
    }
}
