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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    position: relative;
    z-index: 10;
    margin: 20px 0;
}

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

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

.icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
}

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

.icon-container i {
    font-size: 32px;
    color: white;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 20px;
    opacity: 0.9;
}

.message {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.progress-container {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ee5a52);
    border-radius: 4px;
    width: 79%;
    transition: width 0.3s ease;
}



.progress-text {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

.features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 100px;
}

.feature i {
    font-size: 24px;
    color: #ff6b6b;
    margin-bottom: 5px;
}

.feature span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.contact-info {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
}

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

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ee5a52;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        margin: 15px 0;
    }
    
    .maintenance-card {
        padding: 30px 20px;
        margin: 10px;
        border-radius: 15px;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .message {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .features {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        min-width: auto;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
        margin: 10px 0;
    }
    
    .maintenance-card {
        padding: 25px 15px;
        margin: 5px;
    }
    
    h1 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .message {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .icon-container i {
        font-size: 24px;
    }
    
    .progress-container {
        margin-bottom: 25px;
    }
    
    .progress-bar {
        height: 6px;
    }
    
    .progress-text {
        font-size: 0.8rem;
    }
    
    .features {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .feature i {
        font-size: 20px;
    }
    
    .feature span {
        font-size: 0.8rem;
    }
    
    .contact-info {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .contact-info p {
        font-size: 0.8rem;
    }
    
    .contact-link {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .maintenance-card {
        padding: 20px 12px;
    }
    
    h1 {
        font-size: 1.4rem;
    }
    
    h2 {
        font-size: 1.1rem;
    }
    
    .message {
        font-size: 0.9rem;
    }
    
    .icon-container {
        width: 50px;
        height: 50px;
    }
    
    .icon-container i {
        font-size: 20px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .social-link:hover {
        transform: none;
        box-shadow: none;
    }
    
    .contact-link:hover {
        color: #ff6b6b;
    }
    
    .maintenance-card:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .maintenance-card {
        border: 2px solid #333;
    }
    
    .progress-bar {
        border: 1px solid #333;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .progress-fill {
        animation: none;
    }
    
    .icon-container {
        animation: none;
    }
} 