.pimagame-game-container {
    margin: 10px 1rem;
}

.pimagame-game-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0px;
    background-color: #FFF289;
    border-radius: 10px;
}

.pimagame-game-title p {
    font-size: 1rem;
    color: #000;
    margin: 10px;
}

.pimagame-game-title img {
    width: 30px;
    height: 30px;
    display: block;
}

.pimagame-game-item-div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    padding: 20px 0px 10px 0px;
}

.pimagame-nav-game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 4vh;
    position: absolute;
    bottom: 0px;
    background: linear-gradient(180deg, rgba(255, 255, 255,0) 0%, #7a7a7a 100%);
    border-radius:0px 0px 10px 10px;
}


.pimagame-nav-game-info p {
    color: #fff;
    margin: 0px;
    font-size: 0.8rem;
    padding: 5px;
}

.recommend {
    margin: 10px 1rem;
}

.recommend-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns layout */
    gap: 0.5rem;
    /* Gap between items */
}