<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Account Suspended</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #0c0f25 0%, #121436 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: #333;
}
.container {
max-width: 600px;
width: 90%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
padding: 40px;
text-align: center;
position: relative;
overflow: hidden;
}
.container::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
animation: shimmer 3s infinite;
}
@keyframes shimmer {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.icon-container {
margin-bottom: 30px;
position: relative;
z-index: 1;
}
.warning-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #ff6b6b, #ee5a24);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
animation: pulse 2s infinite;
box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}
@keyframes pulse {
0% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3); }
50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4); }
100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3); }
}
.warning-icon::before {
content: '⚠';
font-size: 40px;
color: white;
}
.content {
position: relative;
z-index: 1;
}
.title {
font-size: 32px;
font-weight: 700;
color: #2c3e50;
margin-bottom: 15px;
background: linear-gradient(135deg, #667eea, #764ba2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.subtitle {
font-size: 18px;
color: #7f8c8d;
margin-bottom: 30px;
line-height: 1.6;
}
.reason-box {
background: linear-gradient(135deg, #ff6b6b, #ee5a24);
color: white;
padding: 20px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}
.reason-title {
font-size: 16px;
font-weight: 600;
margin-bottom: 10px;
}
.reason-list {
text-align: left;
font-size: 14px;
line-height: 1.8;
}
.reason-list li {
margin-bottom: 5px;
}
.info-grid {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
margin-bottom: 30px;
}
.info-item {
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
padding: 20px;
border-radius: 12px;
border-left: 4px solid #667eea;
}
.info-label {
font-size: 12px;
color: #6c757d;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 5px;
}
.info-value {
font-size: 16px;
font-weight: 600;
color: #2c3e50;
}
.action-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 12px 30px;
border: none;
border-radius: 25px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
position: relative;
overflow: hidden;
}
.btn-primary {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.btn-secondary {
background: linear-gradient(135deg, #74b9ff, #0984e3);
color: white;
box-shadow: 0 5px 15px rgba(116, 185, 255, 0.3);
}
.btn-secondary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
}
.footer {
margin-top: 40px;
padding-top: 30px;
border-top: 1px solid #e9ecef;
color: #6c757d;
font-size: 14px;
}
.footer-links {
margin-top: 15px;
}
.footer-links a {
color: #667eea;
text-decoration: none;
margin: 0 10px;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #764ba2;
}
@media (max-width: 768px) {
.container {
padding: 30px 20px;
}
.title {
font-size: 28px;
}
.info-grid {
grid-template-columns: 1fr;
}
.action-buttons {
flex-direction: column;
align-items: center;
}
.btn {
width: 100%;
max-width: 300px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="icon-container">
<div class="warning-icon"></div>
</div>
<div class="content">
<h1 class="title">Account Suspended!</h1>
<p class="subtitle">Your hosting account has been temporarily suspended</p>
<div class="reason-box">
<div class="reason-title">Common Reasons for Suspension:</div>
<ul class="reason-list">
<li>Payment overdue or failed billing</li>
<li>Violation of Terms of Service</li>
<li>Excessive resource usage</li>
<li>Security concerns or suspicious activity</li>
<li>DMCA or copyright infringement</li>
</ul>
</div>
<div class="info-grid">
<div class="info-item">
<div class="info-label">Domain name</div>
<div class="info-value" id="url">...</div>
</div>
</div>
</div>
<div class="footer">
<p>Need immediate assistance? Contact the hosting administrator</p>
</div>
</div>
<script>
document.getElementById("url").textContent = window.location.hostname;
</script>
</body>
</html>