.gp62-game-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.gp62-game-row{
    display:flex;
    align-items:flex-start;
    padding:15px;
    background:rgba(255,255,255,0);
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gp62-game-row:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

.gp62-game-number{
    width:25px;
    text-align:center;
    font-weight:bold;
    margin-right:10px;
    color:#fff;
}

.gp62-game-img img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:6px;
    margin-right:15px;
}

.gp62-game-info{
    display:flex;
    flex-direction:column; /* ustma-ust */
    justify-content:flex-start;
}

.gp62-game-info h3{
    margin:0 0 5px 0;
    font-size:1em;
    color:#ffffff;
}

.gp62-size{
    font-size:0.9em;
    color:#ffffff;
    margin-bottom:5px;
}

.gp62-download-btn{
    background:#ff0000;
    color:#ffffff;
    border:none;
    padding:4px 10px;
    font-weight:bold;
    cursor:pointer;
    font-size:0.9em;
    border-radius:14px;
    text-transform:uppercase;
    margin-bottom:5px;
    transition: background 0.2s;
}

.gp62-download-btn:hover{
    background:#cc0000;
}

.gp62-download-count{
    display:block; /* ustma-ust */
    font-size:0.85em;
    color:#ffffff; /* oq rang */
}

.gp62-pagination{
    margin-top:15px;
    text-align:center;
}

.gp62-pagination a{
    padding:5px 10px;
    border:1px solid #ccc;
    margin:0 3px;
    text-decoration:none;
    color:#000;
}

.gp62-pagination a.current{
    background:#0073aa;
    color:#fff;
}