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

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

.maintenance-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.content {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    animation: bounce 2s ease-in-out infinite;
}

h1 {
    font-size: 2.5em;
    color: #667eea;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

.message {
    background: #f5f5f5;
    border-left: 4px solid #667eea;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 1em;
    color: #555;
}

.message p {
    line-height: 1.6;
}

.features {
    text-align: left;
    margin-bottom: 40px;
}

.features h2 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.features ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.features li {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.9em;
}

.features li:hover {
    border-color: #667eea;
    background: #f0f4ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.features .icon {
    font-size: 1.8em;
    margin-bottom: 8px;
}

.features strong {
    color: #333;
    margin-bottom: 5px;
}

.features a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.features a:hover {
    color: #764ba2;
}

@media (max-width: 768px) {
    .features ul {
        grid-template-columns: 1fr;
    }
}

.contact {
    background: #667eea;
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.contact p {
    margin-bottom: 12px;
    font-size: 1em;
}

.email-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    border-bottom: 2px solid white;
    transition: all 0.3s ease;
}

.email-link:hover {
    opacity: 0.8;
}

.social {
    margin-top: 25px;
}

.social p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95em;
}

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

.social-links a {
    color: #667eea;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #667eea;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9em;
}

.social-links a:hover {
    background: #667eea;
    color: white;
}

.animation {
    position: absolute;
    right: -100px;
    bottom: -100px;
    opacity: 0.1;
    z-index: 1;
}

.spinner {
    width: 200px;
    height: 200px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid white;
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 600px) {
    .content {
        padding: 40px 25px;
    }

    h1 {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 1em;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .features ul {
        grid-template-columns: 1fr;
    }
}
