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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #d32f2f 0%, #4caf50 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 800px;
}

.logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo i {
    font-size: 3rem;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.logo h1 {
    color: #4caf50;
    font-size: 2rem;
    font-weight: 600;
}

.message {
    text-align: center;
    margin-bottom: 2rem;
}

.message h2 {
    color: #d32f2f;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.message p {
    color: #333;
    line-height: 1.6;
}

.status-bar {
    height: 5px;
    background: #e0e0e0;
    border-radius: 2.5px;
    margin: 2rem 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #d32f2f;
    width: 0%;
    animation: progress 3s linear infinite;
}

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

.social-links {
    text-align: center;
    margin-bottom: 2rem;
}

.social-links h3 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

.links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    color: #d32f2f;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #4caf50;
}

.contact-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contact-info h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #333;
    margin: 0.5rem 0;
}

@media (max-width: 600px) {
    .maintenance-container {
        padding: 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .message h2 {
        font-size: 1.5rem;
    }
    
    .social-link {
        font-size: 1.2rem;
    }
}
