#chillroom-central-auth {
    position: fixed;
    top: 20px;
    right: 22px;
    z-index: 2147482000;

    display: flex;
    align-items: center;
    gap: 10px;

    font-family: Segoe UI, Arial, sans-serif;
}

.chillroom-central-login,
.chillroom-central-logout,
.chillroom-central-profile {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 9px 14px;

    border: 1px solid rgba(157, 118, 255, 0.48);
    border-radius: 14px;

    color: #ffffff;
    background: rgba(16, 12, 39, 0.78);

    box-shadow:
        0 0 18px rgba(102, 75, 255, 0.25),
        inset 0 0 16px rgba(255, 255, 255, 0.035);

    text-decoration: none;
    font-size: 13px;
    font-weight: 800;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.chillroom-central-login:hover,
.chillroom-central-logout:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
}

.chillroom-central-avatar {
    width: 28px;
    height: 28px;

    border-radius: 50%;
    object-fit: cover;

    box-shadow:
        0 0 12px rgba(97, 179, 255, 0.4);
}

.chillroom-central-logout {
    color: #ffd8ea;
    border-color: rgba(255, 98, 161, 0.4);
}

@media (max-width: 720px) {
    #chillroom-central-auth {
        top: 12px;
        right: 12px;
        left: 12px;

        justify-content: flex-end;
    }

    .chillroom-central-profile {
        max-width: 180px;
    }

    .chillroom-central-profile strong {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}