<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Suspended!</title>
<style>
    /* Fullscreen no scroll */
    html, body {
        height: 100%;
        margin: 0;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #0f172a; /* dark navy */
        font-family: Arial, sans-serif;
        color: white;
    }

    .container {
        text-align: center;
        max-width: 500px;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #f87171; /* red warning */
    }

    .reason-box {
        background: #1e293b;
        border: 1px solid #334155;
        border-radius: 10px;
        padding: 20px;
        margin-top: 20px;
        text-align: left;
        box-shadow: 0 0 15px rgba(0,0,0,0.4);
    }

    .reason-box p {
        margin: 0 0 10px 0;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .reason-box ul {
        margin: 0;
        padding-left: 20px;
    }

    .reason-box li {
        margin-bottom: 8px;
    }

    .contact-btn {
        display: inline-block;
        margin-top: 25px;
        padding: 12px 25px;
        background: #25D366; /* WhatsApp green */
        color: white;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1rem;
        transition: background 0.3s;
    }

    .contact-btn:hover {
        background: #1da851;
    }
</style>
</head>
<body>
<div class="container">
    <img width="100px" src="https://arenhost.id/ArenHost.png" alt="ArenHost Logo">
    <h1>Suspended !!!</h1>
    <p>Your Site Has Been Suspended, Contact Your Hosting Provider for more info</p>

    <div class="reason-box">
        <p><strong>The Reason Could Be :</strong></p>
        <ul>
            <li>You have not renewed your hosting service</li>
            <li>Your site may contain abusive content</li>
            <br>
            * Please note that we will terminate any services that expire more than 28 days. You can still do renewall for your service now.
        </ul>
    </div>

   
</div>

<script>
    // Ambil domain dari hostname
    const domain = window.location.hostname;
    const message = encodeURIComponent(`Kenapa Website saya disuspend?, Domain saya ${domain}`);
    
</script>
</body>
</html>
