<!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=Inter:wght@200;400;800&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background: #fafaf9; color: #292524;
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh; overflow: hidden;
}
.card {
    text-align: center; padding: 80px 50px; max-width: 500px; width: 90%;
    animation: fadeIn 1.2s ease both;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.error-code {
    font-size: clamp(80px, 18vw, 160px); font-weight: 800; line-height: 1;
    color: #d6d3d1; margin-bottom: 16px;
    transition: color .4s ease;
}
.card:hover .error-code { color: #a8a29e; }
.error-title { font-size: 16px; font-weight: 200; color: #78716c; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 4px; }
.error-msg { font-size: 13px; color: #a8a29e; line-height: 1.8; }
.divider { width: 40px; height: 1px; background: #d6d3d1; margin: 24px auto; }

/* ===== Theme 7 — Cyber Glitch ===== */</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(69d08dc0b65ce)                    </div>
    </div>
</body>
</html>