/* Shared Sticky Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1.5rem;
    gap: 1rem;
}
.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.logo-img {
    height: 32px;
    width: auto;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-item {}
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.85rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.nav-link i {
    font-size: 0.85rem;
}
.nav-link:hover {
    color: #fff;
    background: rgba(108, 92, 231, 0.15);
}
.nav-link.active {
    color: #fff;
    background: rgba(108, 92, 231, 0.2);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 10001;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Body offset for fixed navbar */
body {
    padding-top: 60px;
}

/* Mobile */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        display: none;
        position: fixed;
        top: 55px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 30, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: 0.25rem;
        overflow-y: auto;
        z-index: 10000;
    }
    .nav-menu.mobile-open {
        display: flex;
    }
    .nav-link {
        padding: 0.9rem 1rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    .nav-link:hover, .nav-link.active {
        background: rgba(108, 92, 231, 0.2);
    }
}
@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }
    .logo-img {
        height: 26px;
    }
}
