/* ── NTCG Network Topbar ─────────────────────────────────────────────────── */

.ntcg-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: 44px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.admin-bar .ntcg-topbar {
    top: 32px;
}

.ntcg-topbar__nav {
    display: flex;
    align-items: center;
    gap: 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.ntcg-topbar__nav::-webkit-scrollbar {
    display: none;
}

.ntcg-topbar__nav a,
.ntcg-topbar__login {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 8px;
    color: #30373b;
    text-decoration: none;
    font-family: "Figtree", -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 3px;
    transition: color 0.15s ease;
}

.ntcg-topbar__nav a:hover,
.ntcg-topbar__login:hover {
    color: rgba(48, 55, 59, 0.9);
}

.ntcg-topbar__nav a.is-active {
    color: #0FACB2;
}


.ntcg-topbar__login {
    gap: 6px;
    padding-left: 14px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    margin-left: 6px;
    flex-shrink: 0;
}

.ntcg-topbar__lock {
    width: 10px;
    height: 8px;
    border: 1.5px solid currentColor;
    border-radius: 2px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.ntcg-topbar__lock::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -6px;
    width: 7px;
    height: 6px;
    border: 1.5px solid currentColor;
    border-bottom: 0;
    border-radius: 7px 7px 0 0;
}
