* {
    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;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    position: relative;
}

.maintenance-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.maintenance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

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

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.logo {
    max-width: 180px;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.icon-container {
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out 0.5s both;
}

.maintenance-icon {
    display: inline-block;
    color: #667eea;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
    animation: fadeIn 1s ease-out 0.7s both;
}

.subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 32px;
    font-weight: 400;
    animation: fadeIn 1s ease-out 0.9s both;
}

.message {
    background: #f7fafc;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    border-left: 4px solid #667eea;
    animation: fadeIn 1s ease-out 1.1s both;
}

.message p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    animation: fadeIn 1s ease-out 1.3s both;
}

/* Green: #48bb78 | Red: #E54343*/
.status-dot {
    width: 12px;
    height: 12px;
    background: #E54343;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.status-text {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

.estimated-time {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    animation: fadeIn 1s ease-out 1.5s both;
}

.estimated-time p {
    font-size: 1rem;
    margin: 0;
}

.estimated-time strong {
    font-weight: 600;
}

.contact-info {
    animation: fadeIn 1s ease-out 1.7s both;
}

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

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}

.contact-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.footer {
    text-align: center;
    margin-top: 32px;
    animation: fadeIn 1s ease-out 1.9s both;
}

.footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 16px;
    }
    
    .maintenance-card {
        padding: 40px 24px;
        border-radius: 20px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .logo {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .maintenance-card {
        padding: 32px 20px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .message {
        padding: 20px;
    }
    
    .estimated-time {
        padding: 14px 20px;
    }
}

