.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;
    height: auto;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    color: #ffffff;
    background: linear-gradient(135deg, #7c3aed, #a855f7);

    border-radius: 9999px;
    text-decoration: none;
    white-space: nowrap;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(124, 58, 237, 0.35);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
