.games-section {
    background: #C61618;
    padding: 30px;
    color: #fff;
}

.games-section-content {
    border: 5px solid #fff;
    padding: 30px;
    border-radius: 5px;
    height: 100%;
}

.games-grid {
    margin-top: 30px;
    columns: auto 300px;
    column-gap: 20px;
    break-inside: avoid;
    page-break-inside: avoid;
}

.game-wrapper {
    display: inline-block;
    width: 100%;
}

.game {
    padding: 10px;
    background: #fff;
    text-decoration: none;
    font-size: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
    border-radius: 20px;
    margin-bottom: 20px;
}

.game-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    min-height: 40px;
}

.game > img {
    display: block;
    width: 100%;
}

.top-5-section {
    background: #38312C;
    padding: 30px;
    color: #fff;
    height: auto;
    min-height: auto;
}

.bottom-5-section {
    background: #5E5651;
    padding: 30px;
    color: #fff;
}

.games-list {
    display: flex;
    flex-wrap: wrap;
}

.games-list > * {
    width: 20%;
    max-width: 500px;
    min-width: 300px;
    margin-right: 10px;
}