/* PREMIUM UI SHARED STYLES */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    padding: 0.8rem 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.nav-list {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 2rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--cyan);
    text-shadow: 0 0 10px rgba(0, 207, 255, 0.6);
}

.logo {
    font-size: 1.6rem !important; /* 크기 약간 확대 */
    font-weight: 900 !important;
    letter-spacing: -0.05em !important; /* 자간 최적화 */
    color: #ffffff !important;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-neon-cyan {
    color: #00F3FF !important; /* 더 밝은 시안색으로 교체 */
    font-weight: 900 !important;
    /* 광채 범위를 좁히고 안쪽을 더 진하게 하여 선명도 확보 */
    text-shadow: 
        0 0 2px rgba(255, 255, 255, 0.5),
        0 0 6px rgba(0, 243, 255, 0.9),
        0 0 12px rgba(0, 243, 255, 0.5);
}

.nav-btn-outline {
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--cyan);
    border-radius: 4px;
    color: var(--cyan);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-btn-outline:hover {
    background: rgba(0, 207, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 207, 255, 0.3);
    transform: translateY(-2px);
}

.nav-btn-outline.highlight {
    background: rgba(0, 207, 255, 0.05);
}

/* CUSTOM CURSOR */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--cyan);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10001;
    pointer-events: none;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--cyan);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    background-color: rgba(0, 207, 255, 0.05);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}
* { cursor: none !important; }
@media (max-width: 991px) { * { cursor: auto !important; } }
