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

.game-item-part6 {
    width: 100px;
    height: 130px;
    border-radius: 10px; /* Add rounded corners to the entire game item */
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.game-item-part6 h3 {
    color: #334455;
    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-part6 img {
    width: 100px;
    height: 100px; /* Set a fixed height for images */
    object-fit: cover; /* Ensure images are cropped to fit the container */
}
.game-item-part6:hover {
    transform: translateY(-10px);
}
