/* Most Popular Games Section (Square Image with Logo) */
#template5{
    overflow-y: hidden;
}
.game-grid-part5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.game-item-part5 {
    width: 100px;
    height: 100px;
    flex: 1 1 calc(33.333% - 40px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 50px; /* Add rounded corners to the entire game item */
    overflow: hidden;
    background-color: white;
    transition: transform 0.3s ease;
}

.game-item-part5 img {
    width: 100px;
    height: 100px; /* Set a fixed height for images */
    object-fit: cover; /* Ensure images are cropped to fit the container */
    border-radius: 50px; /* Add rounded corners to images */
}
.game-item-part5:hover {
    transform: translateY(-10px);
}
@media (max-width: 768px) {
    #template5{
        overflow-y: hidden;
    }
}