<!DOCTYPE html><html lang="id"><head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>404 Not Found</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif; text-align: center; padding: 50px 20px; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #0f0e1a; color: #eaeef2; } .container { max-width: 700px; width: 100%; padding: 40px 30px; background: #18172b; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,215,0,0.06); } .status-code { font-size: 96px; font-weight: 800; line-height: 1; margin: 0 0 8px 0; background: linear-gradient(145deg,#f7b731,#f5a623); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -2px; text-shadow: 0 0 40px rgba(245,166,35,0.15); } .status-label { font-size: 28px; font-weight: 600; color: #f5c542; letter-spacing: 1px; margin-bottom: 12px; text-transform: uppercase; } .divider { width: 70px; height: 3px; background: linear-gradient(90deg,#f5a623,#f7d44a); margin: 16px auto 20px auto; border-radius: 4px; } .message { font-size: 18px; color: #bcc3cd; margin-bottom: 28px; line-height: 1.6; } .message strong { color: #f5c542; font-weight: 500; } .info-card { background: #121124; border-radius: 16px; padding: 18px 24px; margin: 10px 0 16px 0; border-left: 4px solid #f5a623; text-align: left; box-shadow: inset 0 0 0 1px rgba(255,215,0,0.06); } .info-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px; padding: 6px 0; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.04); } .info-row:last-child { border-bottom: none; } .info-label { color: #8892a8; font-weight: 400; min-width: 100px; letter-spacing: 0.3px; } .info-value { color: #eaeef2; font-weight: 500; word-break: break-all; font-family: 'SF Mono','Fira Code',monospace; font-size: 14px; background: #1e1d33; padding: 2px 12px; border-radius: 6px; display: inline-block; } .info-value.unknown { color: #6a7a8e; font-style: italic; } .action-suggestion { margin-top: 28px; padding: 16px 20px; background: #1e1d33; border-radius: 14px; font-size: 14px; color: #9aa8b9; border: 1px solid rgba(245,166,35,0.10); } .action-suggestion a { color: #f5c542; text-decoration: none; font-weight: 500; border-bottom: 1px dotted rgba(245,197,66,0.3); transition: border-color 0.2s; } .action-suggestion a:hover { border-bottom-color: #f5c542; } .badge { display: inline-block; background: rgba(245,166,35,0.12); color: #f5c542; font-size: 12px; font-weight: 600; padding: 2px 14px; border-radius: 20px; letter-spacing: 0.5px; margin-top: 6px; } @media (max-width: 500px) { .container { padding: 30px 18px; } .status-code { font-size: 68px; } .status-label { font-size: 22px; } .info-row { flex-direction: column; align-items: flex-start; gap: 2px; padding: 8px 0; } .info-label { min-width: auto; } .info-value { font-size: 13px; padding: 2px 10px; } } </style></head><body> <div class="container"> <div class="status-code">404</div> <div class="status-label">Not Found</div> <div class="divider"></div> <p class="message"> Halaman yang Anda cari <strong>tidak ditemukan</strong>. <br />Mungkin URL telah berubah atau sumber daya telah dipindahkan. </p> <div class="info-card"> <div class="info-row"> <span class="info-label">🌐 Alamat IP</span> <span class="info-value">3.237.223.94</span> </div> <div class="info-row"> <span class="info-label">🖥️ User‑Agent</span> <span class="info-value">FeedValidator/1.3</span> </div> <div class="info-row"> <span class="info-label">📅 Waktu</span> <span class="info-value">Thursday, 13-Aug-2026 22:17:46 WIB</span> </div> </div> <div class="action-suggestion"> 📄 Periksa kembali URL yang Anda masukkan. <a href="/">Kembali ke beranda</a> · <a href="mailto:support@bosseo.id">Laporkan tautan rusak</a> <br /><span class="badge">404 · Not Found</span> </div> <div style="margin-top: 18px; font-size: 12px; color: #4f5b6b;"> Referer: - </div> </div></body></html>