* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #333;
}

.header {
background-color: #10767a;
width: 100%;
padding: 15px 0;
position: fixed;
top: 0;
left: 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
z-index: 1000;
}

.header-content {
display: flex;
align-items: center;
justify-content: center;
padding: 0 20px;
max-width: 1200px;
margin: 0 auto;
}

.logo {
height: 40px;
width: auto;
border-radius: 4px;
}

.site-title {
color: white;
font-size: 20px;
font-weight: 400;
}

.maintenance-container {
text-align: center;
background: white;
padding: 60px 40px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
max-width: 600px;
margin: 100px 20px 20px;
position: relative;
overflow: hidden;
}

.maintenance-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #10767a, #d63031);
}

.maintenance-icon {
font-size: 64px;
margin-bottom: 30px;
color: #10767a;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}

h1 {
font-size: 32px;
color: #2d3748;
margin-bottom: 20px;
font-weight: 600;
}

.subtitle {
font-size: 18px;
color: #4a5568;
margin-bottom: 30px;
line-height: 1.6;
}

.info-box {
background-color: #f7fafc;
border-left: 4px solid #10767a;
padding: 20px;
margin: 30px 0;
border-radius: 0 8px 8px 0;
}

.info-box p {
margin: 0;
color: #2d3748;
line-height: 1.5;
}

.status-indicator {
display: inline-flex;
align-items: center;
background-color: #fff3cd;
color: #856404;
padding: 10px 20px;
border-radius: 25px;
font-size: 14px;
font-weight: 500;
margin-top: 20px;
border: 1px solid #ffeaa7;
}

.status-dot {
width: 8px;
height: 8px;
background-color: #f39c12;
border-radius: 50%;
margin-right: 8px;
animation: blink 1.5s infinite;
}

@keyframes blink {
0%, 50% { opacity: 1; }
51%, 100% { opacity: 0.3; }
}

.footer {
margin-top: 40px;
color: #718096;
font-size: 14px;
}

@media (max-width: 768px) {
.maintenance-container {
margin: 80px 10px 10px;
padding: 40px 20px;
}

h1 {
font-size: 24px;
}

.subtitle {
font-size: 16px;
}

.header-content {
padding: 0 15px;
}
}
