*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
}

.container{
    width:100%;
    padding:20px;
}

.content{
    max-width:700px;
    margin:auto;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.image{
    width:280px;
    max-width:100%;
    margin-bottom:30px;
}

h1{
    font-size:42px;
    margin-bottom:15px;
}

p{
    font-size:18px;
    line-height:1.8;
    color:#dbeafe;
    margin-bottom:25px;
}

.status{
    display:inline-flex;
    align-items:center;
    background:#ffffff20;
    padding:10px 18px;
    border-radius:30px;
    margin-bottom:30px;
    font-weight:bold;
}

.dot{
    width:12px;
    height:12px;
    background:#22c55e;
    border-radius:50%;
    margin-right:10px;
    animation:blink 1s infinite;
}

@keyframes blink{
    0%,100%{
        opacity:1;
    }
    50%{
        opacity:.2;
    }
}

.btn{
    display:inline-block;
    text-decoration:none;
    background:#2563eb;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

.footer{
    margin-top:35px;
    color:#cbd5e1;
    font-size:14px;
}

@media(max-width:768px){

    h1{
        font-size:32px;
    }

    p{
        font-size:16px;
    }

    .content{
        padding:25px;
    }

    .image{
        width:220px;
    }
}