/* -----------------------------
   General Reset
----------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;

    background:
        radial-gradient(
            circle at top,
            #6a0dad 0%,
            #4b0878 35%,
            #320552 65%,
            #1b022e 100%
        );

    color: #ffffff;

    display: flex;
    flex-direction: column;
}

/* -----------------------------
   Maintenance Page
----------------------------- */

.maintenance-page {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;
}


/* -----------------------------
   Main Card
----------------------------- */

.maintenance-card {
    width: 100%;
    max-width: 720px;

    text-align: center;

    padding: 60px 50px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 18px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);
}


/* -----------------------------
   Company Logo
----------------------------- */

.company-logo {
    width: 180px;
    max-width: 60%;

    height: auto;

    margin-bottom: 35px;
}


/* -----------------------------
   Status Badge
----------------------------- */

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 15px;

    margin-bottom: 25px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    color: #dbeafe;
}


/* -----------------------------
   Status Indicator
----------------------------- */

.status-dot {
    width: 9px;
    height: 9px;

    background: #fbbf24;

    border-radius: 50%;

    box-shadow:
        0 0 10px rgba(251, 191, 36, 0.8);

    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.8);
    }
}


/* -----------------------------
   Heading
----------------------------- */

h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);

    line-height: 1.1;

    margin-bottom: 25px;

    font-weight: 700;

    letter-spacing: -1px;
}


/* -----------------------------
   Description
----------------------------- */

.description {
    color: #b8c4d1;

    font-size: 17px;

    line-height: 1.7;

    margin: 5px auto;

    max-width: 550px;
}


/* -----------------------------
   Animated Loader
----------------------------- */

.loader {
    display: flex;
    justify-content: center;
    gap: 8px;

    margin: 35px 0;
}

.loader span {
    width: 9px;
    height: 9px;

    background: #ffffff;

    border-radius: 50%;

    animation: loading 1.4s infinite ease-in-out;
}

.loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loading {

    0%,
    80%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    40% {
        opacity: 1;
        transform: scale(1.2);
    }
}


/* -----------------------------
   Divider
----------------------------- */

.divider {
    width: 60px;
    height: 2px;

    background: rgba(255, 255, 255, 0.2);

    margin: 30px auto;
}


/* -----------------------------
   Contact
----------------------------- */

.contact {
    color: #8fa0b2;

    font-size: 14px;
}

.contact a {
    color: #ffffff;

    text-decoration: none;

    font-weight: 600;
}

.contact a:hover {
    text-decoration: underline;
}


/* -----------------------------
   Footer
----------------------------- */

footer {
    text-align: center;

    padding: 20px;

    color: #66788a;

    font-size: 12px;
}


/* -----------------------------
   Mobile
----------------------------- */

@media (max-width: 600px) {

    .maintenance-card {
        padding: 45px 25px;
    }

    .company-logo {
        width: 140px;
    }

    .description {
        font-size: 15px;
    }
}