/* ==========================================================================
   ?�파급스???�리미엄 마스???��????�스??(style.css)
   Aesthetics: Deep Cyberpunk Dark, Glassmorphism, Neon Border Animation
   ========================================================================== */

/* 1. 글로벌 ?�자???�큰 �?HSL 변???�정 (공통 ?�플�??�심) */
:root {
    --bg-main: #06090F;           /* 무결??극강 ?�블??*/
    --bg-card: rgba(13, 20, 33, 0.7); /* 고선�?반투�??�크�?*/
    --bg-card-hover: rgba(20, 30, 48, 0.95);
    --border-neon-pink: #FF2E93;  /* ?�이�?모드 ?�이?�티???�크 */
    --border-neon-blue: #00E5FF;  /* 모의 모드 ?�이?�티???�안 블루 */
    --border-muted: rgba(255, 255, 255, 0.06);
    --border-active: rgba(255, 255, 255, 0.15);

    --text-pure: #FFFFFF;
    --text-normal: #C1CCD6;
    --text-muted: #6C7A8C;

    --font-title: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* ?�이?�드 그림??�?글로우 ?�과 */
    --shadow-pink: 0 0 25px rgba(255, 46, 147, 0.25);
    --shadow-blue: 0 0 25px rgba(0, 229, 255, 0.25);
    --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* 2. ?�역 리셋 �??�리미엄 ?�더�?최적??*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
}

body {
    background-color: var(--bg-main);
    color: var(--text-normal);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* 깜빡???�천 차단 �?부?�러???�랜지??강제 */
.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. ?�이버네???�스 글로우 배경 ?�이??*/
.bg-glow-pink {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 46, 147, 0.06) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.bg-glow-blue {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 40%;
    left: -200px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* 4. ?�더 ?�비게이??(초고?�질 ?�크�??�질) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: rgba(6, 9, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-muted);
    z-index: 1000;
}

.header-container {
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    position: relative;
}

.logo-area {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0 !important;
}

.logo-img {
    height: 30px; /* 75px ?바 ?이 ?에???금 비율?30px ?더?*/
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast; /* ?스???롬?극강 ?명???? */
}

.logo-dopa {
    background: linear-gradient(135deg, var(--border-neon-pink) 0%, var(--border-neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.right-util-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0 !important;
}

.pc-menu-area {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 0 !important;
}

@media (min-width: 769px) {
    .pc-menu-area {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
        z-index: 10;
        pointer-events: auto;
    }
}

.pc-menu-area a,
.pc-menu-area .nav-item {
    color: #C1CCD6 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 8px 10px !important;
    display: inline-block !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.pc-menu-area a:hover,
.pc-menu-area a.active,
.pc-menu-area .nav-item:hover,
.pc-menu-area .nav-item.active {
    color: #FFFFFF !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4) !important;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--border-neon-pink), var(--border-neon-blue));
    border-radius: 2px;
}

.auth-download-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* 5. ?�리미엄 버튼 공통 ?�플�?*/
.btn-neon-pink {
    background: linear-gradient(135deg, var(--border-neon-pink) 0%, #D6006B 100%);
    color: var(--text-pure);
    border: none;
    padding: 11px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 46, 147, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-neon-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 46, 147, 0.55), var(--shadow-pink);
}

.btn-neon-blue {
    background: linear-gradient(135deg, var(--border-neon-blue) 0%, #0099AB 100%);
    color: var(--text-pure);
    border: none;
    padding: 11px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-neon-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 229, 255, 0.55), var(--shadow-blue);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-active);
    color: var(--text-pure);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-pure);
}

/* 6. 공통 ?�리미엄 카드 ?�플�?(?�드코딩 배제 ?�심) */
.premium-card {
    background: var(--bg-card);
    border: 1px solid var(--border-muted);
    box-shadow: var(--shadow-card);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-active);
    transform: translateY(-4px);
}

.premium-card.no-hover-lift:hover {
    transform: none !important;
}

/* ?�크/블루 ?�온 ?�두�?변??공통 ?�래??*/
.premium-card.pink-glow:hover {
    border-color: var(--border-neon-pink);
    box-shadow: 0 10px 30px rgba(255, 46, 147, 0.15), var(--shadow-card);
}

.premium-card.blue-glow:hover {
    border-color: var(--border-neon-blue);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15), var(--shadow-card);
}

.premium-card.gold-glow:hover {
    border-color: #FF9F00;
    box-shadow: 0 10px 30px rgba(255, 159, 0, 0.25), var(--shadow-card);
}

/* 7. 메인 ?�크?�페?�스 구조 */
#main-content {
    margin-top: 75px;
    min-height: calc(100vh - 195px);
    padding: 30px 24px;
}

.container-premium {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* 8. ?�어�??�트�?비주??*/
.hero-section {
    text-align: center;
    padding: 50px 0 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 46, 147, 0.08);
    border: 1px solid rgba(255, 46, 147, 0.25);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--border-neon-pink);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.1);
}

.hero-badge .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--border-neon-pink);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 46, 147, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 46, 147, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 46, 147, 0); }
}

.hero-title {
    font-family: var(--font-title);
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-pure);
    margin-bottom: 24px;
    letter-spacing: -1.8px;
}

.hero-title .hero-title-line1 {
    display: block;
    color: inherit;
}

.hero-title .hero-title-line2 {
    display: inline-block;
    background: linear-gradient(135deg, var(--border-neon-pink) 0%, var(--border-neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    background: linear-gradient(135deg, var(--border-neon-pink) 0%, var(--border-neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 🎨 [인라인 그라데이션/컬러 100% 보존 규칙] 에디터에서 설정한 커스텀 그라데이션 및 색상 1:1 완벽 표현 */
.hero-title [style*="gradient"],
.hero-title .hero-title-line1 [style*="gradient"],
.hero-title .hero-title-line2 [style*="gradient"],
.hero-title [style*="-webkit-background-clip"],
.hero-title [style*="background-clip"] {
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.hero-title [style*="color:"] {
    -webkit-text-fill-color: initial;
}

.hero-desc {
    font-size: 19px;
    color: var(--text-normal);
    max-width: 720px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

/* 🌐 [CMS 라이브 에디터 1:1 줄바꿈 무결성 보정] 에디터의 엔터/줄바꿈과 본페이지 화면의 줄간격을 완벽 일치 */
.hero-desc div, .hero-desc p,
.step-desc div, .step-desc p,
.security-banner-desc div, .security-banner-desc p,
.cta-banner-desc div, .cta-banner-desc p,
#homeHeroDesc div, #homeHeroDesc p,
#homeProcessDesc div, #homeProcessDesc p,
#live_heroDesc div, #live_heroDesc p,
#live_dlMainDesc div, #live_dlMainDesc p,
#live_mypageMainDesc div, #live_mypageMainDesc p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: inherit !important;
}

/* 🎨 [CMS 텍스트 색상 및 서식 1:1 보존] 에디터에서 지정한 글자 색상이 부모 그라데이션에 묻히지 않도록 보장 */
#pricing_title span, #pricingCms_title span,
#feat_specTitle span, #featCms_specTitle span {
    -webkit-text-fill-color: initial !important;
    background: none !important;
}

/* 9. ?코?언 FAQ ????(CS ?동 0% ?심 기술) */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-muted);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.25s ease;
}

.faq-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-pure);
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-q-badge {
    color: var(--border-neon-pink);
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 18px;
}

.faq-arrow {
    color: var(--text-muted);
    transition: transform 0.3s ease;
    font-weight: 700;
}

.faq-item.active {
    border-color: var(--border-active);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--border-neon-blue);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.15);
}

.faq-content {
    padding: 24px;
    font-size: 14px;
    color: var(--text-normal);
    line-height: 1.7;
    border-top: 1px solid var(--border-muted);
}

/* 10. 프리미엄 마스터 푸터 */
.main-footer {
    background: #04060A;
    border-top: 1px solid var(--border-muted);
    padding: 50px 24px 40px;
    text-align: center;
}

.footer-top-grid {
    max-width: 1100px;
    margin: 0 auto 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-img {
    height: 30px;
    object-fit: contain;
    align-self: flex-start;
    image-rendering: -webkit-optimize-contrast;
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--text-normal);
    line-height: 1.6;
}

.footer-email-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--border-neon-blue);
    font-weight: 500;
}

.footer-mail-link {
    color: var(--border-neon-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-mail-link:hover {
    color: var(--text-pure);
}

.footer-sns-area {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sns-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sns-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-sns-outline {
    background: transparent;
    border: 1px solid var(--border-active);
    color: var(--text-normal);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-sns-outline:hover {
    border-color: var(--border-neon-pink);
    color: var(--text-pure);
    box-shadow: 0 0 10px rgba(255, 46, 147, 0.2);
}

.footer-menu-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-title {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-pure);
    position: relative;
    padding-bottom: 8px;
    margin: 0;
}

.menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--border-neon-pink);
    border-radius: 1px;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.menu-list.grid-2col {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.menu-list a {
    color: var(--text-normal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
    white-space: nowrap;
}

.menu-list a:hover {
    color: var(--border-neon-blue);
    transform: translateX(3px);
}

/* 투자 경고 배너 */
.footer-warning-banner {
    max-width: 1100px;
    margin: 0 auto 32px;
    background: rgba(255, 165, 0, 0.03);
    border: 1px solid rgba(255, 165, 0, 0.15);
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.warn-icon {
    color: #FFA500;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.warn-text {
    font-size: 13px;
    color: var(--text-normal);
    line-height: 1.6;
    margin: 0;
}

.warn-text strong {
    color: #FFA500;
    font-weight: 700;
}

/* 하단 사업자 정보 및 카피라이트 (중앙 정렬 중심 구조) */
.footer-bottom-info {
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

.footer-center-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-img-center {
    height: 30px;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.footer-brand-desc-center {
    font-size: 14px;
    color: var(--text-normal);
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    word-break: keep-all;
}

.info-grid.justify-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.info-address {
    margin: 0 0 16px 0;
    color: var(--text-muted);
    text-align: center;
}

.footer-copyright {
    margin-top: 16px;
    font-size: 12.5px;
    color: var(--text-muted);
    text-align: center;
}

/* 📱 스마트 유동 반응형 쿼리 (3컬럼 가로축 100% 유지 & 내부 소메뉴만 자동 감싸기) */
@media (max-width: 768px) {
    .footer-top-grid {
        gap: 16px !important;
    }
    .menu-list.grid-2col {
        grid-template-columns: 1fr !important; /* 좁은 화면에선 소메뉴만 1열로 오밀조밀하게 꺾임 (짤림 0%) */
        gap: 8px !important;
    }
    .menu-title {
        font-size: 15px !important;
    }
    .menu-list a {
        font-size: 13px !important;
    }
}

/* 11. 고해?�도 무결 ?��? 반응??쿼리 */
@media (max-width: 900px) {
    .hero-title { font-size: 44px; }
    .hero-desc { font-size: 16px; }
    .main-nav { gap: 24px; }
}

@media (max-width: 768px) {
    .main-nav { display: flex; gap: 12px; } /* ?�드 ?�침 �??�블�??�면?�서 메뉴 증발 ?�천 차단 */
    .main-nav .nav-item { font-size: 12.5px; padding: 4px 6px; }
    .hero-title { font-size: 34px; letter-spacing: -1px; }
    .hero-desc { font-size: 15px; }
    .auth-download-area { gap: 10px; }
    .btn-neon-pink, .btn-neon-blue { padding: 9px 18px; font-size: 13px; }
}

@media (max-width: 500px) {
    .main-nav { display: none; } /* 극도�??�소??모바???�로 뷰포?�에?�만 간소??격발 */
}

/* 12. ???�면 보강 ?�리미엄 ?�자???�스??*/
.home-step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 60px 0;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-muted);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-neon-blue);
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.15), var(--shadow-card);
}

.step-num {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 800;
    color: var(--border-neon-blue);
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 13.5px;
    color: var(--text-normal);
    line-height: 1.6;
}

.security-lock-banner {
    background: rgba(0, 229, 255, 0.02);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 16px;
    padding: 40px;
    margin: 80px 0;
    display: flex;
    align-items: center;
    gap: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
}

.security-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(0, 229, 255, 0.08);
    border: 2px solid var(--border-neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--border-neon-blue);
    box-shadow: var(--shadow-blue);
    flex-shrink: 0;
}

.security-content-box {
    text-align: left;
}

.security-banner-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 8px;
}

.security-banner-desc {
    font-size: 14px;
    color: var(--text-normal);
    line-height: 1.6;
    margin: 0;
}

.cta-highlight-banner {
    background: rgba(255, 46, 147, 0.02);
    border: 1px solid rgba(255, 46, 147, 0.15);
    border-radius: 16px;
    padding: 50px 40px;
    margin: 80px 0 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.cta-banner-title {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 12px;
}

.cta-banner-title span {
    color: var(--border-neon-pink);
    text-shadow: 0 0 15px rgba(255, 46, 147, 0.4);
}

.cta-banner-desc {
    font-size: 15px;
    color: var(--text-normal);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .security-lock-banner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 30px 20px;
    }
    .security-content-box {
        text-align: center;
    }
    .cta-highlight-banner {
        padding: 40px 20px;
    }
}

/* Z-pattern ?명 카드 ????*/
.feature-showcase-row {
    display: flex;
    align-items: center;
    gap: 48px;
    margin: 80px 0;
    text-align: left;
}

.feature-showcase-row:nth-child(even) {
    flex-direction: row-reverse;
}

.showcase-desc-box {
    flex: 1;
}

.showcase-img-box {
    flex: 1.4;
}

@media (max-width: 768px) {
    .feature-showcase-row, .feature-showcase-row:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin: 50px 0;
    }
}

/* ==========================================================================
   로그인 / 회원가입 프리미엄 UI 및 마이페이지 통합 마스터 스타일
   ========================================================================== */

/* 1. 헤더 로그인 프리미엄 네온 버튼 */
.btn-premium-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--text-pure);
    padding: 9px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.5px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.05);
}

.btn-premium-outline:hover {
    background: linear-gradient(135deg, rgba(255, 46, 147, 0.1) 0%, rgba(0, 229, 255, 0.1) 100%);
    border-color: var(--border-neon-blue);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.45), 0 0 8px rgba(255, 46, 147, 0.25);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* 2. 로그인/회원가입 모달 통합 오버레이 */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 10, 0.82);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

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

/* 3. 모달 카드 본체 (사이보네틱 글래스모피즘 - 20px 24px 패딩 슬림 다이어트) */
.auth-modal-card {
    background: rgba(13, 20, 33, 0.85);
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 229, 255, 0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    padding: 20px 24px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.auth-modal-overlay.active .auth-modal-card {
    transform: translateY(0) scale(1);
    border-color: var(--border-neon-blue);
}

/* 닫기 버튼 (모서리 끝 바짝 이동 & 탭 간섭 100% 차단) */
.auth-close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 10;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.auth-close-btn:hover {
    color: var(--border-neon-pink);
    transform: rotate(90deg);
}

/* 4. 로그인/회원가입 탭 그룹 (우측 닫기버튼 간섭 0% 우측 패딩 지대 확보) */
.auth-tab-group {
    display: flex;
    border-bottom: 1px solid var(--border-muted);
    margin-bottom: 12px;
    position: relative;
    padding-right: 36px;
    gap: 8px;
}

.auth-tab {
    flex: 1;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.auth-tab:hover {
    color: var(--text-pure);
}

.auth-tab.active {
    color: var(--border-neon-blue);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--border-neon-blue), var(--border-neon-pink));
    border-radius: 2px;
}

/* 5. 프리미엄 인풋 그룹 (세로 컴팩트 슬림 다이어트) */
.auth-form-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}ext-align: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.auth-tab:hover {
    color: var(--text-pure);
}

.auth-tab.active {
    color: var(--border-neon-blue);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--border-neon-blue), var(--border-neon-pink));
    border-radius: 2px;
}

/* 5. 프리미엄 인풋 그룹 (세로 컴팩트 슬림 다이어트) */
.auth-form-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.auth-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-normal);
    letter-spacing: 0.4px;
}

.auth-input-wrapper {
    position: relative;
    width: 100%;
}

.auth-input {
    width: 100%;
    background: rgba(6, 9, 15, 0.8);
    border: 1px solid var(--border-muted);
    color: var(--text-pure);
    padding: 10px 14px;
    border-radius: 9px;
    font-size: 13.5px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-input:focus {
    border-color: var(--border-neon-blue);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.15), inset 0 0 8px rgba(0, 229, 255, 0.05);
    background: rgba(6, 9, 15, 0.95);
}

/* 🛡️ 서브 액션 버튼 비활성화 전용 🚫 금지 마우스 커서 및 클래스 스타일 */
.btn-sub-action {
    white-space: nowrap;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.btn-sub-action-blue {
    padding: 0 14px;
    font-size: 12.5px;
    background: rgba(0, 229, 255, 0.15);
    border: 1px solid var(--border-neon-blue);
    color: #00e5ff;
    cursor: pointer;
}
.btn-sub-action-pink {
    padding: 0 12px;
    font-size: 12px;
    background: rgba(255, 46, 147, 0.15);
    border: 1px solid var(--border-neon-pink);
    color: #ff2e93;
    cursor: pointer;
}
.btn-sub-action:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    pointer-events: auto !important;
    filter: grayscale(0.9) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.35) !important;
    box-shadow: none !important;
}

/* 6. 구�? 간편 ?�증 ?�리미엄 ?�크�?버튼 */
.btn-google-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-pure);
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.btn-google-auth:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-active);
    transform: translateY(-1px);
}

.google-icon-svg {
    width: 18px;
    height: 18px;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 10px 0;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-muted);
}

.auth-divider:not(:empty)::before {
    margin-right: 12px;
}

.auth-divider:not(:empty)::after {
    margin-left: 12px;
}

/* 7. 마이?�이지 ?�?�보???�리미엄 ?�포 ?�역 */
.mypage-dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 32px;
    margin-top: 40px;
}

.mypage-license-status-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.mypage-status-badge {
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    color: var(--border-neon-blue);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.mypage-status-badge.expired {
    background: rgba(255, 46, 147, 0.08);
    border-color: rgba(255, 46, 147, 0.25);
    color: var(--border-neon-pink);
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.1);
}

.mypage-key-display {
    font-family: 'Outfit', monospace;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-pure);
    background: rgba(6, 9, 15, 0.7);
    border: 1px solid var(--border-muted);
    padding: 14px 24px;
    border-radius: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    width: 100%;
    word-break: break-all;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.5);
}

.mypage-action-row {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
}

.btn-mypage-action {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

@media (max-width: 900px) {
    .mypage-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ?�� 8. 초광????관리자 마스???�?�보???�용 ?�리미엄 ?�자???�스??
   ========================================================================== */

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-muted);
    padding-bottom: 24px;
}

.admin-badge-gold {
    background: rgba(255, 159, 0, 0.08);
    border: 1px solid rgba(255, 159, 0, 0.25);
    color: #FF9F00;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 159, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-badge-gold .pulse-dot-gold {
    width: 6px;
    height: 6px;
    background: #FF9F00;
    border-radius: 50%;
    animation: goldPulse 1.8s infinite;
}

@keyframes goldPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 159, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 159, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 159, 0, 0); }
}

.admin-stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.admin-stat-card {
    background: rgba(13, 20, 33, 0.6);
    border: 1px solid var(--border-muted);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: left;
}

.admin-stat-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.admin-stat-value {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-pure);
    margin-top: 6px;
}

.admin-stat-value.blue { color: var(--border-neon-blue); text-shadow: 0 0 15px rgba(0, 229, 255, 0.2); }
.admin-stat-value.pink { color: var(--border-neon-pink); text-shadow: 0 0 15px rgba(255, 46, 147, 0.2); }

/* 초선�??�크�??�이????*/
.admin-table-container {
    background: var(--bg-card);
    border: 1px solid var(--border-muted);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 24px;
}

.admin-table {
    width: 100%;
    min-width: 1120px;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    background: rgba(6, 9, 15, 0.8);
    color: var(--text-pure);
    font-weight: 700;
    font-size: 13.5px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-active);
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-muted);
    font-size: 14px;
    color: var(--text-normal);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.015);
    color: var(--text-pure);
}

.admin-user-email {
    font-weight: 600;
    color: var(--text-pure);
}

.admin-key-code {
    font-family: 'Outfit', monospace;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--border-neon-blue);
    background: rgba(0, 229, 255, 0.05);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0, 229, 255, 0.12);
}

/* 관리자 ?�션 버튼 ?�플�?*/
.admin-action-btn-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-admin-action {
    background: transparent;
    border: 1px solid var(--border-active);
    color: var(--text-normal);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-admin-action:hover:not(.not-allowed-lock) {
    color: var(--text-pure);
    background: rgba(255, 255, 255, 0.05);
}

.btn-admin-action.reset {
    border-color: rgba(0, 229, 255, 0.3);
    color: var(--border-neon-blue);
}
.btn-admin-action.reset:hover:not(.not-allowed-lock) {
    background: rgba(0, 229, 255, 0.08);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.btn-admin-action.adjust {
    border-color: rgba(255, 159, 0, 0.3);
    color: #FF9F00;
}
.btn-admin-action.adjust:hover:not(.not-allowed-lock) {
    background: rgba(255, 159, 0, 0.08);
    box-shadow: 0 0 10px rgba(255, 159, 0, 0.2);
}

.btn-admin-action.revoke {
    border-color: rgba(255, 46, 147, 0.3);
    color: var(--border-neon-pink);
}
.btn-admin-action.revoke:hover:not(.not-allowed-lock) {
    background: rgba(255, 46, 147, 0.08);
    box-shadow: 0 0 10px rgba(255, 46, 147, 0.2);
}

.admin-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.admin-status-badge.active {
    background: rgba(0, 229, 255, 0.05);
    color: var(--border-neon-blue);
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.admin-status-badge.revoked {
    background: rgba(255, 46, 147, 0.05);
    color: var(--border-neon-pink);
    border: 1px solid rgba(255, 46, 147, 0.15);
}

/* ==========================================================================
   ?�� ?�리미엄 커스?� ?�크롤바 ?�자??(글?�스모피�??�두???�마??
   ========================================================================== */
/* 1. ?�롬, ?�파�? ?��???글로벌 ?�크롤바 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(6, 9, 15, 0.7);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 255, 0.2);
    border-radius: 4px;
    border: 1px solid rgba(0, 229, 255, 0.05);
    transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 229, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

/* 2. ?정 컨테?너 ?용 ?크롤바 (모달 ?? ?크롤바 ?? ?? */
.auth-modal-card::-webkit-scrollbar {
    width: 6px;
}
.auth-modal-card::-webkit-scrollbar-track {
    background: rgba(6, 9, 15, 0.5);
    border-radius: 10px;
}
.auth-modal-card::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 255, 0.25);
    border-radius: 10px;
}
.auth-modal-card::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 229, 255, 0.6);
}

/* ==========================================================================
   ? ?리미엄 ????렬 버튼 ?자??
   ========================================================================== */
.btn-admin-sort-tab {
    background: transparent;
    color: var(--text-muted);
    border: none;
    outline: none;
}
.btn-admin-sort-tab.active {
    background: rgba(0, 168, 255, 0.12) !important;
    color: #00a8ff !important;
    border: 1px solid rgba(0, 168, 255, 0.45) !important;
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.35);
}
.btn-admin-sort-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-pure);
}

/* ──────────────────────────────────────────────────────────
   [권한 세분화 통제] 매니저 수용 불가 버튼 금지(Not-Allowed) 커서 및 호버/터치 색상변화 완전 차단
   (기존 활성 뱃지의 불빛과 색상은 100% 선명하게 보존되며 마우스/터치 올림 시 색상 변화 없이 🚫 금지 커서 표시)
   ────────────────────────────────────────────────────────── */
.not-allowed-lock,
.not-allowed-lock:hover,
.not-allowed-lock:active,
.not-allowed-lock:focus {
    cursor: not-allowed !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* 1. 비활성 상태 버튼이 금지(not-allowed-lock) 처리되었을 때 호버/터치/클릭 색상변화 100% 차단 */
#btnRoleUser.not-allowed-lock:not(.active):hover, #btnRoleUser.not-allowed-lock:not(.active):active, #btnRoleUser.not-allowed-lock:not(.active):focus,
#btnRoleManager.not-allowed-lock:not(.active):hover, #btnRoleManager.not-allowed-lock:not(.active):active, #btnRoleManager.not-allowed-lock:not(.active):focus,
#btnRoleGod.not-allowed-lock:not(.active):hover, #btnRoleGod.not-allowed-lock:not(.active):active, #btnRoleGod.not-allowed-lock:not(.active):focus,
#btnPlanNew.not-allowed-lock:not(.active):hover, #btnPlanNew.not-allowed-lock:not(.active):active, #btnPlanNew.not-allowed-lock:not(.active):focus,
#btnPlanFree.not-allowed-lock:not(.active):hover, #btnPlanFree.not-allowed-lock:not(.active):active, #btnPlanFree.not-allowed-lock:not(.active):focus,
#btnPlanStandard.not-allowed-lock:not(.active):hover, #btnPlanStandard.not-allowed-lock:not(.active):active, #btnPlanStandard.not-allowed-lock:not(.active):focus,
#btnPlanPremium.not-allowed-lock:not(.active):hover, #btnPlanPremium.not-allowed-lock:not(.active):active, #btnPlanPremium.not-allowed-lock:not(.active):focus,
#btnPlanVip.not-allowed-lock:not(.active):hover, #btnPlanVip.not-allowed-lock:not(.active):active, #btnPlanVip.not-allowed-lock:not(.active):focus,
#btnPlanForever.not-allowed-lock:not(.active):hover, #btnPlanForever.not-allowed-lock:not(.active):active, #btnPlanForever.not-allowed-lock:not(.active):focus,
#btnStatusActive.not-allowed-lock:not(.active):hover, #btnStatusActive.not-allowed-lock:not(.active):active, #btnStatusActive.not-allowed-lock:not(.active):focus,
#btnStatusPause.not-allowed-lock:not(.active):hover, #btnStatusPause.not-allowed-lock:not(.active):active, #btnStatusPause.not-allowed-lock:not(.active):focus,
#btnStatusExpired.not-allowed-lock:not(.active):hover, #btnStatusExpired.not-allowed-lock:not(.active):active, #btnStatusExpired.not-allowed-lock:not(.active):focus,
#btnStatusRevoked.not-allowed-lock:not(.active):hover, #btnStatusRevoked.not-allowed-lock:not(.active):active, #btnStatusRevoked.not-allowed-lock:not(.active):focus {
    background: rgba(15, 23, 36, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #8a99ad !important;
    box-shadow: none !important;
    opacity: 0.7 !important;
    transform: none !important;
    filter: none !important;
}

/* 2. 원형 리셋 및 하단 고유 버튼 금지 처리 시 호버 변형 차단 */
#btnResetDetControls.not-allowed-lock:hover, #btnResetDetControls.not-allowed-lock:active, #btnResetDetControls.not-allowed-lock:focus,
#btnInjectKey.not-allowed-lock:hover, #btnInjectKey.not-allowed-lock:active, #btnInjectKey.not-allowed-lock:focus,
#btnForceLogout.not-allowed-lock:hover, #btnForceLogout.not-allowed-lock:active, #btnForceLogout.not-allowed-lock:focus,
#btnSaveAdminUserDetail.not-allowed-lock:hover, #btnSaveAdminUserDetail.not-allowed-lock:active, #btnSaveAdminUserDetail.not-allowed-lock:focus,
.btn-admin-action.not-allowed-lock.active:hover, .btn-admin-action.not-allowed-lock.active:active, .btn-admin-action.not-allowed-lock.active:focus {
    transform: none !important;
    filter: none !important;
}

/* 3. 📱 모바일/스마트폰(터치 기기) 전용 금지 항목 0원 반응 락다운 (터치 시 색상 변화/하이라이트 100% 무반응) */
@media (hover: none), (pointer: coarse) {
    .not-allowed-lock {
        pointer-events: none !important;
        touch-action: none !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
    }
}

/* ──────────────────────────────────────────────────────────
   [원형 초기화 버튼 스타일] 360도 회전 애니메이션
   ────────────────────────────────────────────────────────── */
.btn-reset-icon-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    padding: 0;
}

.btn-reset-icon-circle:hover:not(.not-allowed-lock) {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.45);
    color: #00e5ff;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    transform: rotate(180deg);
}

.btn-reset-icon-circle:active:not(.not-allowed-lock) {
    transform: scale(0.9) rotate(360deg);
}

/* ==========================================================================
   [3단 제어판 뱃지 전용] 비활성(선명한 가독성) & 개별 시그니처 호버 틴트
   ========================================================================== */
#detBtnRoleGroup .btn-admin-action:not(.active),
#detBtnPlanGroup .btn-admin-action:not(.active),
#detBtnStatusGroup .btn-admin-action:not(.active) {
    background: rgba(15, 23, 36, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #8a99ad !important;
    box-shadow: none !important;
    opacity: 0.7 !important;
    font-weight: 700 !important;
}

/* 1. 계정 권한 (Role) 개별 호버 틴트 */
#btnRoleUser:hover:not(.active):not(.not-allowed-lock) {
    background: rgba(0, 229, 255, 0.06) !important;
    border-color: rgba(0, 229, 255, 0.4) !important;
    color: #00e5ff !important;
    opacity: 0.95 !important;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.2) !important;
}
#btnRoleManager:hover:not(.active):not(.not-allowed-lock) {
    background: rgba(176, 46, 255, 0.06) !important;
    border-color: rgba(176, 46, 255, 0.4) !important;
    color: #b02eff !important;
    opacity: 0.95 !important;
    box-shadow: 0 0 8px rgba(176, 46, 255, 0.2) !important;
}
#btnRoleGod:hover:not(.active):not(.not-allowed-lock) {
    background: rgba(255, 46, 147, 0.06) !important;
    border-color: rgba(255, 46, 147, 0.4) !important;
    color: #ff2e93 !important;
    opacity: 0.95 !important;
    box-shadow: 0 0 8px rgba(255, 46, 147, 0.2) !important;
}

/* 2. 구독 요금제 (Plan) 개별 호버 틴트 */
#btnPlanNew:hover:not(.active):not(.not-allowed-lock) {
    background: rgba(170, 170, 170, 0.06) !important;
    border-color: rgba(170, 170, 170, 0.4) !important;
    color: #cccccc !important;
    opacity: 0.95 !important;
    box-shadow: 0 0 6px rgba(170, 170, 170, 0.2) !important;
}
#btnPlanFree:hover:not(.active):not(.not-allowed-lock) {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    opacity: 0.95 !important;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2) !important;
}
#btnPlanStandard:hover:not(.active):not(.not-allowed-lock) {
    background: rgba(46, 255, 147, 0.06) !important;
    border-color: rgba(46, 255, 147, 0.4) !important;
    color: #2eff93 !important;
    opacity: 0.95 !important;
    box-shadow: 0 0 8px rgba(46, 255, 147, 0.2) !important;
}
#btnPlanPremium:hover:not(.active):not(.not-allowed-lock) {
    background: rgba(0, 128, 255, 0.06) !important;
    border-color: rgba(0, 128, 255, 0.4) !important;
    color: #0080ff !important;
    opacity: 0.95 !important;
    box-shadow: 0 0 8px rgba(0, 128, 255, 0.2) !important;
}
#btnPlanVip:hover:not(.active):not(.not-allowed-lock) {
    background: rgba(255, 159, 0, 0.06) !important;
    border-color: rgba(255, 159, 0, 0.4) !important;
    color: #FF9F00 !important;
    opacity: 0.95 !important;
    box-shadow: 0 0 8px rgba(255, 159, 0, 0.2) !important;
}
#btnPlanForever:hover:not(.active):not(.not-allowed-lock) {
    background: rgba(176, 46, 255, 0.06) !important;
    border-color: rgba(176, 46, 255, 0.4) !important;
    color: #b02eff !important;
    opacity: 0.95 !important;
    box-shadow: 0 0 8px rgba(176, 46, 255, 0.2) !important;
}

/* 3. 계정 상태 제어 (Status) 개별 호버 틴트 */
#btnStatusActive:hover:not(.active):not(.not-allowed-lock) {
    background: rgba(46, 255, 147, 0.06) !important;
    border-color: rgba(46, 255, 147, 0.4) !important;
    color: #2eff93 !important;
    opacity: 0.95 !important;
    box-shadow: 0 0 8px rgba(46, 255, 147, 0.2) !important;
}
#btnStatusPause:hover:not(.active):not(.not-allowed-lock) {
    background: rgba(255, 159, 0, 0.06) !important;
    border-color: rgba(255, 159, 0, 0.4) !important;
    color: #FF9F00 !important;
    opacity: 0.95 !important;
    box-shadow: 0 0 8px rgba(255, 159, 0, 0.2) !important;
}
#btnStatusExpired:hover:not(.active):not(.not-allowed-lock) {
    background: rgba(108, 122, 140, 0.08) !important;
    border-color: rgba(165, 180, 252, 0.4) !important;
    color: #a5b4fc !important;
    opacity: 0.95 !important;
    box-shadow: 0 0 8px rgba(165, 180, 252, 0.2) !important;
}
#btnStatusRevoked:hover:not(.active):not(.not-allowed-lock) {
    background: rgba(255, 46, 147, 0.06) !important;
    border-color: rgba(255, 46, 147, 0.4) !important;
    color: #FF2E93 !important;
    opacity: 0.95 !important;
    box-shadow: 0 0 8px rgba(255, 46, 147, 0.2) !important;
}

/* 1. 계정 권한 (Role) 액티브 - 리스트 뱃지 100% 동일 */
#btnRoleUser.active {
    background: rgba(0, 229, 255, 0.1) !important;
    border: 1px solid rgba(0, 229, 255, 0.5) !important;
    color: #00e5ff !important;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}
#btnRoleManager.active {
    background: rgba(176, 46, 255, 0.1) !important;
    border: 1px solid rgba(176, 46, 255, 0.5) !important;
    color: #b02eff !important;
    box-shadow: 0 0 10px rgba(176, 46, 255, 0.3) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}
#btnRoleGod.active {
    background: rgba(255, 46, 147, 0.1) !important;
    border: 1px solid rgba(255, 46, 147, 0.5) !important;
    color: #ff2e93 !important;
    box-shadow: 0 0 10px rgba(255, 46, 147, 0.3) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}

/* 2. 구독 요금제 (Plan) 액티브 - 리스트 뱃지 100% 동일 */
#btnPlanNew.active {
    background: rgba(170, 170, 170, 0.12) !important;
    border: 1px solid rgba(170, 170, 170, 0.5) !important;
    color: #cccccc !important;
    box-shadow: 0 0 8px rgba(170, 170, 170, 0.25) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}
#btnPlanFree.active {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.25) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}
#btnPlanStandard.active {
    background: rgba(46, 255, 147, 0.12) !important;
    border: 1px solid rgba(46, 255, 147, 0.5) !important;
    color: #2eff93 !important;
    box-shadow: 0 0 10px rgba(46, 255, 147, 0.3) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}
#btnPlanPremium.active {
    background: rgba(0, 128, 255, 0.12) !important;
    border: 1px solid rgba(0, 128, 255, 0.5) !important;
    color: #0080ff !important;
    box-shadow: 0 0 10px rgba(0, 128, 255, 0.3) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}
#btnPlanVip.active {
    background: rgba(255, 159, 0, 0.12) !important;
    border: 1px solid rgba(255, 159, 0, 0.5) !important;
    color: #FF9F00 !important;
    box-shadow: 0 0 10px rgba(255, 159, 0, 0.35) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}
#btnPlanForever.active {
    background: rgba(176, 46, 255, 0.12) !important;
    border: 1px solid rgba(176, 46, 255, 0.5) !important;
    color: #b02eff !important;
    box-shadow: 0 0 10px rgba(176, 46, 255, 0.35) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}

/* 3. 계정 상태 제어 (Status) 액티브 - 고유 4종 시그니처 발광 */
#btnStatusActive.active {
    background: rgba(46, 255, 147, 0.12) !important;
    border: 1px solid rgba(46, 255, 147, 0.5) !important;
    color: #2eff93 !important;
    box-shadow: 0 0 10px rgba(46, 255, 147, 0.3) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}
#btnStatusPause.active {
    background: rgba(255, 159, 0, 0.12) !important;
    border: 1px solid rgba(255, 159, 0, 0.5) !important;
    color: #FF9F00 !important;
    box-shadow: 0 0 10px rgba(255, 159, 0, 0.3) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}
#btnStatusExpired.active {
    background: rgba(108, 122, 140, 0.15) !important;
    border: 1px solid rgba(165, 180, 252, 0.45) !important;
    color: #a5b4fc !important;
    box-shadow: 0 0 8px rgba(165, 180, 252, 0.25) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}
#btnStatusRevoked.active {
    background: rgba(255, 46, 147, 0.12) !important;
    border: 1px solid rgba(255, 46, 147, 0.5) !important;
    color: #FF2E93 !important;
    box-shadow: 0 0 10px rgba(255, 46, 147, 0.3) !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}

/* ==========================================================================
   [추�?] PC 커�??�티 ?�롭?�운 �?모바?????�버�??�라?�드 ?�랍???��??�링
   ========================================================================== */

/* 1. PC 커�??�티 ?�롭?�운 ?��???*/
.nav-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.nav-dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(13, 20, 33, 0.96);
    border: 1px solid var(--border-neon-blue);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.25), 0 0 15px rgba(255, 46, 147, 0.1);
    border-radius: 12px;
    padding: 6px;
    min-width: 185px;
    box-sizing: border-box;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* 🛡️ [마우스 틈새 이탈 100% 방지] 상단 버튼과 하단 메뉴 상자 사이의 빈 틈새를 연결하는 투명 호버 터널 */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(2px);
    pointer-events: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    color: var(--text-normal);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: left;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
}

.dropdown-item:hover {
    color: var(--text-pure);
    background: rgba(0, 229, 255, 0.14);
    padding-left: 14px;
    text-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
}

/* 2. 모바???�버�?버튼 (기본 ?��?, 모바??500px ?�하 격발) */
.btn-mobile-hamburger {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 46, 147, 0.3);
    color: var(--border-neon-pink);
    font-size: 20px;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 0 10px rgba(255, 46, 147, 0.1);
    outline: none;
    line-height: 1;
}

.btn-mobile-hamburger:hover {
    border-color: var(--border-neon-pink);
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.35);
    text-shadow: 0 0 8px rgba(255, 46, 147, 0.5);
}

/* 3. 모바???�측 ?�라?�드 ?�랍??*/
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 10, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-drawer-card {
    position: absolute;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: rgba(13, 20, 33, 0.96);
    border-left: 1px solid rgba(255, 46, 147, 0.2);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5), -5px 0 15px rgba(255, 46, 147, 0.05);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.mobile-drawer-overlay.active .mobile-drawer-card {
    right: 0;
    border-left-color: var(--border-neon-pink);
}

.drawer-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.drawer-close-btn:hover {
    color: var(--border-neon-pink);
}

.drawer-logo-area {
    text-align: left;
    margin-top: 10px;
}

.drawer-logo-img {
    height: 26px;
    object-fit: contain;
}

.drawer-menu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.drawer-item {
    color: var(--text-normal);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    display: block;
}

.drawer-item:hover {
    color: var(--text-pure);
    background: rgba(255, 46, 147, 0.08);
    border-color: rgba(255, 46, 147, 0.2);
    padding-left: 20px;
}

/* ==========================================================================
   ?���?[?�너 마스??지??3?�계 1:1 ?�석 가?�드?�인] 극강??Flicker-Free ?�단 ?�더 ?�스??   ========================================================================== */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    padding: 0 40px;
    background: rgba(10, 16, 28, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-sizing: border-box;
    z-index: 9999;
}

.pc-menu-area {
    display: flex;
    align-items: center;
    gap: 36px;
}

.right-util-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-hamburger-btn {
    display: none; /* 기본 PC ?�스?�톱?�서???�천 차단 */
    width: 40px !important;
    height: 40px !important;
    box-sizing: border-box !important;
    background: rgba(255, 46, 147, 0.08) !important;
    border: 1px solid rgba(255, 46, 147, 0.3) !important;
    color: var(--border-neon-pink) !important;
    font-size: 20px !important;
    line-height: 1 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    padding: 0 !important; /* ?�딩???�전???�려 ?�치 ?�일?�이???�져?�감 ?�구 차단 */
    outline: none !important;
    user-select: none !important;
    align-items: center !important;
    justify-content: center !important;
    -webkit-tap-highlight-color: transparent !important;
    transition: all 0.2s ease !important;
}

.mobile-hamburger-btn:hover, .mobile-hamburger-btn:active {
    background: rgba(255, 46, 147, 0.18) !important;
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.4) !important;
    transform: scale(1.05) !important;
}

/* 1:1 ?벽 ?석 모바???롭?운 메뉴 (?르??래??아?게 ?쳐지???라?딩 ?랜지???키?처) */
.mobile-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 16px; /* [1단계 우측 고정] 햄버거 버튼과 조화롭게 배치 */
    width: max-content; /* 내부 글자(가장 긴 메뉴명) 길이에 맞춰 박스 너비가 유동적으로 밀착 */
    max-width: calc(100vw - 32px); /* 모바일 화면 이탈 방지 안전장치 */
    background: rgba(10, 16, 28, 0.98);
    border: 1px solid rgba(255, 46, 147, 0); /* ?축 ??보더 ?거 */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 999;
    
    /* [?�침 ?�랜지???�심 ?�치] ?�시 flex ?��? �??�성 ?�랜지???�도 */
    display: flex !important;
    flex-direction: column;
    max-height: 0; /* ?�상???�이 0?�로 ?�전 ?�축 */
    overflow: hidden; /* ?�축 ?�태?????��? ?�식 글???�림 차단 */
    opacity: 0; /* ?�상???�전 ?�명 */
    transform: translateY(-12px); /* 12px ?�에??공중 ?��?*/
    padding: 0 16px; /* ?�상???�하 ?�딩 ?�거?�여 밀�?*/
    box-sizing: border-box;
    gap: 6px;
    pointer-events: none; /* ?�혔???�는 ?�터�?차단 */
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease, 
                transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.38s ease;
}

/* isOpen = true ??show ?�래???�젝???�점???��? ?�라?�드 ?�침 ?�니메이??*/
.mobile-dropdown-menu.show {
    max-height: 480px; /* ?�롭?�운 ?�식?�이 모두 ?�림 ?�이 100% ?�상 ?�출?�는 최�? ?�이 */
    opacity: 1; /* ?�명???�천 복원 */
    transform: translateY(4px); /* ?�짝 ?�격???�래 ?�리�??�직 ?�착 */
    padding: 16px; /* 부?�럽�??��? ?�백 ?�창 */
    border: 1px solid rgba(255, 46, 147, 0.25);
    pointer-events: auto; /* ?�렸???�는 ?�치 ?�벤???�성??*/
}

.mobile-dropdown-menu.hide {
    max-height: 0 !important;
    opacity: 0 !important;
    transform: translateY(-12px) !important;
    padding: 0 16px !important;
    border-color: rgba(255, 46, 147, 0) !important;
    pointer-events: none !important;
}

/* ?�롭?�운 메뉴 ?�이???�백 �?[2?�계 ?�측 ?�렬] ?�성 */
.mobile-dropdown-menu .drawer-item {
    color: var(--text-normal);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 8px;
    transition: all 0.22s ease;
    white-space: nowrap; /* 긴 메뉴명이 와도 아래로 꺾이지 않고 한 줄 유지 */
    
    /* [2?�계 ?�측 ?�렬] Flex ?�렬�?text-align?�로 ?�벽??밀�??�측 ?�렬 ?�행 */
    display: flex !important;
    flex-direction: row-reverse !important; /* ?�이콘이 글???�쪽???�오?? ?�체가 ?�측 ?�에 붙게 ?�도 */
    align-items: center !important;
    justify-content: flex-start !important; /* row-reverse ?��?�??�측 기�? ?�렬??*/
    text-align: right !important;
    gap: 12px;
    box-sizing: border-box;
    border: 1px solid transparent;
}

.mobile-dropdown-menu .drawer-item:hover, 
.mobile-dropdown-menu .drawer-item:active {
    background: rgba(255, 46, 147, 0.05);
    border-color: rgba(255, 46, 147, 0.15);
    color: var(--text-pure);
    padding-right: 18px; /* ?�측 ?�렬?��?�??�측 ?�딩???�려 부?�러???�쪽 밀�??�과 */
    padding-right: 18px; /* ?측 ?렬????측 ?딩???려 부?러???쪽 밀??과 */
    box-shadow: inset -3px 0 0 var(--border-neon-pink); /* ?온 좌측 림을 ?측 림으?밀?*/
}

@media screen and (max-width: 1024px) {
    .pc-menu-area {
        display: none !important; /* PC ?평 메뉴 0??? */
    }
    
    .mobile-menu-icons-area {
        display: flex !important; /* 모바일 미니 아이콘 메뉴 부활 */
    }
    
    .mobile-hamburger-btn {
        display: flex !important; /* 모바??미디??쿼리 ?에?만 켜짐 */
    }

    /* 3. 모바일 전용 5대 미니멀 아이콘 네비게이션 시스템 (원본 CSS 복구) */
    .logo-area {
        display: none !important; /* 모바일에서 로고 완전 은폐 */
    }
    
    .mobile-icon-btn {
        width: 38px !important;
        height: 38px !important;
        box-sizing: border-box !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 8px !important;
        color: #8892b0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
        padding: 0 !important;
        outline: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .mobile-icon-btn .svg-icon {
        width: 20px !important;
        height: 20px !important;
        stroke-width: 2px !important;
    }
    
    /* 탭별 고유 네온 아크릴 골드/핑크 림 하이라이트 상태 */
    #mobileNavHome.active {
        background: rgba(201, 0, 204, 0.1) !important;
        border-color: rgba(201, 0, 204, 0.35) !important;
        color: #C900CC !important;
        box-shadow: 0 0 10px rgba(201, 0, 204, 0.2) !important;
    }
    
    #mobileNavFeatures.active {
        background: rgba(0, 229, 255, 0.1) !important;
        border-color: rgba(0, 229, 255, 0.35) !important;
        color: #00e5ff !important;
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.15) !important;
    }
    
    #mobileNavPricing.active {
        background: rgba(0, 229, 255, 0.1) !important;
        border-color: rgba(0, 229, 255, 0.35) !important;
        color: #00e5ff !important;
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.15) !important;
    }
    
    #mobileNavBoard.active {
        background: rgba(255, 46, 147, 0.1) !important;
        border-color: rgba(255, 46, 147, 0.35) !important;
        color: var(--border-neon-pink) !important;
        box-shadow: 0 0 10px rgba(255, 46, 147, 0.15) !important;
    }
    
    #mobileNavDownload.active {
        background: rgba(0, 98, 255, 0.1) !important;
        border-color: rgba(0, 98, 255, 0.35) !important;
        color: #0062ff !important;
        box-shadow: 0 0 10px rgba(0, 98, 255, 0.15) !important;
    }
    
    /* 모바일 커뮤니티 전용 아코디언 드롭다운 박스 스타일 */
    .mobile-menu-dropdown-menu {
        position: absolute !important;
        top: 44px !important;
        left: 0 !important;
        width: 180px !important;
        background: rgba(10, 16, 28, 0.98) !important;
        border: 1px solid rgba(255, 46, 147, 0.25) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 46, 147, 0.1) !important;
        border-radius: 8px !important;
        padding: 6px 0 !important;
        z-index: 10000 !important;
        display: none !important;
        flex-direction: column !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }
    
    .mobile-menu-dropdown-menu.show {
        display: flex !important;
    }
    
    .mobile-dropdown-item {
        padding: 10px 16px !important;
        color: #ccd6f6 !important;
        text-decoration: none !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        box-sizing: border-box !important;
        display: block !important;
        transition: all 0.2s !important;
    }
    
    .mobile-dropdown-item:hover,
    .mobile-dropdown-item:active {
        background: rgba(255, 46, 147, 0.08) !important;
        color: var(--text-pure) !important;
        padding-left: 20px !important;
    }
}

/* ==========================================================================
   📈 [커뮤니티] 수익인증 & 조건식공유 전용 프리미엄 네온 갤러리 카드 테마
   ========================================================================== */

.community-masonry-grid {
    column-count: 3;
    column-gap: 24px;
    width: 100%;
    margin: 30px auto;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .community-masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .community-masonry-grid {
        column-count: 1;
        column-gap: 0;
    }
}

.community-neon-card {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.community-neon-card.pink-glow-border:hover {
    border-color: rgba(255, 46, 147, 0.45);
    box-shadow: 0 0 25px rgba(255, 46, 147, 0.18), 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.community-neon-card.blue-glow-border:hover {
    border-color: rgba(0, 229, 255, 0.45);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.18), 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.community-card-img-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.community-card-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.community-neon-card:hover .community-card-img {
    transform: scale(1.03);
}

.community-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
}

.community-card-author {
    font-weight: 800;
    color: #fff;
}

.community-card-content {
    font-size: 13.5px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 16px;
    word-break: break-all;
}

.community-card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 12px;
}

.btn-community-action {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: #888;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-community-action:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.15);
}

.btn-community-action.liked {
    background: rgba(255, 46, 147, 0.08);
    border-color: rgba(255, 46, 147, 0.35);
    color: #ff2e93;
    box-shadow: 0 0 10px rgba(255, 46, 147, 0.15);
}

.community-comments-section {
    margin-top: 14px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 12px;
    box-sizing: border-box;
}

.comment-input-row {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.comment-text-input {
    flex: 1;
    background: rgba(6, 9, 15, 0.7);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 8px 12px;
    color: #fff;
    font-size: 12px;
    outline: none;
    transition: border-color 0.2s;
}

.comment-text-input:focus {
    border-color: #00e5ff;
}

.btn-comment-submit {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 6px;
    color: #00e5ff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-comment-submit:hover {
    background: rgba(0, 229, 255, 0.25);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
}

.comments-list-box {
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 8px;
    padding-right: 4px;
}

.comment-item {
    font-size: 12px;
    line-height: 1.5;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: #ccc;
}

.comment-author {
    font-weight: 800;
    color: #fff;
    margin-right: 6px;
}

.compression-loader {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    display: none;
    margin-top: 10px;
}

.compression-loader-bar {
    width: 0%;
    height: 100%;
    background: #ff2e93;
    transition: width 0.3s ease;
}

/* ==========================================================================
   오너님 전용 극강 프리미엄 반응형 프로필 버튼 및 관리자 엠블럼 시스템
   ========================================================================== */
.right-util-area {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.btn-profile-auth {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    height: auto;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #ffffff;
    font-family: inherit;
    cursor: pointer;
    box-sizing: border-box;
    transition: opacity 0.2s ease;
    outline: none;
    user-select: none;
}

.btn-profile-auth:hover {
    opacity: 0.85;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.btn-header-logout {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    outline: none;
}

.btn-header-logout:hover {
    color: #ff2e93;
    background: rgba(255, 46, 147, 0.1);
    box-shadow: 0 0 10px rgba(255, 46, 147, 0.2);
}

.profile-avatar {
    width: 32px;
    height: 32px;
    background: #0062ff;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 98, 255, 0.3);
    object-fit: cover;
}

.profile-nickname {
    font-size: 13.5px;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
}

/* PC/태블릿 모드 관리자 버튼 텍스트 기본값 */
.btn-admin-neon .admin-text-pc {
    display: inline;
}
.btn-admin-neon .admin-text-mobile {
    display: none;
}

/* 모바일 반응형 터짐 차단 극강 CSS 미디어 쿼리 */
@media (max-width: 768px) {
    /* 0. 헤더 공간 낭비 방지 - 좌우 패딩 축소 및 우측 유틸 영역 촘촘하게 우측 밀착 정렬 */
    .header-container {
        padding: 0 16px !important;
    }
    
    .right-util-area {
        gap: 0 !important;
    }
    
    .auth-buttons,
    #authButtonsWrapper {
        gap: 0 !important;
    }

    /* 1. 프로필 버튼을 서랍 메뉴 크기(40px * 40px, 둥글기 8px)로 완벽 규격화 */
    .btn-profile-auth {
        padding: 0 !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 8px !important;
        border: none !important;
        background: transparent !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: none !important;
        box-sizing: border-box !important;
    }
    
    .profile-info-content {
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .profile-nickname,
    .profile-email-text,
    .user-grade-badge {
        display: none !important; /* 닉네임 및 이메일은 모바일 상단 바에선 안 보임 */
    }
    
    .profile-avatar,
    .profile-avatar-img,
    .profile-avatar-icon-box {
        width: 40px !important;
        height: 40px !important;
        border-radius: 8px !important;
        object-fit: cover !important;
        box-shadow: none !important;
        margin: 0 !important;
    }

    .btn-header-logout[style*="display: none"],
    .btn-header-logout[style*="none"] {
        display: none !important;
    }

    .btn-header-logout {
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        background: rgba(255, 255, 255, 0.04) !important;
        display: inline-flex;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: none !important;
    }
    
    /* 2. 관리자 버튼을 서랍 메뉴 크기(40px * 40px, 둥글기 8px)로 맞추고 👑 아이콘만 중앙 정렬 */
    .btn-admin-neon {
        padding: 0 !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 8px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        box-shadow: 0 0 10px rgba(255, 46, 147, 0.25) !important;
    }
    
    .btn-admin-neon .admin-text-pc,
    .btn-admin-neon .admin-text-mobile {
        display: none !important; /* '관리자', '관' 텍스트 100% 완전 영구 소멸 */
    }
    
    .btn-admin-neon .admin-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .btn-admin-neon .admin-icon svg,
    .btn-admin-neon svg {
        width: 19px !important;
        height: 19px !important;
        margin: 0 !important;
        margin-right: 0 !important;
        display: block !important;
    }
}

/* PC 및 넓은 디바이스 기본 은폐 */
.mobile-menu-icons-area {
    display: none;
}

/* 🎨 [관리자 메뉴 CMS 실시간 반응형 그리드: 기본 전체창 무조건 3x3] */
.admin-cms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .admin-cms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .admin-cms-grid {
        grid-template-columns: 1fr;
    }
}

/* 🔔 [스크린샷 76번 구글 소셜 취소 프리미엄 헤더 하단 토스트 알림] */
.google-toast-box {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(-15px);
    z-index: 999999;
    background: rgba(15, 23, 36, 0.96);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 30px;
    padding: 10px 22px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 229, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.google-toast-box.google-toast-show {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* 📱 [회원 상세 정보 팝업 모바일/작은 화면 반응형 튜닝] */
@media (max-width: 600px) {
    #btnInjectKey .btn-text-full {
        display: none !important;
    }
    #btnInjectKey {
        padding: 6px 8px !important;
    }
    #btnInjectKey svg {
        margin-right: 0 !important;
        width: 14px !important;
        height: 14px !important;
    }
    .det-dev-header-box {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
    }
}

