.navbar {
    display: flex;
    position: fixed;
    top: 18px;
    z-index: 100;
    justify-content: space-between;
    align-items: center;
    max-height: 56px;
    width: 100%;
    max-width: 1024px;
    border-radius: 22px;
    font-family: var(--font-ui);
    background: transparent;
    color: black;
    padding: 10px;
    transition: all 0.3s ease;
    left: 50%;
    transform: translateX(-50%);
}

.navbar.scrolled {
    background: #fff;
    color: black;
    box-shadow:
        0px 7px 16px 0px rgba(0, 0, 0, 0.1),
        0px 4px 4px 0px rgba(0, 0, 0, 0.04),
        0px 1px 2px 0px rgba(0, 0, 0, 0.12);
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
}

.nav-links a {
    font-family: var(--font-ui);
    font-weight: 500;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    letter-spacing: -0.48px;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-family: var(--font-ui);
    color: #000;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 12px;
    border: none;
}

.login-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.get-started-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    font-size: 16px;
    font-weight: 500;
    background: #000;
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}
