/* 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: linear-gradient(90deg,
        #3d3560 0%,
        #2a2545 30%,
        #1a1a2e 50%,
        #1a1a2e 70%,
        #252040 100%
    );
    background-attachment: fixed;
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* 신비로운 배경 레이어 1 - 오로라 효과 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 60% 60% at 10% 20%, rgba(255, 200, 100, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 90% 15%, rgba(200, 200, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(255, 220, 150, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 40% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: auroraShift 20s ease-in-out infinite alternate;
}

@keyframes auroraShift {
    0% { opacity: 0.8; filter: hue-rotate(0deg); }
    50% { opacity: 1; filter: hue-rotate(15deg); }
    100% { opacity: 0.8; filter: hue-rotate(-15deg); }
}

/* 신비로운 배경 레이어 2 - 별과 반짝임 */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(3px 3px at 10% 10%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(4px 4px at 90% 15%, rgba(255, 215, 0, 0.8), transparent),
        radial-gradient(3px 3px at 30% 25%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(4px 4px at 70% 35%, rgba(168, 85, 247, 0.8), transparent),
        radial-gradient(3px 3px at 15% 45%, rgba(255, 215, 0, 0.7), transparent),
        radial-gradient(4px 4px at 85% 55%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(3px 3px at 45% 65%, rgba(147, 51, 234, 0.7), transparent),
        radial-gradient(4px 4px at 25% 75%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(3px 3px at 75% 85%, rgba(255, 215, 0, 0.8), transparent),
        radial-gradient(4px 4px at 55% 95%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 5% 30%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 95% 40%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 40% 50%, rgba(255, 215, 0, 0.5), transparent),
        radial-gradient(2px 2px at 60% 20%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 20% 90%, rgba(168, 85, 247, 0.5), transparent),
        radial-gradient(2px 2px at 80% 70%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 35% 15%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 65% 45%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 50% 75%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 12% 65%, rgba(255, 255, 255, 0.4), transparent);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* 신비로운 배경 컨테이너 */
.mystic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* ========== 달 ========== */
.moon {
    position: absolute;
    top: 20%;
    right: 8%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 35% 35%,
        #ffffff 0%,
        #fffef5 20%,
        #fff9c4 50%,
        #ffecb3 100%
    );
    border-radius: 50%;
    box-shadow:
        0 0 100px rgba(255, 255, 255, 0.9),
        0 0 150px rgba(255, 250, 220, 0.7),
        0 0 200px rgba(255, 236, 179, 0.4);
    animation: moonGlow 5s ease-in-out infinite alternate;
}

/* 달 주변 밝은 배경 */
.moon-glow {
    position: absolute;
    top: -5%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse at 80% 25%,
        rgba(200, 200, 255, 0.12) 0%,
        rgba(180, 180, 240, 0.08) 30%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 0;
}

/* 달 표면 크레이터 */
.moon::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 25%;
    width: 15px;
    height: 15px;
    background: rgba(255, 235, 180, 0.3);
    border-radius: 50%;
    box-shadow:
        25px 15px 0 8px rgba(255, 235, 180, 0.25),
        10px 35px 0 5px rgba(255, 235, 180, 0.2);
}

@keyframes moonGlow {
    0% {
        box-shadow: 0 0 100px rgba(255, 255, 255, 0.9), 0 0 150px rgba(255, 250, 220, 0.7), 0 0 200px rgba(255, 236, 179, 0.4);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 120px rgba(255, 255, 255, 1), 0 0 180px rgba(255, 250, 220, 0.8), 0 0 240px rgba(255, 236, 179, 0.5);
        transform: scale(1.02);
    }
}

/* ========== 태양 (달 반대편) ========== */
.sun {
    position: absolute;
    top: 20%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 50% 50%,
        #ffffff 0%,
        #ffffff 15%,
        #fffacd 30%,
        #ffd700 60%,
        #ffb347 100%
    );
    border-radius: 50%;
    box-shadow:
        0 0 150px rgba(255, 255, 255, 1),
        0 0 250px rgba(255, 255, 200, 0.9),
        0 0 350px rgba(255, 215, 0, 0.7),
        0 0 450px rgba(255, 165, 0, 0.5);
    animation: sunPulse 4s ease-in-out infinite alternate;
}

/* 태양 주변 밝은 배경 */
.sun-glow {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse at 20% 30%,
        rgba(255, 220, 150, 0.25) 0%,
        rgba(255, 200, 100, 0.15) 30%,
        rgba(255, 180, 80, 0.08) 50%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* 태양 광선 */
.sun::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background:
        repeating-conic-gradient(
            from 0deg,
            transparent 0deg 10deg,
            rgba(255, 255, 255, 0.2) 10deg 20deg
        );
    border-radius: 50%;
    animation: sunRays 20s linear infinite;
}

.sun::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    transform: translate(-50%, -50%);
    background:
        repeating-conic-gradient(
            from 15deg,
            transparent 0deg 15deg,
            rgba(255, 255, 200, 0.15) 15deg 30deg
        );
    border-radius: 50%;
    animation: sunRays 15s linear infinite reverse;
}

@keyframes sunPulse {
    0% {
        box-shadow: 0 0 150px rgba(255, 255, 255, 1), 0 0 250px rgba(255, 255, 200, 0.9), 0 0 350px rgba(255, 215, 0, 0.7);
    }
    100% {
        box-shadow: 0 0 200px rgba(255, 255, 255, 1), 0 0 300px rgba(255, 255, 200, 1), 0 0 400px rgba(255, 215, 0, 0.9);
    }
}

@keyframes sunRays {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========== 신비의 눈 (Providence Eye) ========== */
.mystic-eye {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 60px;
    opacity: 0.2;
    animation: eyeFloat 8s ease-in-out infinite;
}

/* 눈 외곽선 */
.eye-outer {
    position: absolute;
    width: 120px;
    height: 60px;
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(0deg);
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(147, 51, 234, 0.2);
}

/* 눈동자 */
.eye-iris {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 50% 50%,
        #7c3aed 0%,
        #5b21b6 40%,
        #4c1d95 70%,
        #2e1065 100%
    );
    border-radius: 50%;
    box-shadow:
        0 0 20px rgba(124, 58, 237, 0.5),
        inset 0 0 10px rgba(0, 0, 0, 0.5);
    animation: irisGlow 3s ease-in-out infinite alternate;
}

/* 동공 */
.eye-pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* 눈 반짝임 */
.eye-shine {
    position: absolute;
    top: 30%;
    left: 60%;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: -15px 10px 0 3px rgba(255, 255, 255, 0.5);
}

/* 눈 위 삼각형 (프로비던스) */
.eye-triangle {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 50px solid transparent;
    border-bottom-color: rgba(255, 215, 0, 0.1);
}

.eye-triangle::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -25px;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 35px solid rgba(255, 215, 0, 0.05);
}

@keyframes eyeFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); opacity: 0.15; }
    50% { transform: translate(-50%, -50%) translateY(-15px); opacity: 0.25; }
}

@keyframes irisGlow {
    0% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.5); }
    100% { box-shadow: 0 0 35px rgba(124, 58, 237, 0.8), 0 0 50px rgba(168, 85, 247, 0.4); }
}

/* ========== 별자리 ========== */
.constellation {
    position: absolute;
    opacity: 0.4;
}

/* 별자리 1 - 왼쪽 하단 */
.constellation-1 {
    bottom: 20%;
    left: 8%;
    width: 150px;
    height: 120px;
}

.constellation-1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(4px 4px at 10px 20px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(4px 4px at 50px 10px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(4px 4px at 90px 30px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(4px 4px at 70px 70px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(4px 4px at 30px 90px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(4px 4px at 120px 80px, rgba(255, 255, 255, 0.9), transparent);
}

/* 별자리 연결선 - SVG로 대체 가능, 여기선 선형 그라데이션 */
.constellation-1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.15) 50%, transparent 55%),
        linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, 0.15) 50%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(255, 255, 255, 0.15) 50%, transparent 55%);
    background-size: 60px 60px;
}

/* 별자리 2 - 오른쪽 중앙 */
.constellation-2 {
    top: 40%;
    right: 5%;
    width: 120px;
    height: 100px;
}

.constellation-2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(3px 3px at 20px 15px, rgba(255, 215, 0, 0.9), transparent),
        radial-gradient(4px 4px at 60px 5px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(3px 3px at 100px 25px, rgba(255, 215, 0, 0.9), transparent),
        radial-gradient(4px 4px at 80px 55px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(3px 3px at 40px 80px, rgba(255, 215, 0, 0.9), transparent);
}

/* ========== 타로카드 장식 ========== */
.tarot-card-deco {
    position: absolute;
    width: 70px;
    height: 110px;
    border-radius: 8px;
    opacity: 0.12;
    border: 2px solid rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.4), rgba(79, 70, 229, 0.3));
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.2);
    animation: cardFloat 6s ease-in-out infinite;
}

.tarot-card-deco::before {
    content: '\2726';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: rgba(255, 215, 0, 0.7);
}

.tarot-card-deco::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 4px;
}

.tarot-1 { top: 25%; left: 2%; transform: rotate(-15deg); animation-delay: 0s; }
.tarot-2 { bottom: 30%; left: 3%; transform: rotate(12deg); animation-delay: 1s; }
.tarot-3 { bottom: 15%; right: 2%; transform: rotate(18deg); animation-delay: 2s; }
.tarot-4 { top: 55%; right: 1%; transform: rotate(-8deg); animation-delay: 1.5s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(var(--rotation, 0deg)); }
    50% { transform: translateY(-10px) rotate(var(--rotation, 0deg)); }
}

.tarot-1 { --rotation: -15deg; }
.tarot-2 { --rotation: 12deg; }
.tarot-3 { --rotation: 18deg; }
.tarot-4 { --rotation: -8deg; }

/* ========== 크리스탈 장식 ========== */
.crystal {
    position: absolute;
    opacity: 0.15;
    animation: crystalShine 4s ease-in-out infinite alternate;
}

.crystal-shape {
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 50px solid rgba(168, 85, 247, 0.6);
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.4));
    position: relative;
}

.crystal-shape::before {
    content: '';
    position: absolute;
    top: 50px;
    left: -18px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 30px solid rgba(147, 51, 234, 0.5);
}

.crystal-shape::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -5px;
    width: 10px;
    height: 25px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-10deg);
}

.crystal-1 { bottom: 25%; left: 12%; transform: scale(1.3); }
.crystal-2 { top: 35%; right: 15%; transform: scale(0.9) rotate(15deg); }
.crystal-3 { bottom: 40%; right: 20%; transform: scale(0.7) rotate(-10deg); }

@keyframes crystalShine {
    0% { opacity: 0.1; filter: brightness(1); }
    100% { opacity: 0.2; filter: brightness(1.3); }
}

/* ========== 마법진 (작은 원형 장식) ========== */
.magic-circle {
    position: absolute;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    opacity: 0.15;
    animation: magicSpin 30s linear infinite;
}

.magic-circle::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    border: 1px dashed rgba(147, 51, 234, 0.3);
    border-radius: 50%;
}

.magic-circle::after {
    content: '\2727';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 215, 0, 0.5);
    font-size: 10px;
}

.magic-circle-1 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 20%;
}

.magic-circle-2 {
    width: 70px;
    height: 70px;
    top: 20%;
    right: 25%;
    animation-direction: reverse;
}

@keyframes magicSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== 헤더 ========== */
header {
    background: linear-gradient(135deg, rgba(90, 70, 30, 0.95), rgba(70, 55, 20, 0.9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.6);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    height: 100px;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 200px;
    width: auto;
    margin-top: 15px;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

nav ul li a:hover {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 120%;
}

.login-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
    color: #fff !important;
}

.login-btn::after {
    display: none !important;
}

/* ========== 로그인 사용자 영역 ========== */
.user-area {
    display: none;
    align-items: center;
    gap: 0;
    position: relative;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 14px;
    padding: 8px 16px;
}

/* 프로필 인사 영역 */
.user-hello {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.user-hello-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(219, 39, 119, 0.2));
    border: 1.5px solid rgba(255, 215, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
}

.user-hello-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-hello-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.4;
}

.user-hello-name {
    color: #ffd700;
    font-weight: 600;
}

.user-hello-msg {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.76rem;
    font-weight: 400;
}

/* 구분선 */
.user-sep {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    margin: 0 16px;
    flex-shrink: 0;
}

/* 잔액 블록 */
.user-balance-block {
    text-align: center;
    flex-shrink: 0;
}

.user-balance-top {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    margin-bottom: 4px;
}

.user-balance-amount {
    color: #ffd700;
    font-size: 0.95rem;
    font-weight: 700;
}

.bujuk-icon-header {
    width: 36px;
    height: 36px;
    vertical-align: middle;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
    flex-shrink: 0;
}

.bujuk-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.3));
    flex-shrink: 0;
}

.bujuk-icon-lg {
    width: 48px;
    height: 48px;
    vertical-align: middle;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
    flex-shrink: 0;
}

.user-charge-link {
    display: inline-block;
    padding: 4px 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 180, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.22);
    border-radius: 14px;
    color: #ffd700 !important;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}

.user-charge-link:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.22), rgba(255, 180, 0, 0.12));
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 14px rgba(255, 215, 0, 0.15);
}

.user-charge-link::after {
    display: none !important;
}

/* 미니 드롭다운 (마이페이지/로그아웃) */
.user-mini-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 160px;
    background: linear-gradient(135deg, rgba(30, 25, 50, 0.98), rgba(45, 35, 65, 0.98));
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 14px rgba(147, 51, 234, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.25s ease;
    z-index: 1001;
    overflow: hidden;
    padding: 6px 0;
}

.user-area.active .user-mini-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-drop-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
    white-space: nowrap;
}

.mini-drop-item:hover {
    background: rgba(147, 51, 234, 0.15);
    color: #ffd700 !important;
}

.mini-drop-item::after {
    display: none !important;
}

.mini-drop-logout {
    color: rgba(255, 255, 255, 0.3) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 2px;
    padding-top: 10px;
}

.mini-drop-logout:hover {
    color: rgba(255, 100, 100, 0.7) !important;
    background: rgba(255, 100, 100, 0.06) !important;
}

/* ========== 메인 컨텐츠 ========== */
main {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

/* 히어로 섹션 */
.hero {
    text-align: center;
    padding: 80px 50px 60px;
    position: relative;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero h1.slogan {
    font-size: 3.5rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    background: rgba(0, 0, 0, 0.4);
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-btn {
    padding: 16px 38px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 25px rgba(255, 215, 0, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.6);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.event-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(168, 85, 247, 0.2));
    padding: 14px 28px;
    border-radius: 30px;
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #fff;
    font-weight: 500;
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.2);
}

.event-banner.event-banner-large {
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border: 2px solid rgba(255, 105, 180, 0.5);
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.3), rgba(255, 182, 193, 0.2));
    box-shadow: 0 0 35px rgba(255, 105, 180, 0.3);
}

.event-banner.event-banner-large .badge {
    padding: 6px 16px;
    font-size: 0.9rem;
}

.event-banner .badge {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #1a1a2e;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* ========== 섹션 공통 ========== */
section {
    padding: 60px 50px;
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 40px;
}

.page-title h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #fff 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
    filter: drop-shadow(0 2px 10px rgba(255, 215, 0, 0.3));
}

.page-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title h2 {
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title .badge {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.3);
}

.section-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.view-all {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    color: #ffd700;
}

/* ========== 상담사 카드 ========== */
.consultant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.12'/%3E%3C/svg%3E"),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            rgba(50, 80, 70, 0.08) 1px,
            transparent 2px,
            transparent 4px,
            rgba(40, 70, 60, 0.05) 5px,
            transparent 6px,
            transparent 11px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(50, 80, 70, 0.06) 1px,
            transparent 2px,
            transparent 7px
        ),
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(60, 90, 80, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 70% at 75% 70%, rgba(40, 70, 60, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(70, 100, 90, 0.06) 0%, transparent 40%),
        linear-gradient(145deg,
            rgba(100, 145, 135, 0.97) 0%,
            rgba(120, 165, 155, 0.95) 30%,
            rgba(130, 175, 165, 0.93) 50%,
            rgba(115, 160, 150, 0.95) 70%,
            rgba(95, 140, 130, 0.97) 100%
        );
    backdrop-filter: blur(15px);
    border: 2px solid rgba(192, 200, 195, 0.6);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(100, 145, 135, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(220, 225, 220, 0.8);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(100, 145, 135, 0.3),
        0 0 15px rgba(192, 200, 195, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* 프리미엄 카드 */
.card.premium {
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.12'/%3E%3C/svg%3E"),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            rgba(50, 80, 70, 0.08) 1px,
            transparent 2px,
            transparent 4px,
            rgba(40, 70, 60, 0.05) 5px,
            transparent 6px,
            transparent 11px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(50, 80, 70, 0.06) 1px,
            transparent 2px,
            transparent 7px
        ),
        repeating-linear-gradient(
            30deg,
            transparent 0px,
            rgba(180, 150, 50, 0.03) 1px,
            transparent 2px,
            transparent 20px
        ),
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(60, 90, 80, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 70% at 75% 70%, rgba(40, 70, 60, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(180, 150, 50, 0.04) 0%, transparent 40%),
        linear-gradient(145deg,
            rgba(100, 145, 135, 0.97) 0%,
            rgba(120, 165, 155, 0.95) 30%,
            rgba(130, 175, 165, 0.93) 50%,
            rgba(115, 160, 150, 0.95) 70%,
            rgba(95, 140, 130, 0.97) 100%
        );
    border: 2px solid rgba(255, 215, 0, 0.6);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 215, 0, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.card.premium:hover {
    border-color: rgba(255, 215, 0, 0.9);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(255, 215, 0, 0.25),
        0 0 30px rgba(100, 145, 135, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.25);
}

.card-header {
    position: relative;
    margin-bottom: 18px;
}

/* 프리미엄 배지 */
.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #1a1a2e;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
}

/* 카드 좋아요 버튼 */
.card-like-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(50, 60, 55, 0.7);
    border: 1px solid rgba(192, 200, 195, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.card-like-btn:hover {
    background: rgba(70, 100, 90, 0.8);
    border-color: rgba(220, 225, 220, 0.8);
    transform: scale(1.15);
}

.card-like-btn.liked {
    background: rgba(236, 72, 153, 0.5);
    border-color: #ec4899;
}

.card-like-btn.liked .heart {
    animation: heartPop 0.4s ease;
}

@keyframes heartPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4); }
}

/* 아바타 링크 스타일 */
.avatar-link {
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.avatar-link:hover {
    transform: scale(1.05);
}

.avatar-link:hover .avatar {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.avatar {
    width: 130px;
    height: 130px;
    background: linear-gradient(145deg,
        #a8a8a8 0%,
        #c0c0c0 25%,
        #e8e8e8 50%,
        #c0c0c0 75%,
        #a8a8a8 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 3rem;
    color: #666;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(192, 192, 192, 0.3),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2),
        inset 0 3px 10px rgba(255, 255, 255, 0.5);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

/* 은색 그라데이션 테두리 효과 */
.avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(145deg,
        #c0c0c0 0%,
        #e8e8e8 25%,
        #ffffff 50%,
        #e8e8e8 75%,
        #a8a8a8 100%
    );
    border-radius: 50%;
    z-index: -1;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card.premium .avatar {
    background: linear-gradient(145deg,
        #b8860b 0%,
        #daa520 25%,
        #ffd700 50%,
        #daa520 75%,
        #b8860b 100%
    );
    box-shadow:
        0 8px 25px rgba(218, 165, 32, 0.4),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2),
        inset 0 3px 10px rgba(255, 255, 255, 0.4);
    border: 3px solid rgba(255, 215, 0, 0.8);
    color: #5c4a00;
}

.consultant-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-top: 8px;
    font-weight: 500;
}

.status.available {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 193, 7, 0.15));
    color: #ffd700;
    border: 2px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.status.busy {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.1));
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.status.offline {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(248, 113, 113, 0.1));
    color: #dc2626;
    border: 2px solid rgba(220, 38, 38, 0.6);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}

.tags {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(147, 51, 234, 0.2);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    color: #c4b5fd;
    border: 1px solid rgba(147, 51, 234, 0.4);
    transition: all 0.3s ease;
}

.card.premium .tag {
    background: rgba(255, 215, 0, 0.15);
    color: #fcd34d;
    border-color: rgba(255, 215, 0, 0.4);
}

.card-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 10px;
    line-height: 1.5;
}

.card-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn {
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ========== 버튼 색상 - 새로운 디자인 ========== */

/* 일반 카드 - 상담하기 버튼 (진한 보라색 그라데이션) */
.btn-primary {
    background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 50%, #a78bfa 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.5);
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 50%, #c4b5fd 100%);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.6);
    transform: translateY(-2px);
}

/* 프리미엄 카드 - 상담하기 버튼 (화려한 금색 그라데이션) */
.card.premium .btn-primary {
    background: linear-gradient(135deg, #b8860b 0%, #daa520 30%, #ffd700 50%, #ffec8b 70%, #ffd700 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(218, 165, 32, 0.5);
    border: 1px solid rgba(255, 236, 139, 0.5);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.card.premium .btn-primary:hover {
    background: linear-gradient(135deg, #daa520 0%, #ffd700 30%, #ffec8b 50%, #fffacd 70%, #ffd700 100%);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.7);
    transform: translateY(-2px);
}

/* 프로필 버튼 (은색/흰색 테두리) */
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(192, 200, 195, 0.6);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* 프리미엄 카드 - 프로필 버튼 (금색 테두리) */
.card.premium .btn-secondary {
    border-color: rgba(255, 215, 0, 0.5);
    color: #fcd34d;
}

.card.premium .btn-secondary:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* ========== 상담하기 버튼 상태 색상 ========== */
.btn-consult.available {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 193, 7, 0.15));
    color: #ffd700;
    border: 2px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.btn-consult.available:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 193, 7, 0.25));
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.btn-consult.busy {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.1));
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.btn-consult.busy:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(96, 165, 250, 0.2));
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.btn-consult.offline {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(248, 113, 113, 0.1));
    color: #dc2626;
    border: 2px solid rgba(220, 38, 38, 0.6);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}

.btn-consult.offline:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.25), rgba(248, 113, 113, 0.2));
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.5);
    transform: translateY(-2px);
}

/* ========== 푸터 ========== */
footer {
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 1;
    padding: 0;
    border: none;
    margin-top: 60px;
}

/* 상단 페이드 효과 */
.footer-fade {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 15, 35, 0.9) 100%);
    pointer-events: none;
}

/* 상단 금색 악센트 라인 */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 215, 0, 0.5) 20%,
        rgba(255, 215, 0, 0.8) 50%,
        rgba(255, 215, 0, 0.5) 80%,
        transparent 100%
    );
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px 30px;
    text-align: center;
}

.footer-section h4 {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.footer-phone {
    font-size: 1rem !important;
    font-weight: 500;
    color: #fff !important;
    margin-bottom: 4px !important;
}

.footer-hours {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-sub {
    font-size: 0.75rem !important;
    color: rgba(255, 215, 0, 0.7) !important;
    margin-top: 2px !important;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

/* 하단 영역 */
.footer-bottom {
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    padding: 25px 30px;
    text-align: center;
}

.footer-company-info {
    margin-bottom: 15px;
}

.company-primary {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    line-height: 1.8;
    margin: 0;
}

.footer-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.75rem;
}

.footer-partner span {
    color: rgba(255, 255, 255, 0.4);
}

.footer-partner a {
    color: rgba(255, 215, 0, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-partner a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    margin: 0;
}

footer p {
    margin-bottom: 8px;
}

/* ========== 폼 요소 ========== */
input, select, textarea {
    background: rgba(20, 20, 45, 0.9);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.3);
}

/* ========== 알림 시스템 ========== */
.notification-area {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.notification-bell {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.12);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.75);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.notification-bell:hover {
    color: #ffd700;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.04));
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.12);
    transform: translateY(-1px);
}

.notification-bell svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.15));
}

.notification-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 8px;
    height: 8px;
    padding: 0;
    background: linear-gradient(135deg, #ffd700, #f4c430);
    border-radius: 50%;
    border: 1.5px solid rgba(25, 20, 50, 0.9);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5), 0 0 16px rgba(255, 215, 0, 0.2);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 6px rgba(255, 215, 0, 0.4), 0 0 12px rgba(255, 215, 0, 0.15); }
    50% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.25); }
}

/* 드롭다운 */
.notification-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: -80px;
    width: 360px;
    background: linear-gradient(160deg, rgba(20, 15, 40, 0.99), rgba(35, 25, 60, 0.98));
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(147, 51, 234, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.97);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.notification-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 90px;
    width: 14px;
    height: 14px;
    background: rgba(20, 15, 40, 0.99);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
}

.notification-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* 드롭다운 헤더 */
.notification-drop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px 14px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.04), transparent);
}

.notification-drop-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notification-drop-title svg {
    color: #ffd700;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.3));
}

.notification-drop-title > span:first-of-type {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.notification-drop-count {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(255, 71, 87, 0.1));
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 10px;
    color: #ff6b81;
    font-size: 0.68rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.notification-drop-header button {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.03));
    border: 1px solid rgba(255, 215, 0, 0.15);
    color: rgba(255, 215, 0, 0.8);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    padding: 5px 12px;
    border-radius: 8px;
}

.notification-drop-header button:hover {
    color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.1);
}

/* 알림 목록 */
.notification-list {
    overflow-y: auto;
    flex: 1;
    max-height: 340px;
}

.notification-list::-webkit-scrollbar {
    width: 3px;
}

.notification-list::-webkit-scrollbar-track {
    background: transparent;
}

.notification-list::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.15);
    border-radius: 3px;
}

/* 알림 아이템 */
.notification-item {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.notification-item.unread {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.03), transparent 50%);
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: rgba(255, 215, 0, 0.45);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}

/* 아이콘 */
.notification-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

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

.notification-item-icon.type-system {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.notification-item-icon.type-event {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 180, 0, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.notification-item-icon.type-admin {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.08));
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: #60a5fa;
}

.notification-item-icon.type-balance {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(34, 197, 94, 0.08));
    border: 1px solid rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.notification-item-icon.type-call {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15), rgba(255, 152, 0, 0.08));
    border: 1px solid rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.notification-item-icon.type-application {
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.15), rgba(0, 150, 136, 0.08));
    border: 1px solid rgba(0, 150, 136, 0.2);
    color: #26a69a;
}

.notification-item-icon.type-application_reply {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(233, 30, 99, 0.08));
    border: 1px solid rgba(233, 30, 99, 0.2);
    color: #ec407a;
}

.notification-item-icon.type-review {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.08));
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.notification-item-icon.type-review_reply {
    background: linear-gradient(135deg, rgba(121, 134, 203, 0.15), rgba(121, 134, 203, 0.08));
    border: 1px solid rgba(121, 134, 203, 0.2);
    color: #7986cb;
}

.notification-item-icon.type-inquiry {
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.15), rgba(103, 58, 183, 0.08));
    border: 1px solid rgba(103, 58, 183, 0.2);
    color: #9575cd;
}

.notification-item-icon.type-inquiry_reply {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15), rgba(156, 39, 176, 0.08));
    border: 1px solid rgba(156, 39, 176, 0.2);
    color: #ba68c8;
}

.notification-item-icon.type-like {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.12), rgba(244, 67, 54, 0.06));
    border: 1px solid rgba(244, 67, 54, 0.18);
    color: #ef5350;
}

/* 모바일 전용 버튼 - 데스크톱 숨김 */
.notification-mobile-close,
.notification-mobile-back {
    display: none;
}

/* 텍스트 영역 */
.notification-item-body {
    flex: 1;
    min-width: 0;
}

.notification-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 3px;
}

.notification-item-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.35;
    flex: 1;
    min-width: 0;
}

.notification-item.unread .notification-item-title {
    color: #fff;
}

.notification-item-time {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.68rem;
    flex-shrink: 0;
    white-space: nowrap;
    margin-top: 2px;
}

.notification-item-message {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notification-item.unread .notification-item-message {
    color: rgba(255, 255, 255, 0.6);
}

/* 빈 상태 */
.notification-empty {
    text-align: center;
    padding: 45px 20px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.notification-empty-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.08), rgba(168, 85, 247, 0.03));
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(168, 85, 247, 0.4);
}

.notification-empty-icon svg {
    width: 24px;
    height: 24px;
}

/* 푸터 */
.notification-drop-footer {
    padding: 10px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    flex-shrink: 0;
}

.notification-drop-footer span {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.68rem;
}

/* ========== 반응형 - 태블릿 (1024px 이하) ========== */
@media (max-width: 1024px) {
    header {
        padding: 15px 30px;
        height: 100px;
    }

    nav ul {
        gap: 25px;
    }

    nav ul li a {
        font-size: 1.3rem;
    }

    .logo img {
        height: 180px;
        margin-top: 15px;
    }

    .hero h1.slogan {
        font-size: 2.8rem;
    }

    .consultant-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* ========== 반응형 - 모바일 (768px 이하) ========== */
@media (max-width: 768px) {
    header {
        padding: 12px 15px;
        height: 70px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        height: 140px;
        width: auto;
        margin-top: 10px;
        object-fit: contain;
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
        flex-shrink: 0;
        background: transparent;
        border: none;
        outline: none;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 182, 193, 0.95), rgba(255, 105, 180, 0.9));
        backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 70px;
        border-left: 2px solid rgba(255, 105, 180, 0.6);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
        flex-wrap: wrap;
        align-items: stretch;
    }

    nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        width: 100%;
    }

    nav ul li#user-menu {
        border-bottom: none;
    }

    nav ul li#guest-menu {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 15px 10px;
        font-size: 1.3rem;
        color: #4a1a3d;
        white-space: normal;
        text-align: left;
    }

    nav ul li a:hover {
        color: #8b0a50;
    }

    nav ul li a.login-btn {
        margin-top: 15px;
        text-align: center;
        background: linear-gradient(135deg, #ffd700, #ffb347);
        color: #1a1a2e;
        border-radius: 20px;
    }

    .user-area {
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
        padding: 18px 16px;
        border-radius: 16px;
        gap: 12px;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .user-hello {
        width: 100%;
        justify-content: center;
    }

    .user-hello-photo {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px;
        max-width: 38px;
        min-height: 38px;
        max-height: 38px;
        background: rgba(255, 255, 255, 0.35);
        border-color: rgba(255, 255, 255, 0.5);
        color: #6b2058;
        overflow: hidden;
    }

    .user-hello-photo img {
        width: 38px !important;
        height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
        object-fit: cover;
        border-radius: 50%;
    }

    .user-hello-photo svg {
        width: 18px !important;
        height: 18px !important;
    }

    .user-hello-text {
        color: #4a1a3d;
        font-size: 0.95rem;
    }

    .user-hello-name {
        color: #8b0a50;
        font-weight: 700;
        font-size: 1.05rem;
    }

    .user-hello-msg {
        color: rgba(74, 26, 61, 0.55);
        font-size: 0.8rem;
    }

    .user-sep {
        width: 85%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
        margin: 2px auto;
    }

    .user-balance-block {
        width: 100%;
    }

    .user-balance-top {
        color: #4a1a3d;
        font-size: 0.85rem;
    }

    .user-balance-label {
        color: rgba(74, 26, 61, 0.65);
    }

    .user-balance-amount {
        color: #8b4513;
        font-size: 1.05rem;
    }

    .user-charge-link {
        color: #4a1a3d !important;
        background: rgba(255, 215, 0, 0.25);
        border-color: rgba(180, 140, 30, 0.35);
        padding: 8px 24px;
        font-size: 0.85rem;
        margin-top: 6px;
    }

    .user-charge-link:hover {
        background: rgba(255, 215, 0, 0.35);
    }

    /* ===== 모바일 알림 ===== */
    .notification-area {
        width: 100%;
        position: relative;
    }

    .notification-bell {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        background: linear-gradient(135deg, rgba(139, 10, 80, 0.08), rgba(139, 10, 80, 0.03));
        border: 1px solid rgba(139, 10, 80, 0.12);
        border-radius: 12px;
        color: #4a1a3d;
        transition: all 0.25s;
        justify-content: flex-start;
    }

    .notification-bell::after {
        content: '알림 확인';
        font-size: 0.88rem;
        font-weight: 600;
        color: #4a1a3d;
    }

    .notification-bell:hover,
    .notification-bell:active {
        background: linear-gradient(135deg, rgba(139, 10, 80, 0.12), rgba(139, 10, 80, 0.06));
        color: #8b0a50;
        transform: none;
        border-color: rgba(139, 10, 80, 0.2);
        box-shadow: none;
    }

    .notification-bell svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        filter: none;
    }

    .notification-badge {
        position: static;
        margin-left: auto;
        border: none;
        width: 8px;
        height: 8px;
        min-width: 8px;
        padding: 0;
        animation: none;
        background: linear-gradient(135deg, #ffd700, #f4c430);
        border-radius: 50%;
        flex-shrink: 0;
        box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
    }

    /* 전체화면 알림 패널 */
    .notification-dropdown {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
        border-radius: 0;
        box-shadow: none;
        background: #f8f0f4;
        border: none;
        display: flex;
        flex-direction: column;
        z-index: 2000;
        margin-top: 0;
    }

    .notification-dropdown::before {
        display: none;
    }

    .notification-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* 모바일 알림 헤더 - 2열 구조: [뒤로가기] [제목] */
    .notification-drop-header {
        display: grid;
        grid-template-columns: 44px 1fr;
        align-items: center;
        gap: 0;
        padding: 0;
        height: 56px;
        border-bottom: none;
        background: linear-gradient(135deg, #5c1a4a, #3d1235);
        flex-shrink: 0;
        position: relative;
        box-shadow: 0 2px 12px rgba(60, 18, 53, 0.2);
    }

    .notification-drop-header::before {
        display: none;
    }

    /* 왼쪽: 뒤로가기 (JS에서 동적 생성) */
    .notification-mobile-back {
        display: flex;
        width: 44px;
        height: 56px;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.2rem;
        cursor: pointer;
        transition: color 0.2s, opacity 0.2s;
        padding: 0;
        border-radius: 0 !important;
        opacity: 0.85;
    }

    .notification-mobile-back:active {
        color: #fff;
        opacity: 1;
    }

    /* 가운데: 제목 + 카운트 */
    .notification-drop-title {
        justify-content: flex-start;
        padding-left: 2px;
    }

    .notification-drop-title svg {
        display: none;
    }

    .notification-drop-title > span:first-of-type {
        color: #fff;
        font-size: 1.05rem;
        font-weight: 700;
        letter-spacing: 0.03em;
    }

    .notification-drop-count {
        display: none;
    }

    /* 모바일 닫기 버튼 (기존) 숨김 - back 버튼 사용 */
    .notification-mobile-close {
        display: none !important;
    }

    /* 알림 목록 영역 */
    .notification-list {
        flex: 1;
        max-height: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 8px 12px;
        background: linear-gradient(180deg, #f5eaf0 0%, #f8f0f4 8%, #f8f0f4 100%);
    }

    .notification-list::-webkit-scrollbar {
        width: 2px;
    }

    .notification-list::-webkit-scrollbar-thumb {
        background: rgba(139, 10, 80, 0.15);
        border-radius: 2px;
    }

    /* 알림 카드 스타일 */
    .notification-item {
        padding: 14px 16px;
        gap: 12px;
        border-bottom: none;
        background: #fff;
        border-radius: 14px;
        margin-bottom: 8px;
        box-shadow: 0 1px 4px rgba(74, 26, 61, 0.06), 0 0 0 1px rgba(139, 10, 80, 0.03);
        transition: transform 0.15s ease, box-shadow 0.15s ease;
        position: relative;
    }

    .notification-item:last-child {
        margin-bottom: 0;
    }

    .notification-item:active {
        transform: scale(0.985);
        box-shadow: 0 1px 2px rgba(74, 26, 61, 0.08);
    }

    .notification-item.unread {
        background: linear-gradient(135deg, #fffdf5 0%, #fff 60%);
        box-shadow: inset 3px 0 0 rgba(212, 175, 55, 0.45), 0 2px 10px rgba(92, 26, 74, 0.06), 0 0 0 1px rgba(212, 175, 55, 0.1);
    }

    .notification-item.unread::before {
        display: none;
    }

    /* 아이콘 */
    .notification-item-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        flex-shrink: 0;
    }

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

    .notification-item-icon.type-system {
        background: linear-gradient(135deg, #f3e5f5, #e1bee7);
        border: none;
        color: #7b1fa2;
    }

    .notification-item-icon.type-event {
        background: linear-gradient(135deg, #fff8e1, #ffe082);
        border: none;
        color: #f57f17;
    }

    .notification-item-icon.type-admin {
        background: linear-gradient(135deg, #e3f2fd, #90caf9);
        border: none;
        color: #1565c0;
    }

    .notification-item-icon.type-balance {
        background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
        border: none;
        color: #2e7d32;
    }

    .notification-item-icon.type-call {
        background: linear-gradient(135deg, #fff3e0, #ffcc80);
        border: none;
        color: #e65100;
    }

    .notification-item-icon.type-application {
        background: linear-gradient(135deg, #e0f2f1, #80cbc4);
        border: none;
        color: #00695c;
    }

    .notification-item-icon.type-application_reply {
        background: linear-gradient(135deg, #fce4ec, #f48fb1);
        border: none;
        color: #c2185b;
    }

    .notification-item-icon.type-review {
        background: linear-gradient(135deg, #fffde7, #fff176);
        border: none;
        color: #f9a825;
    }

    .notification-item-icon.type-review_reply {
        background: linear-gradient(135deg, #e8eaf6, #9fa8da);
        border: none;
        color: #3949ab;
    }

    .notification-item-icon.type-inquiry {
        background: linear-gradient(135deg, #ede7f6, #b39ddb);
        border: none;
        color: #4527a0;
    }

    .notification-item-icon.type-inquiry_reply {
        background: linear-gradient(135deg, #f3e5f5, #ce93d8);
        border: none;
        color: #7b1fa2;
    }

    .notification-item-icon.type-like {
        background: linear-gradient(135deg, #ffebee, #ef9a9a);
        border: none;
        color: #c62828;
    }

    /* 텍스트 */
    .notification-item-body {
        flex: 1;
        min-width: 0;
    }

    .notification-item-top {
        gap: 6px;
        margin-bottom: 4px;
    }

    .notification-item-title {
        color: #2d1528;
        font-size: 0.86rem;
        font-weight: 600;
        line-height: 1.35;
    }

    .notification-item.unread .notification-item-title {
        color: #2d1528;
        font-weight: 700;
    }

    .notification-item-message {
        color: rgba(74, 26, 61, 0.55);
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .notification-item.unread .notification-item-message {
        color: rgba(74, 26, 61, 0.72);
    }

    .notification-item-time {
        color: rgba(74, 26, 61, 0.3);
        font-size: 0.68rem;
    }

    /* 빈 상태 */
    .notification-empty {
        padding: 60px 20px;
        color: rgba(74, 26, 61, 0.35);
        font-size: 0.9rem;
    }

    .notification-empty-icon {
        background: linear-gradient(135deg, #f3e5f5, #e1bee7);
        border: none;
        width: 56px;
        height: 56px;
        border-radius: 18px;
        margin: 0 auto 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }

    /* 푸터 */
    .notification-drop-footer {
        border-top: 1px solid rgba(139, 10, 80, 0.05);
        padding: 14px 18px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.6);
        text-align: center;
    }

    .notification-drop-footer span {
        color: rgba(74, 26, 61, 0.3);
        font-size: 0.7rem;
    }

    /* 모바일에서 드롭다운 항상 표시 */
    .user-mini-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 8px;
        box-shadow: none;
        background: transparent;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 0;
        margin-top: 4px;
        padding: 10px 0 0 0;
        max-height: none;
        overflow: visible;
    }

    .user-area.active .user-mini-dropdown {
        max-height: none;
    }

    .mini-drop-item {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        color: #4a1a3d !important;
        font-size: 0.88rem;
        font-weight: 500;
    }

    .mini-drop-item:hover {
        background: rgba(255, 255, 255, 0.35);
        color: #4a1a3d !important;
    }

    .mini-drop-logout {
        color: rgba(160, 40, 40, 0.8) !important;
        border-top: none;
        margin-top: 0;
        padding-top: 10px;
    }

    .mini-drop-logout:hover {
        background: rgba(255, 100, 100, 0.15) !important;
        color: rgba(160, 40, 40, 1) !important;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }

    main {
        padding-top: 60px;
    }

    section {
        padding: 25px 15px;
    }

    .hero {
        padding: 30px 15px 25px;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-top: 8px;
    }

    .hero h1.slogan {
        font-size: 1.8rem;
        margin-bottom: 20px;
        word-break: keep-all;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 10px 18px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .event-banner {
        font-size: 0.85rem;
        padding: 10px 18px;
        flex-direction: column;
        gap: 8px;
    }

    .page-title {
        padding-top: 20px;
        margin-bottom: 25px;
    }

    .page-title h1 {
        font-size: 1.6rem;
    }

    .page-title p {
        font-size: 0.9rem;
    }

    .section-header {
        margin-top: 10px;
    }

    .section-title h2 {
        font-size: 1.1rem;
    }

    .section-title .badge {
        font-size: 0.65rem;
        padding: 3px 10px;
    }

    .section-desc {
        font-size: 0.8rem;
        margin-top: 10px;
    }

    .consultant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .card {
        padding: 15px 12px;
        border-radius: 15px;
    }

    .card-header {
        margin-top: 8px;
    }

    .card-like-btn {
        top: 8px;
        left: 8px;
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .avatar {
        width: 150px;
        height: 150px;
        font-size: 2rem;
        margin-top: 8px;
    }

    .consultant-name {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .status {
        font-size: 0.6rem;
        padding: 3px 8px;
        margin-bottom: 6px;
    }

    .tags {
        gap: 3px;
        margin-bottom: 6px;
    }

    .tag {
        font-size: 0.55rem;
        padding: 2px 6px;
    }

    .card-desc {
        font-size: 0.65rem;
        margin-top: 8px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-buttons {
        flex-direction: column;
        gap: 5px;
    }

    .btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        border-radius: 20px;
        justify-content: center;
    }

    .btn-secondary {
        display: none;
    }

    footer {
        margin-top: 40px;
    }

    .footer-fade {
        top: -40px;
        height: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 20px 25px;
    }

    .footer-section {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(147, 51, 234, 0.1);
    }

    .footer-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-bottom {
        padding: 20px 15px;
    }

    .company-primary {
        font-size: 0.7rem;
    }

    footer p {
        margin-bottom: 5px;
    }

    .moon {
        width: 50px;
        height: 50px;
        top: 30%;
        right: 10%;
    }

    .sun {
        width: 40px;
        height: 40px;
        top: 30%;
        left: 10%;
    }

    .sun::before,
    .sun::after {
        display: block;
    }

    .mystic-eye {
        width: 60px;
        height: 30px;
        opacity: 0.1;
    }

    .tarot-card-deco {
        display: none;
    }

    .crystal {
        display: none;
    }

    .magic-circle {
        display: none;
    }

    .constellation {
        opacity: 0.2;
    }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 480px) {
    header {
        padding: 10px 12px;
        height: 60px;
    }

    .logo img {
        height: 120px;
        margin-top: 8px;
    }

    .menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    nav ul li a {
        font-size: 1.2rem;
        padding: 12px 10px;
    }

    .hero h1.slogan {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

    .consultant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .card {
        padding: 12px 10px;
    }

    .card-like-btn {
        top: 8px;
        left: 8px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .avatar {
        width: 120px;
        height: 120px;
    }

    .consultant-name {
        font-size: 0.8rem;
    }

    .tag {
        font-size: 0.5rem;
        padding: 2px 5px;
    }

    .btn {
        padding: 5px 8px;
        font-size: 0.65rem;
    }

    .footer-inner {
        padding: 25px 15px 20px;
    }

    .footer-section h4 {
        font-size: 0.85rem;
    }

    .footer-phone {
        font-size: 0.95rem !important;
    }

    .company-primary {
        font-size: 0.65rem;
    }

    .copyright {
        font-size: 0.65rem;
    }
}

/* 아주 작은 화면 (375px 이하) */
@media (max-width: 375px) {
    header {
        padding: 8px 10px;
        height: 55px;
    }

    .logo img {
        height: 110px;
        margin-top: 5px;
    }

    .consultant-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .card {
        padding: 18px 15px;
    }

    .card-like-btn {
        top: 8px;
        left: 8px;
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    .avatar {
        width: 100px;
        height: 100px;
    }

    .card-buttons {
        flex-direction: row;
    }

    .btn-secondary {
        display: flex;
    }

    .hero h1.slogan {
        font-size: 1.3rem;
    }

    nav ul li a {
        font-size: 1.1rem;
        padding: 10px 8px;
    }
}

/* ========== 스크롤바 ========== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: rgba(20, 20, 45, 0.8); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #7c3aed, #a855f7); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #6d28d9, #7c3aed); }

/* ========== 데스크톱에서 모바일 요소 숨김 ========== */
.menu-toggle {
    display: none;
}

.menu-overlay {
    display: none;
}

/* ========== 상담 팝업 모달 ========== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(145deg, rgba(25, 25, 50, 0.98), rgba(35, 30, 60, 0.98));
    border: 2px solid rgba(147, 51, 234, 0.5);
    border-radius: 25px;
    padding: 30px;
    max-width: 350px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(147, 51, 234, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
}

.modal-header h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #fff;
}

.call-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.call-option:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.05);
}

.call-option:last-child {
    margin-bottom: 0;
}

.call-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.call-option-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
}

.call-option-badge {
    display: none;
}

.call-option-badge.prepaid {
    display: none;
}

.call-option-badge.postpaid {
    display: none;
}

.call-option-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.call-option-price {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.call-option-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ffd700 0%, #f4c430 50%, #daa520 100%);
    border: none;
    border-radius: 10px;
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.call-option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffe44d 0%, #ffd700 50%, #e6b800 100%);
}

/* 선불/후불 버튼 모두 동일한 금색 */
.call-option.prepaid .call-option-btn,
.call-option.postpaid .call-option-btn {
    background: linear-gradient(135deg, #ffd700 0%, #f4c430 50%, #daa520 100%);
    color: #1a1a2e;
}
