
            <html>
            <head>
                <title>Critical System Failure</title>
                <style>
                    body {
                        background: #111;
                        color: #ff3b3b;
                        font-family: Arial;
                        text-align: center;
                        padding-top: 80px;
                    }
                    .box {
                        max-width: 700px;
                        margin: auto;
                        border: 2px solid #ff3b3b;
                        padding: 30px;
                        border-radius: 10px;
                        background: #1a1a1a;
                    }
                    h1 {
                        font-size: 28px;
                        margin-bottom: 10px;
                    }
                    .code {
                        font-size: 20px;
                        margin: 20px 0;
                        color: yellow;
                    }
                </style>
            </head>
            <body>
                <div class='box'>
                    <h1>⚠️ CRITICAL SYSTEM FAILURE</h1>
                    <p>Web application terminated due to unexpected configuration conflict.</p>

                    <div class='code'>
                        ERROR CODE: ERR_732625
                    </div>

                    <p>Possible causes:<br>
                    • Invalid system authentication<br>
                    • Corrupted configuration state<br>
                    • Unauthorized access detected</p>

                    <h3>⚠️ DO NOT IGNORE THIS ERROR</h3>

                    <p>
                        If you are not a developer, contact your system administrator or developer immediately
                        to resolve this issue and prevent potential data loss.
                    </p>
                </div>
            </body>
            </html>