.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 72px;

    z-index: 1000;

    display: flex;
    align-items: center;

    background: rgba(8, 11, 18, .72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid transparent;

    transition: .3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 22, .91);
    border-bottom-color: var(--border);
}

.nav-inner {
    width: min(var(--container), calc(100% - 48px));
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;

    margin-left: 100px;
}

.nav-links a {
    color: var(--muted);
    font-size: 12px;
    transition: color .2s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-button {
    padding: 10px 17px;
    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .035);

    font-size: 12px;
    transition: .25s ease;
}

.nav-button:hover {
    border-color: rgba(59, 130, 246, .45);
    background: rgba(59, 130, 246, .12);
}