<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website Temporarily Unavailable</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: 650px;
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;
}
.connection-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #f39c12, #e67e22);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
animation: pulse 2s infinite;
box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}
@keyframes pulse {
0% { transform: scale(1); box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3); }
50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(243, 156, 18, 0.4); }
100% { transform: scale(1); box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3); }
}
.connection-icon::before {
content: '⚠';
font-size: 40px;
}
.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;
}
.issue-box {
background: linear-gradient(135deg, #f39c12, #e67e22);
color: white;
padding: 25px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 10px 25px rgba(243, 156, 18, 0.2);
text-align: left;
}
.issue-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 15px;
text-align: center;
}
.issue-description {
font-size: 15px;
line-height: 1.7;
margin-bottom: 15px;
}
.urgent-note {
background: rgba(255, 255, 255, 0.2);
padding: 15px;
border-radius: 8px;
color: #000;
font-weight: 600;
font-size: 14px;
text-align: center;
border-left: 4px solid rgba(255, 255, 255, 0.5);
}
.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;
}
.visitor-message {
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
padding: 20px;
border-radius: 12px;
margin-bottom: 25px;
border-left: 4px solid #6c757d;
text-align: left;
}
.visitor-message p {
color: #495057;
font-size: 15px;
margin: 0;
line-height: 1.6;
}
display: inline-flex;
align-items: center;
gap: 8px;
background: #fff3cd;
color: #856404;
padding: 10px 20px;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
margin-bottom: 25px;
border: 1px solid #ffeaa7;
}
.status-dot {
width: 8px;
height: 8px;
background: #f39c12;
border-radius: 50%;
animation: blink 1.5s infinite;
}
@keyframes blink {
0%, 50% { opacity: 1; }
51%, 100% { opacity: 0.3; }
}
.action-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 14px 35px;
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, #e74c3c, #c0392b);
color: white;
box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(231, 76, 60, 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);
}
.support-info {
background: linear-gradient(135deg, #e8f5e8, #d4edda);
padding: 25px;
border-radius: 15px;
margin-top: 30px;
border-left: 4px solid #28a745;
}
.support-title {
font-size: 18px;
font-weight: 700;
color: #155724;
margin-bottom: 10px;
}
.support-text {
color: #155724;
font-size: 15px;
line-height: 1.6;
}
.footer {
margin-top: 40px;
padding-top: 30px;
border-top: 1px solid #e9ecef;
color: #6c757d;
font-size: 14px;
}
.visitor-message {
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
padding: 20px;
border-radius: 12px;
margin-bottom: 25px;
border-left: 4px solid #6c757d;
text-align: left;
}
.visitor-message p {
color: #495057;
font-size: 15px;
margin: 0;
line-height: 1.6;
}
.footer-links {
margin-top: 15px;
}
.footer-links a {
color: #667eea;
text-decoration: none;
margin: 0 15px;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #764ba2;
}
@media (max-width: 768px) {
.container {
padding: 30px 20px;
}
.title {
font-size: 28px;
}
.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="connection-icon"></div>
</div>
<div class="content">
<h1 class="title">Website Temporarily Unavailable</h1>
<p class="subtitle">This website is currently experiencing connectivity issues</p>
<div class="issue-box">
<div class="issue-description">
<strong>If you are the owner of this website:</strong> Your site is currently unreachable due to a hosting connectivity issue that requires immediate attention. This may be impacting your visitors, business operations, and search engine visibility.
</div>
<div class="urgent-note">
Please contact your hosting provider immediately to resolve this issue
</div>
</div>
<div class="info-grid">
<div class="info-item">
<div class="info-label">Website Domain</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>