/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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;
}

/* Main Container */
.maintenance-container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Content Box */
.content {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    backdrop-filter: blur(10px);
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 0 auto 30px;
    border-radius: 2px;
}

p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 400;
}

/* Loading Animation */
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #667eea;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 60%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    30% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .content {
        padding: 40px 30px;
    }
    
    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .content {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    .maintenance-container {
        width: 95%;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* High Resolution Displays */
@media (min-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    p {
        font-size: 1.25rem;
    }
}