       .js-disabled-overlay {
            position: fixed;
            inset: 0;
            z-index: 999999;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
            color: #fff;
            font-size: 1.5rem;
            line-height: 1;
            text-align: center;
            padding: 0 20px;
        }

        .js-disabled-overlay::before {
            content: "Please enable JavaScript in your browser to access this site.";
        }

        .js-disabled-overlay ~ * {
            display: none;
        }