ERR_NAME_NOT_RESOLVEDWhat ERR_NAME_NOT_RESOLVED means
Before any TCP connection, the browser must resolve the hostname to an IP address via DNS. ERR_NAME_NOT_RESOLVED means that lookup returned nothing — an NXDOMAIN answer or an outright resolver failure — so no packet was ever sent toward the site. It is not a server error and not a timeout; the target was never contacted.
Typical causes, roughly in order of frequency: a typo or a domain that genuinely doesn't exist (expired registration, wrong TLD), the configured DNS server being down or unreachable, a stale entry in the OS or browser DNS cache, a hosts-file override left over from testing, or VPN, antivirus, and firewall software intercepting DNS traffic and failing silently.
When a proxy is configured, resolution splits in two. Your machine always resolves the proxy's hostname. The target hostname is resolved either locally or by the proxy, depending on protocol: HTTP proxying sends the target as a name, so the proxy resolves it; SOCKS5 goes either way — socks5:// resolves locally, socks5h:// hands the name to the proxy. That split tells you where to look when this error appears.