<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Site Maintenance</title>
<style>
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
height: 100vh;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
}
.maintenance-container {
text-align: center;
padding: 2rem;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 20px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
max-width: 600px;
margin: 20px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: #ffffff;
}
.icon {
font-size: 4rem;
margin-bottom: 1.5rem;
}
p {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 1.5rem;
color: rgba(255, 255, 255, 0.9);
}
.timer {
font-size: 1.2rem;
font-weight: bold;
margin: 2rem 0;
color: #ffd700;
}
.contact {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.8);
}
.contact a {
color: #ffd700;
text-decoration: none;
transition: color 0.3s ease;
}
.contact a:hover {
color: #ffffff;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.loading {
width: 50px;
height: 50px;
border: 5px solid #f3f3f3;
border-top: 5px solid #ffd700;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 20px auto;
}
</style>
</head>
<body>
<div class="maintenance-container">
<div class="icon"></div>
<h1>Site Under Maintenance</h1>
<div class="loading"></div>
<p>We're currently performing scheduled maintenance to improve our services. We'll be back online shortly.</p>
<p>Thank you for your patience and understanding.</p>
</div>
</body>
</html>