<!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=Nunito:wght@200;400;800&display=swap');
body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(170deg, #f0f9ff, #e0f2fe, #bae6fd, #e0f2fe);
    background-size: 400% 400%; animation: frost 20s ease infinite;
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh; color: #0c4a6e; overflow: hidden;
}
@keyframes frost { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
body::before {
    content: ''; position: fixed; top: -10%; right: -10%; width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(186,230,253,.4) 0%, transparent 70%);
    pointer-events: none; animation: shimmer 8s ease-in-out infinite;
}
@keyframes shimmer { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.15)} }
.card {
    text-align: center; padding: 60px 50px; max-width: 520px; width: 90%;
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.8);
    box-shadow: 0 20px 50px rgba(12,74,110,.08), 0 1px 3px rgba(12,74,110,.04);
    animation: dropIn .7s cubic-bezier(.22,1,.36,1) both;
}
@keyframes dropIn { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
.error-code {
    font-size: clamp(80px, 16vw, 150px); font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8, #7dd3fc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 12px;
}
.error-title { font-size: 17px; font-weight: 200; color: #075985; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 3px; }
.error-msg { font-size: 14px; color: #0369a1; opacity: .5; line-height: 1.6; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, #0ea5e9, #7dd3fc); border-radius: 2px; margin: 20px auto; }

/* ===== Theme 13 — Midnight Garden ===== */</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(69d2d5e75c990)                    </div>
    </div>
</body>
</html>