/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #323130;
    background: #f3f2f1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

.maintenance-content {
    background: #ffffff;
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid #edebe9;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Company Logo */
.logo-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.company-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Maintenance Icon */
.maintenance-icon-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.maintenance-icon {
    width: 80px;
    height: 80px;
    color: #0078d4;
}

/* Content */
.content {
    margin-bottom: 20px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #323130;
    margin-bottom: 20px;
    line-height: 1.2;
}

.main-message {
    font-size: 1.1rem;
    color: #605e5c;
    margin-bottom: 16px;
    line-height: 1.5;
}

.sub-message {
    font-size: 1rem;
    color: #605e5c;
    margin-bottom: 30px;
    line-height: 1.5;
}

.info-box {
    background: #f3f2f1;
    border: 1px solid #edebe9;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
    color: #323130;
}

.info-box p {
    font-size: 0.95rem;
    margin: 0;
}

.footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    color: #605e5c;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .maintenance-content {
        padding: 40px 30px;
        border-radius: 6px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .main-message {
        font-size: 1rem;
    }
    
    .sub-message {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .maintenance-content {
        padding: 30px 20px;
    }
    
    .main-title {
        font-size: 1.75rem;
    }
    
    .company-logo {
        width: 60px;
        height: 60px;
    }
    
    .maintenance-icon {
        width: 60px;
        height: 60px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.maintenance-content > * {
    animation: fadeInUp 0.6s ease-out forwards;
}

.logo-wrapper { animation-delay: 0.1s; }
.maintenance-icon-wrapper { animation-delay: 0.2s; }
.content { animation-delay: 0.3s; }

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background: #1f1f1f;
        color: #ffffff;
    }
    
    .maintenance-content {
        background: #2d2d30;
        border: 1px solid #3e3e42;
        color: #ffffff;
    }
    
    .main-title {
        color: #ffffff;
    }
    
    .main-message,
    .sub-message {
        color: #cccccc;
    }
    
    .info-box {
        background: #3e3e42;
        border: 1px solid #484848;
        color: #ffffff;
    }
    
    .footer {
        color: #cccccc;
    }
}
