/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

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

.icon {
    color: #667eea;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.icon svg {
    animation: float 3s ease-in-out infinite;
}

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

.title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.message {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.status {
    margin-bottom: 30px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(102, 126, 234, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.pulse {
    width: 12px;
    height: 12px;
    background: #667eea;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

.status-indicator span {
    font-weight: 500;
    color: #667eea;
    font-size: 0.95rem;
}

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

.contact-info p {
    color: #718096;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.footer p {
    color: #a0aec0;
    font-size: 0.85rem;
}

/* Responsive design */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .maintenance-card {
        padding: 30px 20px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .message {
        font-size: 1rem;
    }
    
    .icon svg {
        width: 60px;
        height: 60px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .maintenance-card {
        background: rgba(26, 32, 44, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .title {
        color: #f7fafc;
    }
    
    .message {
        color: #e2e8f0;
    }
    
    .contact-info p {
        color: #a0aec0;
    }
    
    .footer {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer p {
        color: #718096;
    }
}