/* ==========================================
   GLOBAL NAVBAR
   ========================================== */

.global-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.9);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.navbar-brand {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
}

.navbar-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.navbar-link {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-link:hover, .navbar-link.active {
    color: #fff;
}

@media (max-width: 600px) {
    .global-navbar {
        padding: 0.8rem 1rem;
    }
    .navbar-links {
        gap: 1rem;
    }
    .navbar-link {
        font-size: 0.85rem;
    }
}
