<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Tritan Internet</title>
  <style>
    :root { --bg: #09090b; --fg: #e4e4e7; --accent: #8b5cf6; --muted: #52525b; }
    body { margin: 0; background: var(--bg); color: var(--fg); font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; padding: 20px; }
    .wrapper { max-width: 500px; width: 100%; text-align: center; }
    .status-line { color: var(--accent); font-size: 0.85rem; margin-bottom: 2rem; display: flex; align-items: center; justify-content: center; gap: 10px; }
    h1 { font-size: 1.25rem; font-weight: normal; margin-bottom: 2rem; letter-spacing: -0.05em; }
    pre { color: var(--accent); font-size: 0.75rem; margin: 3rem 0; line-height: 1.1; user-select: none; }
    .message { color: var(--fg); margin-bottom: 2rem; line-height: 1.6; }
    button { background: transparent; color: var(--fg); border: 1px solid var(--muted); padding: 0.5rem 1rem; font-family: inherit; cursor: pointer; transition: all 0.2s; }
    button:hover { border-color: var(--accent); color: var(--accent); }
  </style>
</head>
<body>
  <div class="wrapper">
    <h1>~~Tritan Internet~~</h1>
    <div class="status-line">Service Temporarily Unavailable</div>
    <div class="message">The penguins are waddling at full capacity, we are currently pushing the latest build to production.</div>
    <pre>
       .--.
      |o_o |
      |:_/ |
     //   \ \
    (|     | )
    /'\_   _/`\
    \___)=(___/

    im working so hard :(
    </pre>
    <button onclick="location.href='https://tritan.gg'">[ REFRESH ]</button>
  </div>
</body>
</html>