main {
    width: var(--all-width);
    margin: 0 auto;
    background-color: #252f3f;
    border-left: 5px solid #181c22;
    border-right: 5px solid #181c22;
    padding: 0 10px;
    margin-bottom: 15px;
}

section {
    width: calc(100% - 20px);
    background-color: #0d1d23;
    border-top: 5px dashed #0e5488;
    border-bottom: 5px dashed #08426f;
    padding: 10px 0 20px 0;
    margin: 0 auto;
}

.list {
    margin-bottom: 15px;
}

h3 {
    color: #fff;
    text-shadow: 0 1px 0 #ccc,
        0 1px 0 #c9c9c9,
        0 2px 0 #bbb,
        /* 
        0 3px 0 #b9b9b9,
        0 2px 0 #aaa, 
        */
        0 6px 1px rgba(0, 0, 0, .1),
        0 0 5px rgba(0, 0, 0, .1),
        0 1px 3px rgba(0, 0, 0, .3),
        0 3px 5px rgba(0, 0, 0, .2),
        0 5px 10px rgba(0, 0, 0, .25),
        0 10px 10px rgba(0, 0, 0, .2),
        0 20px 20px rgba(0, 0, 0, .15);
    font-size: 26px;
    margin-bottom: 12px;
}

.big-box {
    display: flex;
    flex-wrap: wrap;
    row-gap: 12px;
}

.game-box {
    border-radius: 6px;
    overflow: hidden;
}

.game-box .img-box::before {
    padding-top: 62%;
}

.game-box .game-text {
    background-color: #4f89ab;
    padding: 6px 10px;
    color: #fff;
    text-align: center;
    font-size: 15px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.2);
    border-radius: 0 0 6px 6px;
}

.new-game {
    display: flex;
}

.new-game .img-box {
    width: 55%;
}

.new-game .img-box::before {
    padding-top: 50%;
}

.new-game .new-text {
    flex: 1;
    padding: 8px 0 8px 10px;
    display: flex;
    flex-direction: column;
    color: #fff;
    justify-content: space-between;
    font-size: 12px;
}

.new-game .new-text span:first-child {
    font-size: 13px;
    font-weight: 700;
}

@media screen and (min-width:670px) {
    .game-box {
        width: calc((100% - 60px) / 5);
        margin-right: 15px;
    }

    .game-box:nth-of-type(5n) {
        margin-right: 0;
    }

    .new-game {
        width: calc((100% - 60px) / 4);
        margin-right: 20px;
    }

    .new-game:nth-of-type(4n) {
        margin-right: 0;
    }
}

@media screen and (max-width:669px) {
    .game-box {
        width: calc((100% - 10px) / 2);
        margin-right: 10px;
    }

    .game-box:nth-of-type(2n) {
        margin-right: 0;
    }

    .new-game {
        width: calc((100% - 10px) / 2);
        margin-right: 10px;
    }

    .new-game:nth-of-type(2n) {
        margin-right: 0;
    }

    .new-game {
        flex-direction: column;
    }

    .new-game .new-text {
        padding: 0;
        row-gap: 10px;
    }

    .new-game .img-box {
        width: 100%;
    }
}