<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0">
<meta http-equiv="refresh" content="10;url=https://www.google.com/">
<title>Endpoint Unavailable</title>
<style>
  * { box-sizing: border-box; }
  body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #050505;
    background-image: radial-gradient(circle at 50% 0%, #171720 0%, #050505 80%);
    font-family: system-ui, -apple-system, sans-serif;
    color: #e4e4e7;
    text-align: center;
    overflow: hidden;
    position: relative;
    padding: 1rem;
  }
  .ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
  }
  .glow-top { width: 50vw; height: 50vw; background: #2563eb; top: -25vw; left: -10vw; }
  .glow-bottom { width: 40vw; height: 40vw; background: #4f46e5; bottom: -15vw; right: -10vw; }
  .card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    background: rgba(15, 15, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .icon { 
    margin-bottom: 1.5rem;
    opacity: 0.7;
  }
  h1 { 
    font-size: 1.25rem; 
    color: #ffffff; 
    margin: 0 0 1rem; 
    font-weight: 500; 
    letter-spacing: 0.02em;
  }
  p { 
    color: #a1a1aa; 
    line-height: 1.6; 
    margin: 0; 
    font-size: 0.95rem; 
  }
  .redirect-container {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .redirect-text { 
    font-size: 0.8rem; 
    color: #52525b; 
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
  }
  .loader {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255,255,255,0.05);
    border-top-color: #52525b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  /* Mobile-specific adjustments */
  @media (max-width: 480px) {
    body { 
      padding: 1.25rem; 
    }
    .card { 
      padding: 2.25rem 1.5rem; 
    }
    h1 { 
      font-size: 1.15rem; 
    }
    p { 
      font-size: 0.9rem; 
    }
    .ambient-glow { 
      filter: blur(60px); 
    }
    .glow-top { 
      width: 80vw; height: 80vw; top: -40vw; left: -20vw;
    }
    .glow-bottom { 
      width: 70vw; height: 70vw; bottom: -35vw; right: -20vw;
    }
  }
</style>
</head>
<body>
  <div class="ambient-glow glow-top"></div>
  <div class="ambient-glow glow-bottom"></div>

  <div class="card">
    <svg class="icon" width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="#a1a1aa" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
      <rect x="4" y="4" width="16" height="16" rx="2" ry="2"></rect>
      <rect x="9" y="9" width="6" height="6"></rect>
      <line x1="9" y1="1" x2="9" y2="4"></line>
      <line x1="15" y1="1" x2="15" y2="4"></line>
      <line x1="9" y1="20" x2="9" y2="23"></line>
      <line x1="15" y1="20" x2="15" y2="23"></line>
      <line x1="20" y1="9" x2="23" y2="9"></line>
      <line x1="20" y1="14" x2="23" y2="14"></line>
      <line x1="1" y1="9" x2="4" y2="9"></line>
      <line x1="1" y1="14" x2="4" y2="14"></line>
    </svg>
    <h1>Endpoint Unavailable</h1>
    <p>The requested endpoint is not available or does not accept direct browser access.</p>
    
    <div class="redirect-container">
      <div class="loader"></div>
      <p class="redirect-text">Redirecting in <span id="countdown">10</span>s</p>
    </div>
  </div>

  <script>
    var s = 10;
    var el = document.getElementById("countdown");
    var t = setInterval(function() {
      s -= 1;
      if (s <= 0) { s = 0; clearInterval(t); }
      el.textContent = s;
    }, 1000);
  </script>
</body>
</html>
