/* 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-color: rgb(30, 49, 58);
    color: white;
    min-height: 100dvw;
    overflow: hidden;
}

.maintenance-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

/* Logo styles */
.logo-container {
    margin-bottom: 3rem;
    /* animation: float 3s ease-in-out infinite; */
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(36, 238, 137, 0.3));
}

/* Message styles */
.message-container {
    margin-bottom: 3rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, rgb(36, 238, 137), rgb(159, 232, 113));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.description {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.5;
}

.description strong {
    font-weight: 600;
    color: rgb(36, 238, 137);
}

/* Status indicator */
.status-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    background: rgba(36, 238, 137, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(36, 238, 137, 0.3);
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(90deg, rgb(36, 238, 137), rgb(159, 232, 113));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.footer p {
    font-size: 0.875rem;
    opacity: 0.6;
    font-weight: 300;
}

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

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(36, 238, 137, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(36, 238, 137, 0.8), 0 0 40px rgba(159, 232, 113, 0.5);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .maintenance-container {
        padding: 1.5rem;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
    
    .status-container {
        padding: 0.8rem 1.5rem;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 180px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .status-container {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .footer {
        bottom: 1rem;
    }
    
    .footer p {
        font-size: 0.8rem;
    }
}
