
        :root {
            --bg: #f5f5f6;
            --text: #111111;
            --subtext: #111111;
            --accent: #003a8c;
            --panel: #ffffff;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            min-height: 100vh;
            background: #ffffff;
            color: var(--text);
            font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
            display: grid;
            place-items: center;
            padding: 24px;
        }

        .error-wrap {
            width: min(1200px, 100%);
            background: var(--panel);
            border-radius: 20px;
            padding: clamp(24px, 4vw, 56px);
        }

        .error-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: clamp(20px, 4vw, 60px);
        }

        .error-text {
            flex: 1;
            min-width: 260px;
        }

        .error-code {
            margin: 0;
            font-size: clamp(72px, 13vw, 200px);
            line-height: 0.9;
            letter-spacing: 0.02em;
            color: var(--text);
            font-weight: 300;
        }

        .error-message {
            margin-top: 40px;
            margin-bottom: 0;
            font-size: clamp(20px, 2.3vw, 24px);
            line-height: 1.6;
            color: var(--subtext);
            font-weight: 400;
        }

        .error-graphic {
            flex: 1;
            min-width: 260px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .error-graphic img {
            width: min(100%, 520px);
            height: auto;
            display: block;
        }

        @media (max-width: 900px) {
            .error-main {
                flex-direction: column;
                text-align: center;
            }

            .error-text,
            .error-graphic {
                width: 100%;
            }

            }
