/* 기본 설정 */
* {
    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: '✦';
    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: '✧';
    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 50px;
    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: 35px;
    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.5rem;
    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;
}

/* ========== 메인 컨텐츠 ========== */
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: linear-gradient(145deg, 
        rgba(25, 25, 50, 0.95) 0%, 
        rgba(35, 30, 60, 0.9) 50%,
        rgba(25, 25, 50, 0.95) 100%
    );
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 105, 180, 0.4);
    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.4),
        0 0 20px rgba(255, 105, 180, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    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(255, 105, 180, 0.7);
    box-shadow: 
        0 20px 60px rgba(255, 105, 180, 0.3),
        0 0 40px rgba(255, 105, 180, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* 프리미엄 카드 */
.card.premium {
    background: linear-gradient(145deg, 
        rgba(45, 35, 20, 0.95) 0%, 
        rgba(55, 45, 25, 0.9) 50%,
        rgba(45, 35, 20, 0.95) 100%
    );
    border: 2px solid rgba(255, 105, 180, 0.6);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 105, 180, 0.15),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.card.premium:hover {
    border-color: #ff69b4;
    box-shadow: 
        0 20px 60px rgba(255, 105, 180, 0.25),
        0 0 50px rgba(255, 105, 180, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.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(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 105, 180, 0.3);
    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(236, 72, 153, 0.4);
    border-color: rgba(255, 105, 180, 0.6);
    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(135deg, #4c1d95 0%, #7c3aed 50%, #a855f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 3rem;
    color: #fff;
    box-shadow: 
        0 8px 25px rgba(124, 58, 237, 0.4),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 105, 180, 0.5);
    overflow: hidden;
}

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

.card.premium .avatar {
    background: linear-gradient(135deg, #92400e 0%, #d97706 50%, #fbbf24 100%);
    box-shadow: 
        0 8px 25px rgba(217, 119, 6, 0.4),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.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(239, 68, 68, 0.25), rgba(248, 113, 113, 0.15));
    color: #f87171;
    border: 2px solid rgba(239, 68, 68, 0.6);
    box-shadow: 0 0 15px rgba(239, 68, 68, 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, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
    transform: translateY(-2px);
}

.card.premium .btn-primary {
    background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.4);
}

.card.premium .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========== 푸터 ========== */
footer {
    background: rgba(5, 5, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    padding: 35px 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

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);
}

/* ========== 반응형 - 태블릿 (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; /* 헤더 100px 대비 1.8배 */
        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; /* 헤더 70px 대비 2배 - PC처럼 크게 */
        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;
    }
    
    .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 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;
    }
    
    /* 메뉴 오버레이 */
    .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;
    }
    
    /* 상담사 카드 그리드 - 2열 */
    .consultant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* 상담사 카드 - 컴팩트 */
    .card {
        padding: 15px 12px;
        border-radius: 15px;
    }
    
    .card-header {
        margin-top: 8px;
    }
    
    .premium-badge {
        font-size: 0.55rem;
        padding: 4px 8px;
        top: -8px;
        right: -8px;
        border-radius: 0 15px 0 12px;
    }
    
    /* 좋아요 버튼 - 모바일 */
    .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 {
        padding: 25px 15px;
        font-size: 0.8rem;
    }
    
    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; /* 헤더 60px 대비 2배 */
        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;
    }
    
    /* 상담사 카드 그리드 - 2열 유지하되 간격 축소 */
    .consultant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .card {
        padding: 12px 10px;
    }
    
    .premium-badge {
        font-size: 0.5rem;
        padding: 3px 6px;
        top: -6px;
        right: -6px;
    }
    
    .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 {
        padding: 20px 12px;
        font-size: 0.75rem;
    }
}

/* 아주 작은 화면 (375px 이하) */
@media (max-width: 375px) {
    header {
        padding: 8px 10px;
        height: 55px; /* 고정 높이 */
    }
    
    .logo img {
        height: 110px; /* 헤더 55px 대비 2배 */
        margin-top: 5px;
    }
    
    /* 상담사 카드 - 1열 그리드 */
    .consultant-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .card {
        padding: 18px 15px;
    }
    
    .premium-badge {
        font-size: 0.5rem;
        padding: 3px 6px;
        top: -6px;
        right: -6px;
    }
    
    .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;
}
