.game-covers-container {
    height: 100%;
    overflow: visible;
    position: relative;
}
.game-covers {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
    padding: 0 5%;
    cursor: grab;
}
.game-cover {
    height: 540px;
    min-width: 70px;
    border-radius: 10px;
    background: #000;
    transition: transform 0.2s ease-in-out;
}
.game-cover:hover {
    transform: translateY(-20px);
}
.game-cover .cover-bg {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}
.game-shelf {
    padding: 0 2.5%;
    height: 70px;
    width: 100%;
}
.game-shelf__inner {
    display: flex;
    align-items: center;
    height: 100%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    position: relative;
}
.game-shelf__inner__text {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: calc(100vw - 7.5%);
}
.game-shelf__inner__text i {
    font-size: 32px;
    line-height: 40px;
    height: 32px;
}