/* Dating pilot — neutral Anubis challenge styling.
   Hides the default mascot/title/footer branding and shows a small notice.
   The proof-of-work JS still runs and redirects on success; this only changes appearance. */
html, body {
  background: #ffffff !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 100% !important;
  display: block !important;
}
#title, #image, #status, #progress, details, noscript, footer, main img {
  display: none !important;
}
body::before {
  content: "You will be redirected soon";
  position: fixed;
  top: 8px;
  left: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 12px;
  color: #333333;
}
