body, html {
    font-family: Nunito, sans-serif;
    background: #01010a;
    overflow-x: hidden;
}

.background {
    position: absolute;
    display: block;

    height: 100%;
    width: 100%;

    left: 0;
    top: 0;
}

.navbar-container {
    position: fixed;
    display: flex;
    left: 50%;
    transform: translateX(-50%);

    justify-content: center;
    align-items: center;

    background-color: rgba(255, 143, 253, 0.05);
    box-shadow: 0 8px 30px rgba(29, 4, 29, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(25px);
    padding: 7px 20px;
    gap: 20px;
    top: 20px;

    user-select: none;
}

li {
    list-style: none;
}

.lnks {
    display: flex;
}

.lnk {
    text-decoration: none;

    color: rgb(168, 168, 168);
    cursor: default;
    font-size: 17px;
    
    transition: color 0.3s ease-in-out;
}

.lnk:hover {
    color: white;
}

.lnk.disabled {
    pointer-events: none;
    color: rgb(103, 103, 103);
}

.actionClick {
    padding: 10px 16px;
}

.actionJoinDiscord {
    display: flex;
    cursor: default;
}
.actionJoinDiscord img {
    aspect-ratio: 1/1;
    width: 30px;
}

.actionDownload {
    display: flex;

    align-items: center;

    border: 0.75px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    color: rgb(234, 234, 234);
    backdrop-filter: blur(1px);
    border-radius: 11px;
    font-size: 16px !important;
    padding: 6px 9px;
    font-weight: 500;
    cursor: default;
    gap: 9px;

    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.actionDownload img {
    aspect-ratio: 1/1;
    width: 22px;
}
.actionDownload:hover {
    transform: scale(1.025);
}
.actionDownload.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    user-select: none;
}

.actionLogin {
    position: fixed;
    
    -webkit-tap-highlight-color: transparent;
    background-color: rgba(115, 30, 115, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(29, 4, 29, 0.55);
    backdrop-filter: blur(25px);
    border-radius: 15px;
    padding: 10px 18px;
    color: rgb(168, 168, 168);
    text-decoration: none;
    font-size: 17px;
    right: 20px;
    top: 20px;
    
    transition: color 0.3s ease, background-color 0.3s ease;
    user-select: none
}
.actionLogin:hover {
    color: rgb(255, 255, 255)
}

.actionLogin.authenticated {
    -webkit-tap-highlight-color: transparent;
    
    display: flex;
    
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    aspect-ratio: 1/1;
    width: 44px !important;
    color: rgb(206, 206, 206);
    padding: 0;
}

.settings {
    position: absolute;

    aspect-ratio: 1/1;
    width: 28px;
    transform: translate(-50%, -50%);
    fill: currentColor;
    left: 50%;
    top: 50%;

    transition: transform 0.4s ease, color 0.3s ease;
}

.actionLogin.authenticated:hover .settings {
    transform: translate(-50%, -50%) rotate(15deg);
    color: rgb(255, 255, 255);
}

@media (max-width: 768px) {
    .lnks {
        display: none;
    }
    .actionDownload {
        display: none;
    }
}