<!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=Lora:wght@400;600;700&display=swap');
body {
    font-family: 'Lora', serif;
    background: #f5f0eb; color: #3c3227;
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh; overflow: hidden;
}
.card {
    text-align: center; padding: 60px 50px; max-width: 500px; width: 90%;
    background: #fffdf9;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.06), 0 20px 48px rgba(0,0,0,.04);
    animation: paperLift .8s ease both;
    position: relative;
}
@keyframes paperLift { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.card::after {
    content: ''; position: absolute; bottom: -4px; left: 10%; right: 10%; height: 4px;
    background: rgba(0,0,0,.04); border-radius: 50%; filter: blur(2px);
}
.error-code {
    font-size: clamp(80px, 16vw, 140px); font-weight: 700; line-height: 1;
    color: #d4c5b2; margin-bottom: 12px;
}
.error-title { font-size: 17px; font-weight: 400; color: #8b7355; margin-bottom: 8px; letter-spacing: 1px; }
.error-msg { font-size: 14px; color: #a89279; line-height: 1.8; font-style: italic; }
.divider { width: 40px; height: 2px; background: #d4c5b2; margin: 20px auto; }

/* ===== Theme 17 — Synthwave ===== */</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(69dad265d6eea)                    </div>
    </div>
</body>
</html>