.columns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.column {
    width: 22.6%;
    margin-top: 20px;
    padding-right: 16px;
    box-sizing: border-box;
    padding: 10px;
    margin: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

.column a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.column img {
    width: 100%;
    height: 230px;
    border-radius: 8px 8px 0 0;
}

.game-name {
    font-family: 思源黑体;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0px;
    text-align: center;
    padding: 10px;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: all 0.3s ease;
    font-weight: 600;
    box-sizing: border-box;
}

.play {
    padding: 10px 20px;
    background-color: #8a2be2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column:hover img {
    transform: scale(1.1);
    transition: all 0.3s;
}

.column:hover .game-name {
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

@media (max-width:768px) {
    .column {
        width: 44%;
        padding: 0;
    }
}