<!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=Playfair+Display:wght@400;700;900&display=swap');
body {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(150deg, #022c22, #064e3b, #065f46, #022c22);
    background-size: 400% 400%; animation: garden 18s ease infinite;
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh; color: #d1fae5; overflow: hidden;
}
@keyframes garden { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
body::before {
    content: ''; position: fixed; top: 20%; left: 10%; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(52,211,153,.1) 0%, transparent 70%);
    pointer-events: none; animation: leafGlow 6s ease-in-out infinite;
}
@keyframes leafGlow { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:.8;transform:scale(1.2)} }
body::after {
    content: ''; position: fixed; bottom: 10%; right: 15%; width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(16,185,129,.08) 0%, transparent 70%);
    pointer-events: none; animation: leafGlow 8s ease-in-out infinite reverse;
}
.card {
    position: relative; z-index: 1; text-align: center; padding: 60px 50px; max-width: 520px; width: 90%;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(12px); border-radius: 20px;
    border: 1px solid rgba(52,211,153,.15);
    box-shadow: 0 30px 60px rgba(0,0,0,.4);
    animation: fadeUp .8s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.error-code {
    font-size: clamp(80px, 15vw, 140px); font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, #34d399, #10b981, #059669);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 12px;
}
.error-title { font-size: 18px; font-weight: 400; color: rgba(209,250,229,.6); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 3px; font-style: italic; }
.error-msg { font-size: 14px; color: rgba(209,250,229,.35); line-height: 1.6; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, #34d399, #059669); border-radius: 2px; margin: 20px auto; }

/* ===== Theme 14 — Retro Amber ===== */</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(69dd1ed1ce07e)                    </div>
    </div>
</body>
</html>