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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #273127 0%, #1a241a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.maintenance-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 500px;
}

.icon-container {
    margin-bottom: 30px;
}

.maintenance-icon {
    width: 80px;
    height: 80px;
    color: #273127;
    stroke-width: 1.5;
    animation: pulse 2s ease-in-out infinite;
}

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #273127, #1a241a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-message {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    font-weight: 400;
}

.details {
    background: #f7fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #273127;
}

.details p {
    margin-bottom: 8px;
    color: #2d3748;
}

.details p:last-child {
    margin-bottom: 0;
}

.details strong {
    color: #273127;
    font-weight: 600;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #4a5568;
    font-weight: 500;
}

.contact-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #273127;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-link:hover {
    background: #1a241a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 49, 39, 0.3);
}

.contact-link svg {
    width: 18px;
    height: 18px;
}

.progress-container {
    margin-top: 20px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #273127, #1a241a);
    border-radius: 3px;
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 0%;
    }
}

.progress-text {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

footer p {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .maintenance-card {
        padding: 30px 25px;
        margin: 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .main-message {
        font-size: 1rem;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-link {
        width: 220px;
        justify-content: center;
    }
    
    .maintenance-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .maintenance-card {
        padding: 25px 20px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .details {
        padding: 15px;
    }
}
