/* =======================================
   Base Layout
======================================= */

.maintenance-body {
    min-height: 100vh;
    margin: 0;
    background: radial-gradient(circle at top, #17172a 0, #050509 40%, #020208 100%);
    color: #FFFFFF;
    font-family: "Quicksand", system-ui, -apple-system, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* =======================================
   Card
======================================= */

.maintenance {
    width: 100%;
    padding: 24px 16px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.maintenance_card {
    width: 100%;
    max-width: 540px;
    background: rgba(11, 11, 17, 0.96);
    padding: 26px 22px 22px;

    border-radius: 28px;
    -webkit-mask-image: radial-gradient(115% 115% at 50% 50%, #000 100%, transparent 100%);
    mask-image: radial-gradient(115% 115% at 50% 50%, #000 100%, transparent 100%);

    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 60px 100px rgba(0, 0, 0, 0.65),
        0 4px 8px rgba(255, 255, 255, 0.02) inset,
        0 0 0 1px rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(20px);
}

/* =======================================
   Badge
======================================= */

.maintenance_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.maintenance_badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ffb74d;
    animation: dotPulse 1.4s ease-out infinite;
    box-shadow: 0 0 0 0 rgba(255, 183, 77, 0.7);
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 183, 77, 0.7);
    }

    70% {
        transform: scale(1.4);
        box-shadow: 0 0 0 10px rgba(255, 183, 77, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 183, 77, 0);
    }
}

/* =======================================
   Typography
======================================= */

.maintenance_title {
    margin: 16px 0 10px;
    font-size: 1.9rem;
    font-weight: 600;
}

.maintenance_text {
    margin: 0 0 12px;
    color: #a3a3b5;
}

.maintenance_eta {
    margin: 6px 0 14px;
}

.maintenance_eta strong {
    font-weight: 600;
}

/* =======================================
   Divider Line With Sweep
======================================= */

.maintenance_divider {
    margin: 14px 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.maintenance_divider-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent,
            rgba(79, 140, 255, 0.9),
            rgba(47, 214, 197, 0.9),
            transparent);
    transform: translateX(-100%);
    animation: dividerSweep 5s ease-in-out infinite;
}

@keyframes dividerSweep {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* =======================================
   List
======================================= */

.maintenance_list {
    margin: 0 0 10px 1.1rem;
    padding: 0;
    color: #a3a3b5;
    list-style: none;
}

.maintenance_list li::before {
    content: "•";
    display: inline-block;
    margin-right: 0.4rem;
    color: #4f8cff;
}

/* =======================================
   Contact Button (Fixed Animation)
======================================= */

.maintenance_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f8cff, #6a5bff);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.9rem;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(79, 140, 255, 0.4);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.maintenance_button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(79, 140, 255, 0.55);
}

.maintenance_button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 70%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 1),
            rgba(255, 255, 255, 0));
    opacity: 0;
    pointer-events: none;
}

.maintenance_button:hover::after {
    animation: buttonShine 0.5s ease-out forwards;
}

@keyframes buttonShine {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    60% {
        transform: translateX(180%);
        opacity: 1;
    }

    100% {
        transform: translateX(250%);
        opacity: 0;
    }
}

/* =======================================
   Signature + Activity Bars
======================================= */

.maintenance_signature {
    margin: 4px 0 12px;
    color: #a3a3b5;
    font-size: 0.9rem;
    text-align: end;
}


/* =======================================
   Mobile
======================================= */

@media (max-width: 480px) {
    .maintenance_card {
        padding: 20px 18px;
    }

    .maintenance_title {
        font-size: 1.6rem;
    }
}