/* Maintenance Page Styling */

.maintenance-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/images/maintenance.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.maintenance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.maintenance-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    width: 90%;
    padding: 20px;
}

.maintenance-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.maintenance-icon {
    font-size: 4rem;
    color: #0d6efd;
    margin-bottom: 1.5rem;
    animation: rotate 3s linear infinite;
}

.maintenance-icon i {
    display: inline-block;
}

.maintenance-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
}

.maintenance-message {
    font-size: 1.125rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.maintenance-time {
    background: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.maintenance-time i {
    color: #0d6efd;
    margin-right: 0.5rem;
}

.maintenance-time strong {
    color: #212529;
    margin-right: 0.5rem;
}

.maintenance-footer {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.maintenance-refresh {
    margin-top: 1.5rem;
    padding: 0.75rem;
    background: #e7f3ff;
    border-radius: 8px;
    color: #0d6efd;
}

.maintenance-refresh i {
    margin-right: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .maintenance-card {
        padding: 2rem 1.5rem;
    }
    
    .maintenance-title {
        font-size: 1.5rem;
    }
    
    .maintenance-message {
        font-size: 1rem;
    }
    
    .maintenance-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .maintenance-card {
        padding: 1.5rem 1rem;
    }
    
    .maintenance-title {
        font-size: 1.25rem;
    }
}
