body{
    margin:0;
    background:#0f172a;
    font-family:sans-serif;
    color:white;
}

.container{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.glass-card{

    width:90%;
    max-width:420px;

    padding:30px;

    border-radius:30px;

    background:rgba(255,255,255,0.08);

    backdrop-filter: blur(20px);

    box-shadow:
    0 8px 32px rgba(0,0,0,0.3);
}

.title{
    text-align:center;
    font-size:24px;
    opacity:0.8;
}

.steps{
    text-align:center;
    font-size:80px;
    font-weight:700;
    margin:30px 0;
}

.progress-wrap{
    width:100%;
    height:18px;
    background:#1e293b;
    border-radius:20px;
    overflow:hidden;
}

.progress{
    width:0%;
    height:100%;
    background:linear-gradient(
        90deg,
        #2563eb,
        #38bdf8
    );
}

.stats{
    display:flex;
    justify-content:space-between;
    margin-top:25px;
}

.stats div{
    width:48%;
    background:rgba(255,255,255,0.05);
    padding:20px;
    border-radius:18px;
    text-align:center;
}

.stats span{
    display:block;
    font-size:24px;
    margin-top:10px;
}

.btn{

    width:100%;
    border:none;

    padding:18px;

    border-radius:18px;

    margin-top:15px;

    color:white;

    font-size:18px;

    background:#334155;
}

.primary{
    background:#2563eb;
}