<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <meta name="robots" content="noindex, follow">
  <title>404 – Page Not Found | Plays.org</title>
  <link rel="icon" type="image/png" href="/images/favicon.png">
  <style>
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
      background: #f8f8f8;
      color: #333;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 20px;
      text-align: center;
    }
    .logo { margin-bottom: 30px; }
    .logo img { max-width: 200px; height: auto; }
    h1 {
      font-size: 6rem;
      font-weight: 700;
      color: #1eb3b2;
      line-height: 1;
      margin-bottom: 10px;
    }
    h2 {
      font-size: 1.6rem;
      font-weight: 400;
      color: #555;
      margin-bottom: 20px;
    }
    p {
      font-size: 1rem;
      color: #777;
      max-width: 420px;
      line-height: 1.6;
      margin-bottom: 30px;
    }
    .btn {
      display: inline-block;
      padding: 12px 30px;
      background: linear-gradient(to bottom, rgb(114, 230, 195), rgb(0, 161, 172));
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 4px;
      margin: 5px;
      transition: opacity 0.2s;
    }
    .btn:hover { opacity: 0.85; }
    .btn-outline {
      background: none;
      border: 2px solid #1eb3b2;
      color: #1eb3b2;
    }
    .btn-outline:hover { background: #1eb3b2; color: #fff; }
    .divider {
      width: 60px;
      height: 3px;
      background: linear-gradient(to right, rgb(114, 230, 195), rgb(0, 161, 172));
      border: none;
      margin: 0 auto 30px;
    }
    @media (max-width: 480px) {
      h1 { font-size: 4rem; }
      h2 { font-size: 1.2rem; }
    }
  </style>
</head>
<body>
  <div class="logo">
    <a href="/"><img src="/images/playsorg-logo.png" alt="Plays.org"></a>
  </div>
  <h1>404</h1>
  <hr class="divider">
  <h2>Page Not Found</h2>
  <p>The page you're looking for doesn't exist. It may have been moved, deleted, or you may have mistyped the address.</p>
  <div>
    <a href="/" class="btn">🏠 Go Home</a>
    <a href="/games/" class="btn btn-outline">🕹️ Browse Games</a>
  </div>
</body>
</html>
