
#navbar{
    margin: 0;
    width: 100%;
    height: 80px;
    padding: 10px 111px;
    background-color: var(--body-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 20;
}

#app-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

#buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#app-logo > span{
    color: #FAFAFA;
    font-weight: 600;
    font-size: 18px;
    line-height: 19.2px;
}

#app-logo > img{
    width: 32px;
    height: 32px;
    border-radius: 24px;
    padding-right: 0.5px;
}

#buttons > a {
    position: relative;
    display: inline-block; /* Ensure it works with padding and content */
    height: 30px;
    padding: 8px 14px;
    outline: none;
    border: none; /* Remove default border */
    border-radius: 27px;
    background-color: #1E1E2E; /* Button background color */
    color: #FAFAFA; /* Text color */
    font-weight: 600;
    font-size: 14px;
    line-height: 16.8px;
    cursor: pointer; /* Pointer cursor on hover */
    z-index: 1; /* Ensure it is above pseudo-elements */
    transition: all 0.3s ease;
    text-decoration: none;
}

#buttons > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 27px; 
    padding: 0.5px; 
    background: linear-gradient(180deg, #A9A8CD 0%, #141524 100%); /* Gradient border */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1; 
}


