:root {
    --primary-color: #0055FF;
    --primary-gradient: linear-gradient(135deg, #0055FF 0%, #5500FF 100%);
    --text-color: #333333;
    --light-bg: #F5F7FA;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 85, 255, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.maintenance-wrapper {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
}

.logo {
    max-width: 200px;
    margin-bottom: 15px;
    animation: fadeIn 1s ease-out;
}

.title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: slideUp 0.8s ease-out;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #666;
    max-width: 600px;
    animation: slideUp 1s ease-out;
}

.progress-container {
    width: 100%;
    max-width: 500px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 5px;
    box-shadow: var(--shadow);
    margin: 10px 0;
    animation: slideUp 1.2s ease-out;
}

.progress-bar {
    height: 10px;
    border-radius: 5px;
    background: var(--primary-gradient);
    width: 70%;
    animation: progressAnimation 2s ease-out;
}

.contact-info {
    margin-top: 15px;
    font-size: 1rem;
    animation: fadeIn 1.5s ease-out;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    animation: fadeIn 1.8s ease-out;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 85, 255, 0.15);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
}

.footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressAnimation {
    from { width: 0; }
    to { width: 70%; }
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .maintenance-wrapper {
        padding: 40px 15px;
        gap: 30px;
    }
}
