.ps-box{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:20px 0;
}

.ps-item{
    flex:1;
    min-width:130px;
    background:#161D25;
    border-radius:12px;
    padding:15px;
    text-align:center;
    transition:all .25s ease;
    box-shadow:0 2px 10px rgba(0,0,0,.25);
}

.ps-item:hover{
    transform:translateY(-3px);
}

.ps-icon{
    font-size:24px;
    margin-bottom:8px;
}

.ps-value{
    font-size:18px;
    font-weight:bold;
    color:#D4AF37;
}

.ps-label{
    font-size:12px;
    color:#aaa;
    margin-top:4px;
}
.ps-share{
    cursor:pointer;
}

.ps-share:hover{
    background:#1f2b37;
}
.ps-popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.7);
    z-index:99999;
}

.ps-popup.active{
    display:flex;
    align-items:center;
    justify-content:center;
}

.ps-popup-content{
    width:320px;
    background:#161D25;
    border-radius:12px;
    padding:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.ps-popup-title{
    color:#fff;
    font-size:20px;
    text-align:center;
    margin-bottom:10px;
}

.ps-popup-content a,
.ps-popup-content button{
    border:none;
    text-decoration:none;
    background:#222;
    color:#fff;
    padding:12px;
    border-radius:8px;
    text-align:center;
    cursor:pointer;
}

.ps-popup-content a:hover,
.ps-popup-content button:hover{
    background:#2f3d4d;
}
.ps-comments{
    cursor:pointer;
}

.ps-comments:hover{
    background:#1f2b37;
}
.ps-votes{
    cursor:pointer;
}

.ps-votes:hover{
    background:#1f2b37;
}
.ps-title{
    display:flex;
    align-items:center;
    gap:8px;
    color:#D4AF37;
    font-size:18px;
    font-weight:bold;
    margin:20px 0 10px;
    padding-left:5px;
}

.ps-title i{
    font-size:20px;
}
.ps-downloads{
    cursor:pointer;
}

.ps-downloads:hover{
    background:#1f2b37;
}
.ps-uploader{
    cursor:pointer;
}

.ps-uploader:hover{
    background:#1f2b37;
}
.ps-uploader .ps-value{
    font-size:15px;
}

.ps-uploader{
    min-width:110px;
}
.ps-avatar{
    margin-bottom:8px;
}

.ps-avatar img{
    width:48px;
    height:48px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #D4AF37;
}