nav{
    width: 100%;
    height: 65px;

    position: absolute;
    top: 0;

    transition: 200ms;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 800ms cubic-bezier(0.83, 0, 0.17, 1);

}

nav .profile{
    position: absolute;
    right: 20px;
    height: 45px;

    display: flex;
    align-items: end;
    flex-direction: row-reverse;
}

nav .profile .profile-image{
    height: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 0px solid #fc4040;
    filter: drop-shadow(0 0 0px #fc4040);
    background: var(--secondary);
}

nav .profile .info-row{
    height: 100%;
    width: 0px;
    background: #94A4C4;
    border-radius: 30px 0 0 30px;
    position: relative;
    left: 20px;
    z-index: -1;

    text-align: center;
    line-height: 45px;

    font-weight: 700;
    color: var(--text-secondary);

    overflow: hidden;

    padding-left: 0px;
    padding-right: 0px;
}

nav .profile .profile-live-indicator{
    left: 120px;
    z-index: -2;
    background: #fc4040;
    width: 90px;
    overflow: hidden;
}

nav .logo{
    height: 50%;
    position: absolute;
    left: 20px;
}

nav .links{
    position: absolute;
    left: calc(20px + 170px + 10px);
    display: flex;
    gap: 20px;
    opacity: 0.8;
    transition: 250ms;
}

nav .links:hover{
    opacity: 1;
}

nav .links a{
    opacity: .6;
}

nav .links a:hover{
    opacity: 1;
}

nav:hover{
    backdrop-filter: blur(2px);
}

a{
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 1.2rem;
    color: var(--text-secondary);
}


.ad-banner{
    width: calc(100% - 40px);
    height: 180px;
    position: absolute;
    top: 70px;
    background: #1e1e1e;
    border-radius: .75rem;
    overflow: hidden;

    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.ad-banner *{
    user-select: none;
}

.ad-image{
    height: 100%;
    position: absolute;
    left: 0;
    -webkit-user-drag: none;
    -moz-window-dragging: no-drag;
    pointer-events: none;
}

.ad-image-right{
    right: 0;
    left: initial;
}

.ad-text{
    position: relative;
    left: 30%;
    color: var(--text-secondary);
    z-index: 2;
}

.ad-button{
    position: absolute;
    right: 20px;
    height: 40px;
    padding: 0 20px;
    border-radius: 20px;
    border: var(--text-secondary) solid 2px;
    background: none;
    color: var(--text-secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 200ms;
    z-index: 2;
}

/*Ko-Fi Tip Widget*/
.floatingchat-container-wrap{
    left: initial !important;
    right: 16px;
}

.floating-chat-kofi-popup-iframe{
    right: 16px !important;
    left: initial !important;
}