
/* Base styles */
body {
 margin: 0;
 padding: 0;
 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
 background-color: #0f172a;
 color: #cbd5e1;
 min-height: 100vh;
 overflow: hidden;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 1rem;
}

/* Container */
.container {
    max-width: 640px;
    width: 100%;
    background-color: #1e293b;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Header */
.header {
    background-color: #2563eb;
    padding: 1.5rem;
    text-align: center;
}

.icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-container svg {
    background-color: #0f172a;
    border-radius: 50%;
    padding: 0.75rem;
    color: #60a5fa;
}

.header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Content */
.content {
    padding: 2rem;
}

/* Maintenance section */
.maintenance-section {
    text-align: center;
    margin-bottom: 2rem;
}

.icon-wrapper {
    display: inline-block;
    background-color: #1e3a8a;
    border-radius: 50%;
/*    padding: 0.75rem; */
    margin-bottom: 1.5rem;
    padding-top: 0.7rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    padding-bottom: 0.45rem; 
}

.icon-wrapper svg {
    color: #60a5fa;
}

.maintenance-section p {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.maintenance-section p:last-child {
    margin-bottom: 0;
}

.small-text {
    font-size: 0.875rem;
    color: #64748b;
}

/* Contact section */
.contact-section {
    background-color: #0f172a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #334155;
}

.contact-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-section h2 svg {
    margin-right: 0.5rem;
    color: #60a5fa;
}

.contact-section p {
    color: #94a3b8;
    margin: 0;
}

.contact-section a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* Loading dots */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: #3b82f6;
    border-radius: 50%;
    animation: bounce 1.5s infinite;
}

.dot:nth-child(2) {
    background-color: #8b5cf6;
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.5rem);
    }
}

/* Footer */
.footer {
    background-color: #0f172a;
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
    border-top: 1px solid #334155;
}

/* Responsive styles */
@media (min-width: 768px) {
    .header h1 {
        font-size: 1.875rem;
    }
    
    .content {
        padding: 2.5rem;
    }
}
