<!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=Orbitron:wght@400;700;900&display=swap');
body {
    font-family: 'Orbitron', sans-serif;
    background: #0d0d0d; color: #00f0ff;
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh; overflow: hidden;
}
body::before {
    content: ''; position: fixed; inset: 0; pointer-events: none;
    background: linear-gradient(transparent 50%, rgba(0,240,255,.02) 50%);
    background-size: 100% 4px;
    animation: scanMove 8s linear infinite;
}
@keyframes scanMove { to{background-position:0 100%} }
.card {
    text-align: center; padding: 60px 50px; max-width: 540px; width: 90%;
    border: 2px solid #00f0ff; border-radius: 0;
    box-shadow: 0 0 40px rgba(0,240,255,.1), inset 0 0 40px rgba(0,240,255,.03);
    position: relative;
    animation: glitchIn .6s ease both;
}
@keyframes glitchIn { 0%{opacity:0;transform:skewX(-5deg)} 50%{transform:skewX(2deg)} 100%{opacity:1;transform:skewX(0)} }
.card::before, .card::after {
    content: ''; position: absolute; top: -2px; bottom: -2px; width: 4px; background: #00f0ff;
}
.card::before { left: -2px; }
.card::after { right: -2px; }
.error-code {
    font-size: clamp(70px, 14vw, 130px); font-weight: 900; line-height: 1;
    color: #00f0ff; margin-bottom: 12px;
    text-shadow: 3px 0 #ff0040, -3px 0 #00ff88;
    animation: glitchText 3s ease-in-out infinite;
}
@keyframes glitchText {
    0%,100%{text-shadow:3px 0 #ff0040,-3px 0 #00ff88}
    25%{text-shadow:-2px 0 #ff0040,2px 0 #00ff88}
    50%{text-shadow:1px 0 #ff0040,-1px 0 #00ff88}
}
.error-title { font-size: 13px; font-weight: 400; color: #00ccdd; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 6px; }
.error-msg { font-size: 11px; color: rgba(0,240,255,.4); line-height: 1.8; letter-spacing: 1px; }
.divider { width: 80px; height: 2px; background: #00f0ff; margin: 20px auto; box-shadow: 0 0 10px rgba(0,240,255,.5); }

/* ===== Theme 8 — Aurora Borealis ===== */</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(69d32be0a5c9d)                    </div>
    </div>
</body>
</html>