/* Most Popular Games Section (Square Image with Logo) */
.game-grid-part7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    flex-wrap: wrap;
    align-content: center;
    justify-content:space-around;
    gap: 10px;
}
#template7{
    overflow-y: hidden;
}
.game-item-part7 {
    width: 155px;
    height: 155px;
    border-radius: 10px; /* Add rounded corners to the entire game item */
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}
.game-item-part7 h3 {
    padding: 3px;
    font-size: 1.1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* Limit text to 3 lines */
    -webkit-box-orient: vertical;
}
.game-item-part7 img {
    width: 155px;
    height: 155px; /* Set a fixed height for images */
    object-fit: cover; /* Ensure images are cropped to fit the container */
    border-radius: 10px; /* Add rounded corners to the entire game item */

}
.game-item-part7:hover {
    transform: translateY(-10px);
}
@media (max-width: 768px) {
    .game-item-part7 {
        width: 100%;
        height: 155px;
        border-radius: 10px; /* Add rounded corners to the entire game item */
        overflow: hidden;
        transition: transform 0.3s ease;
    }
    .game-item-part7 img {
        width: 100%;
        height: 155px; /* Set a fixed height for images */
        object-fit: cover; /* Ensure images are cropped to fit the container */
        border-radius: 10px; /* Add rounded corners to the entire game item */

    }
    #template7{
        overflow-y: hidden;
    }
}
