/* 모바일 바텀 네비게이션 스타일 (통일) */
.mobile-bottom-nav,
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-secondary, #1e2329);
    border-top: 1px solid var(--border-color, #2b3139);
    display: none;
    align-items: center;
    justify-content: space-around;
    z-index: 1000;
    padding: 0 8px;
}

@media (max-width: 768px) {
    .mobile-bottom-nav,
    .bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 60px;
    }
}

.mobile-nav-item,
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    color: var(--text-secondary, #848e9c);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    padding: 6px;
    gap: 4px;
}

.mobile-nav-item svg,
.bottom-nav-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.mobile-nav-item span,
.bottom-nav-item span {
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.mobile-nav-item.active,
.bottom-nav-item.active {
    color: var(--primary-color, #f0b90b);
}

.mobile-nav-item.active::before,
.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color, #f0b90b);
}

.mobile-nav-item:active,
.bottom-nav-item:active {
    transform: scale(0.95);
}