/* avata.html 전용 스타일 (main.css와 충돌 방지) */
.language-selector {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 1rem;
}
.lang-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}
.lang-link:hover {
    color: #5e42a6;
}
.lang-link.active {
    color: #5e42a6;
    font-weight: 500;
}
.content-section { display: none; }
.content-section.active { display: block; }
.avata-slider-container {
    position: relative;
    max-width: 640px;
    margin: 0 auto 2rem auto;
    background: rgba(94, 66, 166, 0.1);
    border: 1px solid rgba(94, 66, 166, 0.3);
    border-radius: 10px;
    padding: 20px;
    overflow: hidden;
}
.avata-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 0.375rem;
}
.avata-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(105%);
    transition: all 0.4s ease-in-out;
}
.avata-slide.active {
    opacity: 1;
    transform: translateX(0);
}
.avata-slide.prev {
    transform: translateX(-105%);
}
.avata-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.02);
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 50px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.4rem;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.slider-arrow:hover {
    background: rgba(94, 66, 166, 0.8);
    transform: translateY(-50%) scale(1.1);
}
.slider-arrow.prev { left: 5px; }
.slider-arrow.next { right: 5px; }
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background: #5e42a6;
    transform: scale(1.3);
}
.dot:hover {
    background: rgba(94, 66, 166, 0.7);
}
.features-list {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}
.features-list li {
    padding: 0.5rem 0;
    border-bottom: none;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.features-list li:before { content: none; }
.pricing-box {
    background: rgba(94, 66, 166, 0.1);
    border: 1px solid rgba(94, 66, 166, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}
.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5e42a6;
    margin: 10px 0;
    line-height: 1.3;
}
.pricing-box .features-list {
    text-align: left;
    max-width: 650px;
    margin: 0 auto;
    list-style: disc;
    padding-left: 2rem;
}
.pricing-box .features-list li {
    white-space: nowrap;
    overflow: visible;
    text-overflow: none;
    padding: 0.4rem 0;
    margin-bottom: 0.4rem;
    line-height: 1.5;
    display: list-item;
}
.pricing-box .features-list li:before { content: none; }
@media (max-width: 768px) {
    .language-selector {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
        font-size: 0.85rem;
    }
    .lang-link { font-size: 0.85rem; }
    .avata-slider-container { max-width: 100%; padding: 15px; }
    .avata-slider { height: 300px; }
    .slider-arrow { width: 25px; height: 40px; font-size: 1.1rem; }
    .slider-arrow.prev, .slider-arrow.next { left: 3px; right: 3px; }
    .pricing-box .features-list { max-width: 100%; padding-left: 1.8rem; }
    .pricing-box .features-list li {
        font-size: 0.9rem;
        line-height: 1.4;
        white-space: normal;
    }
}
@media (max-width: 480px) {
    .language-selector { font-size: 0.8rem; }
    .lang-link { font-size: 0.8rem; }
    .avata-slider { height: 250px; }
    .slider-arrow { width: 22px; height: 35px; font-size: 1rem; }
    .slider-arrow.prev, .slider-arrow.next { left: 2px; right: 2px; }
    .pricing-box .features-list { padding-left: 1.5rem; }
    .pricing-box .features-list li {
        font-size: 0.85rem;
        white-space: normal;
    }
}
