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

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif;
    background-image: linear-gradient(145deg, #0064d3 30%, #1d3557);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    line-height: 1.6;
}

.maintenance-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 90%;
    padding: 60px 40px 40px 40px;
    text-align: center;
    margin: 20px;
}

.logo-container {
    margin: 0 auto 40px;
}

.logo-container img {
    max-height: 60px;
    width: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a202c;
    letter-spacing: -0.02em;
}

.maintenance-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.maintenance-text p {
    margin-bottom: 20px;
}

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

.status-indicator {
    display: inline-flex;
    align-items: center;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 12px 24px;
    margin-top: 30px;
    font-size: 0.95rem;
    color: #1a202c;
    font-weight: 500;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #3182ce;
    border-radius: 50%;
    margin-right: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(49, 130, 206, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(49, 130, 206, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(49, 130, 206, 0);
    }
}

.footer-text {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

.footer-links {
    margin-top: 20px;
    font-size: 0.85rem;
}

.footer-links a {
    color: #0064d3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1d3557;
    text-decoration: underline;
}

.footer-links span {
    margin: 0 10px;
    color: #718096;
}

@media (max-width: 768px) {
    .maintenance-container {
        padding: 40px 30px;
        margin: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    .maintenance-text {
        font-size: 1rem;
    }

    .logo-container img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .maintenance-container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .logo-container img {
        max-height: 40px;
    }
}
