.top-navbar {
    width: 100%;
    height: 65px;
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    margin-bottom: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    opacity: 0.8;
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.nav-links a.active {
    color: var(--accent);
    font-weight: 600;
}