      button,
        html {
            font-family:
                system-ui,
                -apple-system,
                BlinkMacSystemFont,
                Segoe UI,
                Roboto,
                Helvetica Neue,
                Arial,
                Noto Sans,
                sans-serif,
                Apple Color Emoji,
                Segoe UI Emoji,
                Segoe UI Symbol,
                Noto Color Emoji;
        }

        body {
            display: flex;

            flex-direction: column;

            height: 98vh;

            min-height: 98vh;

            background-color: #222;
        }

        .main-wrapper {
            align-items: center;

            display: flex;

            flex: 1;

            flex-direction: column;
        }

        .main-content {
            margin: 8rem auto;

            max-width: 60rem;

            padding-left: 1.5rem;

            padding-right: 1.5rem;

            width: 100%;
        }

        .h1 {
            font-size: 2.5rem;

            font-weight: 500;

            line-height: 3.75rem;

            color: #d9d9d9;
        }

        .heading-favicon {
            height: 2rem;

            margin-right: 0.5rem;

            width: 2rem;
        }

        .core-msg,
        .zone-name-title {
            overflow-wrap: break-word;
        }

        h2 {
            font-weight: 500;

            color: #d9d9d9;
        }

        .core-msg,
        h2 {
            font-size: 1.5rem;

            line-height: 2.25rem;
        }

        .spacer-top {
            margin-top: 4rem;

            color: #d9d9d9;
        }

        .captcha-checkbox {
            display: flex;

            align-items: center;

            border: 1px solid #797979;

            padding: 15px;

            width: 100%;

            max-width: 280px;

            justify-content: space-between;
            cursor: pointer;

            color: #d9d9d9;
        }

        .captcha-checkbox input[type="checkbox"] {
            cursor: pointer;

            grid-area: 1 / 1;

            height: 24px;

            margin: 0;

            width: 24px;

            z-index: 9999;

            background-color: #222;

            border: 2px solid #dadada;
        }

        .captcha-checkbox img {
            max-width: 80px;

            height: auto;
        } /* Responsive logo */

        #spinner-i {
            animation: spin 5s linear infinite;

            display: flex;

            height: 30px;

            width: 30px;
        }

        .circle {
            stroke-width: 3px;

            stroke-linecap: round;

            stroke: #038127;

            stroke-dasharray: 0, 100, 0;

            stroke-dashoffset: 200;

            stroke-miterlimit: 1;

            stroke-linejoin: round;
        }

        @keyframes spin {
            to {
                transform: rotate(1turn);
            }
        }

        .footer {
            font-size: 0.75rem;

            line-height: 1.125rem;

            margin: 0 auto;

            max-width: 60rem;

            padding-left: 1.5rem;

            padding-right: 1.5rem;

            width: 100%;
        }

        .footer-inner {
            border-top: 1px solid #d9d9d9;

            padding-bottom: 1rem;

            padding-top: 1rem;

            color: #d9d9d9;
        }

        .diagnostic-wrapper {
            margin-bottom: 0.5rem;
        }

        .footer .ray-id {
            text-align: center;
        }

        .text-center {
            text-align: center;
        }

        body a {
            color: #fff;
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 5;
        }

        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 20px;

            border-radius: 8px;
            width: 300px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            z-index: 100;

            background: #fff;
            border: 1px solid #d1d1d1;
            color: #333;

            background: #2c2c2e;
            border-color: #3a3a3c;
            color: #e5e5e7;
        }