    :root {
        --brand-blue: #2563eb;
    }

    body {
        font-family: 'Noto Sans KR', sans-serif;
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
        word-break: keep-all;
    }

    .logo-font {
        font-family: 'Russo One', sans-serif;
        letter-spacing: -0.02em;
    }

    .hero-bg {
        background-color: #0f172a;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        transition: background-image 0.7s ease-in-out;
    }

    @media (max-width: 768px) {
        .hero-bg {
            background-attachment: scroll;
        }
    }

    .artist-card {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .artist-card:hover {
        transform: translateY(-8px);
    }

    .modal {
        transition: opacity 0.3s ease, visibility 0.3s ease;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .modal.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    section {
        scroll-margin-top: 80px;
    }

    .tracking-widest-plus {
        letter-spacing: 0.3em;
    }

    #site-loader {
        position: fixed;
        inset: 0;
        background: white;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.5s ease;
    }

    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f5f9;
    }

    ::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

    .text-shadow-sm {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    #loginModal {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(6px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    #loginModal .lm-card {
        width: 360px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        padding: 24px;
        animation: lmFadeUp 0.25s ease-out;
    }

    @keyframes lmFadeUp {
        from {
            opacity: 0;
            transform: translateY(12px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #loginModal .lm-header {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 8px;
    }

    #loginModal .lm-close {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #aaa;
    }

    #loginModal .lm-close:hover {
        color: #000;
    }

    #loginModal .lm-body {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    #loginModal .lm-input {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        border: 1px solid #ddd;
        font-size: 14px;
        transition: 0.2s ease;
    }

    #loginModal .lm-input:focus {
        border-color: #4a6cf7;
        outline: none;
        box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.15);
    }

    #loginModal .lm-btn {
        margin-top: 4px;
        padding: 12px;
        border-radius: 10px;
        border: none;
        background: linear-gradient(135deg, #4a6cf7, #6e8efb);
        color: white;
        font-weight: 600;
        cursor: pointer;
        transition: 0.2s ease;
    }

    #loginModal .lm-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(74, 108, 247, 0.3);
    }

    /* Artist Modal SSR View Control */

    /* 1. 기본 상태: hidden 클래스가 없어도 초기 로드 시 깜빡임 방지를 위해 숨김 처리할 수 있습니다. */
    .artist-modal-overlay {
        display: none; /* 기본은 숨김 */
    }

    /* 2. 활성화 상태: 클래스에 flex가 포함되면 무조건 표시 */
    /* 콘솔에서 확인하신 'flex' 클래스가 붙었을 때 작동합니다. */
    .artist-modal-overlay.flex {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 9999 !important; /* 최상단 레이어 보장 */
    }

    /* 3. 배경 레이어 보정 */
    .artist-modal-overlay .absolute.inset-0 {
        pointer-events: auto;
    }

    /* 4. 모달 내부 컨텐츠 위치 보정 */
    .modal-content {
        position: relative;
        z-index: 10000;
        margin: auto;
    }

    /* 모달 내 모든 링크가 클릭 가능하도록 강제 */
    .artist-modal-overlay a {
        position: relative !important;
        z-index: 100 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
    }

    /* app.css 하단에 추가 */

    /* 비디오 모달 기본 숨김 */
    #video-modal {
        display: none;
    }

    #video-modal.hidden {
        display: none !important;
    }
    /* 활성화 시 강제 표시 */
    #video-modal.flex {
        display: flex !important;
        z-index: 9999 !important; /* 최상단 레이어 */
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* 모달 내 모든 클릭 가능한 요소 보장 */
    .modal a, .modal button {
        pointer-events: auto !important;
        cursor: pointer !important;
    }

/* Admin Panel 오른쪽 슬라이드 제어 */
#admin-panel.modal {
    display: flex;
    justify-content: flex-end; /* 오른쪽 정렬 */
    align-items: stretch;
    visibility: hidden; /* 기본 숨김 */
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#admin-panel.modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

#admin-panel .modal-content {
    margin: 0;
    height: 100vh;
    width: 100%;
    max-width: 450px;
    border-radius: 0;
    background-color: white;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    /* 기본 상태: 오른쪽으로 완전히 밀어냄 */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* active 클래스가 부모(#admin-panel)에 붙으면 본체가 들어옴 */
#admin-panel.active .modal-content {
    transform: translateX(0);
}

/* 미리보기용 커스텀 스크롤바 (선택사항) */
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }

/* =========================================
   Privacy Policy Modal Styles (개인정보처리방침 전용)
   ========================================= */

.privacy-body {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 0 4px; /* 모바일 여백 보정 */
}

/* 제목 (H1) */
.privacy-body h1 {
    display: block;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}

/* 소제목 (H2) */
.privacy-body h2 {
    display: block;
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #2563eb; /* privacy.php의 파란색 유지 */
}

/* 본문 텍스트 (P, LI) */
.privacy-body p, 
.privacy-body li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

/* 리스트 (UL) */
.privacy-body ul {
    display: block;
    padding-left: 20px;
    list-style-type: disc; /* 점(bullet) 강제 표시 */
    margin-bottom: 16px;
}

/* 리스트 아이템 간격 */
.privacy-body li {
    margin-bottom: 4px;
}