<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Lost in the Study</title>
  <link href="https://fonts.googleapis.com/css2?family=EB+Garamond&family=Special+Elite&display=swap" rel="stylesheet">
  <style>
    body {
      background-color: #1c1b18;
      background-image: url('https://www.transparenttextures.com/patterns/old-moon.png');
      color: #eae6df;
      font-family: 'EB Garamond', serif;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .not-found-container {
      background-color: rgba(35, 33, 30, 0.95);
      padding: 3rem;
      text-align: center;
      max-width: 600px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
      border: 1px solid #3e3b34;
      position: relative;
      z-index: 1;
    }

    h1 {
      font-size: 4rem;
      font-family: 'Special Elite', monospace;
      margin-bottom: 1rem;
      color: #c9b79c;
    }

    p {
      font-size: 1.3rem;
      color: #d4ccbe;
    }

    blockquote {
      margin: 2rem 0;
      font-style: italic;
      border-left: 4px solid #c0b283;
      padding-left: 1rem;
      color: #bfb6a4;
    }

    a {
      color: #e0d1b2;
      text-decoration: none;
      font-weight: bold;
      font-family: 'Special Elite', monospace;
      transition: color 0.2s ease;
    }

    a:hover {
      color: #f3e4c3;
      text-decoration: underline;
    }

    /* === Corner Stickers === */
    .sticker {
      position: absolute;
      width: 100px;
      opacity: 0.8;
      z-index: 0;
    }

    .top-left {
      top: 0;
      left: 0;
      transform: rotate(-5deg);
    }

    .top-right {
      top: 0;
      right: 0;
      transform: rotate(6deg);
    }

    .bottom-left {
      bottom: 0;
      left: 0;
      transform: rotate(3deg);
    }

    .bottom-right {
      bottom: 0;
      right: 0;
      transform: rotate(-4deg);
    }
  </style>
</head>
<body>

  <img src="https://i.imgur.com/ZgTKYFG.png" alt="vintage candle sticker" class="sticker top-left" />
  <img src="https://i.imgur.com/XC1b8Tx.png" alt="wax seal sticker" class="sticker top-right" />
  <img src="https://i.imgur.com/dLP8FQw.png" alt="vintage letter sticker" class="sticker bottom-left" />
  <img src="https://i.imgur.com/2yyv1ev.png" alt="book pile sticker" class="sticker bottom-right" />

  <div class="not-found-container">
    <h1>404</h1>
    <p>You’re lost in the study…</p>
    <blockquote>"This page is missing, like a torn chapter from a forgotten book."</blockquote>
    <p><a href="index.html">Return to the light of the library 🕯️</a></p>
  </div>
</body>
</html>
