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

html,body{
    width:100%;
    min-height:100%;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#1f2937;
    overflow-x:hidden;
}

.page-bg{
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at 15% 20%, rgba(247,196,0,.18), transparent 30%),
        radial-gradient(circle at 85% 80%, rgba(31,41,55,.10), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    z-index:0;
}

.circle{
    position:absolute;
    border-radius:50%;
    filter:blur(1px);
    animation:float 7s ease-in-out infinite;
}

.circle-one{
    width:150px;
    height:150px;
    background:rgba(247,196,0,.16);
    left:8%;
    top:14%;
}

.circle-two{
    width:220px;
    height:220px;
    background:rgba(31,41,55,.08);
    right:7%;
    bottom:12%;
    animation-delay:1.5s;
}

.circle-three{
    width:90px;
    height:90px;
    background:rgba(247,196,0,.20);
    right:18%;
    top:18%;
    animation-delay:2.5s;
}

.maintenance-wrapper{
    position:relative;
    z-index:1;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px 16px;
}

.maintenance-card{
    width:100%;
    max-width:860px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(31,41,55,.08);
    box-shadow:0 25px 80px rgba(15,23,42,.12);
    border-radius:32px;
    padding:48px 38px;
    text-align:center;
    animation:fadeUp .9s ease both;
}

.logo-area{
    margin-bottom:24px;
}

.logo{
    width:100%;
    max-width:430px;
    height:auto;
    display:block;
    margin:0 auto;
}

.status-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 24px;
    border-radius:999px;
    background:#f7c600;
    color:#111827;
    font-size:15px;
    font-weight:700;
    letter-spacing:.3px;
    margin-bottom:22px;
}

h1{
    font-size:42px;
    line-height:1.15;
    color:#1f2937;
    margin-bottom:18px;
}

.description{
    max-width:680px;
    margin:0 auto 28px;
    color:#667085;
    font-size:18px;
    line-height:1.75;
}

.info-box{
    display:inline-flex;
    flex-direction:column;
    gap:8px;
    background:#111827;
    color:#fff;
    padding:18px 34px;
    border-radius:22px;
    margin-bottom:24px;
    box-shadow:0 16px 36px rgba(17,24,39,.18);
}

.info-box span{
    font-size:13px;
    color:#f7c600;
    text-transform:uppercase;
    letter-spacing:1.4px;
    font-weight:700;
}

.info-box a{
    color:#fff;
    font-size:28px;
    font-weight:800;
    text-decoration:none;
}

.small-text{
    color:#98a2b3;
    font-size:14px;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(35px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-18px);
    }
}

@media(max-width:600px){
    .maintenance-card{
        padding:34px 20px;
        border-radius:24px;
    }

    .logo{
        max-width:300px;
    }

    h1{
        font-size:30px;
    }

    .description{
        font-size:16px;
    }

    .info-box{
        width:100%;
        padding:16px 18px;
    }

    .info-box a{
        font-size:23px;
    }
}
