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

<style>
body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", system-ui, sans-serif;

  background: linear-gradient(-45deg, #ff6ec4, #7873f5, #4ade80, #60a5fa);
  background-size: 400% 400%;
  animation: bg 12s ease infinite;
  color: white;
  text-align: center;
}

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

.card {
  padding: 40px;
  border-radius: 24px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 25px 70px rgba(0,0,0,0.25);
  max-width: 520px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  font-size: 12px;
  margin-bottom: 18px;
}

h1 {
  margin: 10px 0;
  font-size: 28px;
}

p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

.notice {
  margin-top: 15px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
}

a {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #5865F2, #7c3aed, #22c55e);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
</style>

</head>

<body>

<div class="card">
  <div class="badge">⚠ SYSTEM NOTICE</div>

  <h1>RingNet Admin Portal</h1>

  <p>
    WARNING: This application is for <b>RingNet Administrators only</b>.
  </p>

  <div class="notice">
    Unauthorized access is strictly prohibited and may be logged and monitored.
  </div>

  <p style="margin-top:15px;">
    If you reached this message in error, open a support ticket:
  </p>

  <a href="https://discordapp.com/channels/1459382913379471533/1495455249194815560" target="_blank">
    Open Discord Support
  </a>

</div>

</body>
</html>
