<!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=Fira+Code:wght@400;700&display=swap');
body {
    font-family: 'Fira Code', monospace;
    background: #0a0a0a; color: #00ff41;
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh; overflow: hidden;
}
body::after {
    content: ''; position: fixed; inset: 0; pointer-events: none;
    background: repeating-linear-gradient(0deg, rgba(0,255,65,.03) 0px, rgba(0,255,65,.03) 1px, transparent 1px, transparent 3px);
}
.card {
    text-align: left; padding: 40px 50px; max-width: 600px; width: 90%;
    border: 1px solid #00ff41; border-radius: 4px;
    box-shadow: 0 0 30px rgba(0,255,65,.08), inset 0 0 30px rgba(0,255,65,.03);
    animation: flicker .15s infinite alternate;
    position: relative;
}
@keyframes flicker { from{opacity:.97} to{opacity:1} }
.card::before { content: '┌─ ERROR ─────────────────────────────┐'; display: block; margin-bottom: 20px; color: #00cc33; font-size: 12px; }
.error-code {
    font-size: clamp(60px, 12vw, 100px); font-weight: 700; line-height: 1;
    color: #00ff41; margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(0,255,65,.5);
}
.error-title { font-size: 14px; color: #00cc33; margin-bottom: 8px; }
.error-title::before { content: '> '; }
.error-msg { font-size: 12px; color: #009926; line-height: 1.8; }
.error-msg::before { content: '# '; }
.divider { width: 100%; height: 1px; background: #00ff41; opacity: .3; margin: 16px 0; }
.cursor { display: inline-block; width: 8px; height: 16px; background: #00ff41; animation: blink 1s step-end infinite; margin-left: 4px; vertical-align: middle; }
@keyframes blink { 50%{opacity:0} }

/* ===== Theme 4 — Ocean Depth ===== */</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(69d0564143ffc)            <span class="cursor"></span>        </div>
    </div>
</body>
</html>