@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat', sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#121212;
    overflow:hidden;
    position:relative;
}

.construction-bg{
    position:absolute;
    width:100%;
    height:100%;
    background:
    repeating-linear-gradient(
        -45deg,
        #111 0px,
        #111 40px,
        #f7b500 40px,
        #f7b500 80px
    );
    opacity:0.08;
}

.container{
    position:relative;
    z-index:2;
    width:90%;
    max-width:700px;
    text-align:center;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    padding:50px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.1);
    box-shadow:0 20px 50px rgba(0,0,0,0.5);
}

.icon{
    font-size:90px;
    margin-bottom:20px;
    animation:bounce 2s infinite;
}

h1{
    color:#fff;
    font-size:3rem;
    font-weight:800;
    margin-bottom:15px;
    text-transform:uppercase;
}

p{
    color:#cfcfcf;
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:35px;
}

.progress-container{
    width:100%;
    height:18px;
    background:#222;
    border-radius:50px;
    overflow:hidden;
    margin-bottom:20px;
}

.progress-bar{
    height:100%;
    width:70%;
    background:linear-gradient(90deg,#f7b500,#ffd84d);
    border-radius:50px;
    animation:loading 3s ease-in-out infinite;
}

.status{
    color:#f7b500;
    font-weight:600;
    letter-spacing:1px;
}

@keyframes loading{
    0%{
        width:20%;
    }
    50%{
        width:85%;
    }
    100%{
        width:20%;
    }
}

@keyframes bounce{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

@media(max-width:768px){

    .container{
        padding:35px 25px;
    }

    h1{
        font-size:2rem;
    }

    p{
        font-size:1rem;
    }

    .icon{
        font-size:70px;
    }

}