<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow">
<title>404 — Error</title>
<style>
/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; -webkit-font-smoothing: antialiased; }
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700&display=swap');
body {
    font-family: 'Space Grotesk', sans-serif;
    background: #09090b; color: #fafafa;
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh; overflow: hidden;
}
body::before {
    content: ''; position: fixed; top: 50%; left: 50%;
    width: 600px; height: 600px; transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, #ef4444, #f97316, #eab308, #22c55e, #3b82f6, #8b5cf6, #ef4444);
    border-radius: 50%; filter: blur(120px); opacity: .12;
    animation: hueRotate 10s linear infinite;
}
@keyframes hueRotate { to{filter:blur(120px) hue-rotate(360deg)} }
.card {
    position: relative; text-align: center; padding: 60px 50px; max-width: 520px; width: 90%;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06); border-radius: 20px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.04);
    animation: fadeUp .8s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.error-code {
    font-size: clamp(80px, 15vw, 140px); font-weight: 700; line-height: 1;
    background: linear-gradient(135deg, #ef4444, #f97316, #eab308);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 12px;
    animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{filter:drop-shadow(0 0 8px rgba(239,68,68,.3))} 50%{filter:drop-shadow(0 0 20px rgba(249,115,22,.5))} }
.error-title { font-size: 18px; font-weight: 300; color: rgba(255,255,255,.6); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 3px; }
.error-msg { font-size: 14px; color: rgba(255,255,255,.3); line-height: 1.6; }
.divider { width: 60px; height: 2px; background: linear-gradient(90deg, #ef4444, #f97316); border-radius: 2px; margin: 20px auto; }

/* ===== Theme 6 — Minimal Zen ===== */</style>
</head>
<body>
    <div class="card">
        <div class="error-code">404</div>
        <div class="error-title">Sorry! That page cannot be found…</div>
        <div class="divider"></div>
        <div class="error-msg">
            The URL was either incorrect, you took a wrong guess or there is a technical problem. - No brand config for domain(69d9536ddc691)                    </div>
    </div>
</body>
</html>