body{
    margin:0;
    background:transparent;
    overflow:hidden;
    font-family:Segoe UI, Arial, sans-serif;
}

#panel{
    width:500px;
    background:#66557d;
    border:3px solid #b874ff;
    border-radius:18px;
    padding:18px;
    color:white;
    box-shadow:0 0 18px rgba(184,116,255,.55);
}

.title{
    font-size:30px;
    font-weight:bold;
    color:#f2d7ff;
    margin-bottom:20px;
}

.section{
    margin-bottom:20px;
}

.label{
    color:#ddb8ff;
    font-weight:bold;
    margin-bottom:5px;
}

.value{
    font-size:18px;
}

.progressTrack{
    width:100%;
    height:18px;
    background:#45315e;
    border-radius:12px;
    overflow:hidden;
}

.progressFill{
    width:0%;
    height:100%;
    background:linear-gradient(90deg,#d890ff,#a84dff);
    transition:width .4s;
}

.progressText{
    margin-top:6px;
    text-align:center;
    font-weight:bold;
}

.statsGrid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:20px;
}

.statCard{
    background:rgba(255,255,255,.06);
    border-radius:10px;
    padding:10px;
}

.statCard .label{
    font-size:15px;
    color:#d9b8ff;
    font-weight:bold;
}

.statCard .value{
    font-size:22px;
    font-weight:bold;
    margin-top:6px;
    color:white;
    word-wrap:break-word;
}
