/* /Components/Layout/Footer.razor.rz.scp.css */
.footer[b-lk1e3pnz2u] {
    background-color: #111;
    /* 배경색: 아주 어두운 회색 (헤더와 다르게) */
    color: #888;
    /* 텍스트 색상: 은은한 회색 */
    padding: 2rem 0;
    border-top: 1px solid #333;
    width: 100%;
    margin-top: auto;
    /* 페이지 하단 고정용 (flex column 일 때) */
}

.footer-container[b-lk1e3pnz2u] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer p[b-lk1e3pnz2u] {
    margin: 0.25rem 0;
}

.footer-links[b-lk1e3pnz2u] {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    /* 모바일 대응 */
}

.footer-links a[b-lk1e3pnz2u] {
    color: #ccc;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover[b-lk1e3pnz2u] {
    color: #FFD700;
}

.divider[b-lk1e3pnz2u] {
    color: #555;
    font-size: 0.8rem;
}

.copyright[b-lk1e3pnz2u] {
    margin-top: 1rem !important;
    font-size: 0.75rem;
    color: #555;
}

@media (max-width: 768px) {
    .footer-container[b-lk1e3pnz2u] {
        font-size: 0.75rem;
        padding: 0 1rem;
    }
}
/* /Components/Layout/Header.razor.rz.scp.css */
/* Header Layout */
.header[b-ppbyot47ts] {
    width: 100%;
    background-color: #000;
    /* 배경색 임시 지정 (디자인에 맞게 수정 가능) */
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #FFD700;
    /* 황금색 구분선 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-container[b-ppbyot47ts] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Logo (BI) */
.header-logo img[b-ppbyot47ts] {
    height: 40px;
    width: auto;
    display: block;
}

.header-nav[b-ppbyot47ts] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Button */
.lang-btn[b-ppbyot47ts] {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.lang-btn:hover[b-ppbyot47ts] {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Language Overlay */
.language-overlay[b-ppbyot47ts] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn-b-ppbyot47ts 0.3s ease;
}

.language-options[b-ppbyot47ts] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2열 배치 */
    gap: 1rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1rem;
}

/* 4개 이상일 때 PC에서는 3열이나 4열로 보기 좋게 */
@media (min-width: 768px) {
    .language-options[b-ppbyot47ts] {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.lang-option-btn[b-ppbyot47ts] {
    background: none;
    border: 2px solid #555;
    color: #aaa;
    padding: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
    width: 100%;
    text-align: center;
}

.lang-option-btn:hover[b-ppbyot47ts],
.lang-option-btn.active[b-ppbyot47ts] {
    border-color: #fff;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn-b-ppbyot47ts {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Desktop Styles */
/* Desktop Styles */
.desktop-only[b-ppbyot47ts] {
    display: block;
}

.nav-link[b-ppbyot47ts] {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover[b-ppbyot47ts] {
    color: #ccc;
}

/* Social Icons */
.social-icons[b-ppbyot47ts] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link img[b-ppbyot47ts] {
    width: 28px;
    height: 28px;
    display: block;
    transition: transform 0.2s;
    border-radius: 4px;
    /* 카카오톡 등 사각형 아이콘 라운딩 */
}

.social-link:hover img[b-ppbyot47ts] {
    transform: scale(1.1);
}

.mobile-only[b-ppbyot47ts] {
    display: none;
}

/* Hamburger Menu Button */
/* Hamburger Menu Button */
.hamburger-menu[b-ppbyot47ts] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    /* display: flex;  <-- 제거: 모바일에서만 flex로 설정 */
    display: none;
    /* Desktop default: Hidden */
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
}



/* Responsive Styles (Mobile) */
@media (max-width: 768px) {
    .desktop-only[b-ppbyot47ts] {
        display: none;
    }

    .mobile-only[b-ppbyot47ts] {
        display: flex;
    }

    .header-container[b-ppbyot47ts] {
        padding: 0 1rem;
    }
}

/* Mobile Menu Styles */
.mobile-menu-overlay[b-ppbyot47ts] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1500;
    /* Header above content, overlay below language but above header? check z-index of lang. lang is 2000. header is implicit. */
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn-b-ppbyot47ts 0.3s ease;
}

.mobile-menu-content[b-ppbyot47ts] {
    text-align: center;
    color: #fff;
}

.mobile-menu-content h3[b-ppbyot47ts] {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #FFD700;
}

.mobile-icons[b-ppbyot47ts] {
    justify-content: center;
    gap: 2rem;
}

.mobile-icons .social-link img[b-ppbyot47ts] {
    width: 48px;
    /* 모바일 메뉴에서는 더 크게 */
    height: 48px;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-z1tglfxdy5] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-z1tglfxdy5] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-hnnla56ow5],
.components-reconnect-repeated-attempt-visible[b-hnnla56ow5],
.components-reconnect-failed-visible[b-hnnla56ow5],
.components-pause-visible[b-hnnla56ow5],
.components-resume-failed-visible[b-hnnla56ow5],
.components-rejoining-animation[b-hnnla56ow5] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-hnnla56ow5],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-hnnla56ow5],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-hnnla56ow5],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-hnnla56ow5],
#components-reconnect-modal.components-reconnect-retrying[b-hnnla56ow5],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-hnnla56ow5],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-hnnla56ow5],
#components-reconnect-modal.components-reconnect-failed[b-hnnla56ow5],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-hnnla56ow5] {
    display: block;
}


#components-reconnect-modal[b-hnnla56ow5] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-hnnla56ow5 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-hnnla56ow5 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-hnnla56ow5 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-hnnla56ow5]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-hnnla56ow5 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-hnnla56ow5 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-hnnla56ow5 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-hnnla56ow5 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-hnnla56ow5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-hnnla56ow5] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-hnnla56ow5] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-hnnla56ow5] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-hnnla56ow5] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-hnnla56ow5] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-hnnla56ow5] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-hnnla56ow5 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-hnnla56ow5] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-hnnla56ow5 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.hero-section[b-00dv9q3v8b] {
    position: relative;
    width: 100%;
    height: 600px;
    /* 고정 높이 600px */
    background-size: cover;
    background-position: 50% 50%;
    /* Center Center explicit */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-content[b-00dv9q3v8b] {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    /* 내부 요소들을 absolute로 배치하므로 flex 정렬은 보조적임 */
}

/* 어두운 오버레이 */
.hero-overlay[b-00dv9q3v8b] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-text[b-00dv9q3v8b] {
    position: absolute;
    top: 15%;
    /* 상단에서 15% 위치 (약 90px) */
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 2;
    /* 인물보다 위에 표시 (Layer) */
    text-align: center;
    width: 100%;
    margin: 0;
}

.hero-person[b-00dv9q3v8b] {
    position: absolute;
    bottom: 0;
    /* 바닥에 딱 붙임 */
    left: 50%;
    transform: translateX(-50%);
    max-height: 500px;
    width: auto;
    object-fit: contain;
    z-index: 1;

    /* Breathing Animation */
    animation: breathing-b-00dv9q3v8b 4s ease-in-out infinite;
    transform-origin: bottom center;
    /* 바닥 기준 확대 */
}

@keyframes breathing-b-00dv9q3v8b {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.03);
    }

    /* 3% 확대 */
    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* 반응형 모바일 조정 */
@media (max-width: 768px) {
    .hero-section[b-00dv9q3v8b] {
        height: 400px;
        /* 모바일 높이 축소 */
    }

    .hero-text[b-00dv9q3v8b] {
        font-size: 2rem;
        top: 10%;
    }

    .hero-person[b-00dv9q3v8b] {
        max-height: 300px;
    }
}

/* Download Section */
/* Download Section */
/* Download Section */
.download-section[b-00dv9q3v8b] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto 0 auto;
    /* 중앙 정렬 및 하단 여백 */
    padding: 0;
    flex-wrap: wrap;
}

.store-link[b-00dv9q3v8b] {
    display: inline-block;
    transition: transform 0.2s;
}

.store-link:hover[b-00dv9q3v8b] {
    transform: scale(1.05);
    /* 살짝 커지는 효과 */
}

.store-badge[b-00dv9q3v8b] {
    height: 60px;
    /* PC 기본 높이 유지 (60px) */
    width: auto;
    object-fit: contain;
}

/* 반응형 모바일 조정 추가 */
@media (max-width: 768px) {
    .download-section[b-00dv9q3v8b] {
        gap: 1rem;
    }

    .store-badge[b-00dv9q3v8b] {
        height: 45px;
        /* 모바일 축소 높이 유지 (45px) */
    }
}

/* --- FAQ 섹션 스타일 --- */
.faq-section[b-00dv9q3v8b] {
    padding: 0 0 3rem 0;
    position: relative;
    width: 100%;
}

.section-title[b-00dv9q3v8b] {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #d4af37;
    /* 골드 색상 */
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
    display: table;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
    position: relative;
}

/* 그리드 레이아웃 */
.faq-grid[b-00dv9q3v8b] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

/* 카드 디자인 */
.faq-card[b-00dv9q3v8b] {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, border-color 0.2s;
}

.faq-card:hover[b-00dv9q3v8b] {
    transform: translateY(-3px);
    border-color: #d4af37;
}

/* 질문 제목 (Gold) */
.faq-card h3[b-00dv9q3v8b] {
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* 답변 본문 (White) */
.faq-card[b-00dv9q3v8b]  p {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    word-break: keep-all;
    margin: 0;
}

/* 강조 텍스트 (밝은 노랑) */
.faq-card[b-00dv9q3v8b]  .highlight {
    color: #fff7cc;
    font-weight: bold;
    border-bottom: 1px dashed #d4af37;
}

/* 주의 사항 (붉은 계열) */
.faq-card[b-00dv9q3v8b]  .warning {
    color: #ff6b6b;
    font-weight: bold;
}

/* 링크 스타일 */
.faq-card[b-00dv9q3v8b]  .gold-link {
    color: #d4af37;
    text-decoration: underline;
    font-weight: bold;
}

/* 모바일 대응 */
@media screen and (max-width: 768px) {
    .faq-grid[b-00dv9q3v8b] {
        grid-template-columns: 1fr;
    }

    .section-title[b-00dv9q3v8b] {
        font-size: 1.8rem;
    }
}
