
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RingNet Status</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<style>
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #000000);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.container {
  text-align: center;
  max-width: 700px;
  padding: 40px;
  border-radius: 25px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8rem;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ff4d4d, #ff9a9e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
  line-height: 1.6;
}

.status {
  margin-top: 25px;
  font-weight: 600;
  color: #ff4d4d;
}

.footer {
  margin-top: 30px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
</style>

</head>
<body>

<div class="container">

  <div class="badge">🚧 Service Interruption</div>

  <h1>RingNet Asterisk User Portal Offline</h1>

  <p>
    The RingNet Asterisk service is currently unavailable.<br>
    Your phone may unregister or lose connectivity.<br>
    Self Service Access (asterisk.users.ringnet.org) is also currently unavailable.
  </p>

  <p class="status">
    We are actively working to restore service.
  </p>

  <p>
    If this issue persists, please check our Discord or contact support.
  </p>

  <div class="footer">
    © 2026 RingNet
  </div>

</div>

</body>
</html>