html {
    --background: 28, 33, 51;
    --bg-main: 33, 39, 59;
    --bg-secondary: 39, 46, 69;
    --bg-secondary-hover: var(--bg-secondary);
    --bg-light: 26, 31, 49;
    --bg-light-hover: 40, 46, 68;
    --bg-badge: 22, 27, 43;
    --bg-classic-fire: 44, 50, 71;
    --bg-classic-fire-badge: 76, 81, 103;
    --bg-classic-fire-text: 148, 157, 197;
    --bg-logout: 35, 41, 62;
    --text-main: 196, 204, 224;
    --text-primary: 43, 142, 222;
    --text-secondary: 196, 204, 224;
    --text-secondary-light: 255, 255, 255;
    --text-logout: 122, 134, 174;
    --shadow-main: unset;
    --border-main: 57, 62, 81;
    --border-secondary: 47, 52, 74;
    --border-light: 47, 52, 74;
    --border-secondary-hover: 87, 96, 128;
    --border-wheel: 44, 50, 73;
    --border-avatar: 44, 50, 71;
}

.main[data-v-fed5196b] {
    width: 100%;
}

.games[data-v-f9207f78] {
    background-color: #00091aa6;
    border-radius: 10px;
    height: 90px;
    display: flex;
    box-shadow: var(--shadow-main);
}

.games .game[data-v-f9207f78] {
    width: 20%;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 42px;
    color: rgba(var(--text-secondary),1);
    font-size: 14px;
    font-weight: 700;
}

.games .game.router-link-active[data-v-f9207f78] {
    background-color: rgba(var(--bg-secondary),1);
    border-radius: 6px;
}

.games.no-shadow .game .badge[data-v-f9207f78] {
    box-shadow: unset;
}

.games .game.gray .badge[data-v-f9207f78] {
    background-image: linear-gradient(0deg,#9da3b1,#767a8f);
    box-shadow: 0 7px 13px #9e9cae40;
}

.games .game .badge[data-v-f9207f78] {
    width: 50.7px;
    height: 50.7px;
    position: absolute;
    top: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-image: linear-gradient(0deg,#8e6cf0,#6582fb);
    box-shadow: 0 7px 13px #7977f640;
    transition: .25s ease;
    color: #fff;
    font-size: 20px;
}

.games .game .badge img[data-v-f9207f78] {
    max-width: 25px;
    max-height: 25px;
}

.games .game .badge img[data-v-f9207f78], .games .game .badge svg[data-v-f9207f78] {
    transition: .3s ease;
}

.games .game span[data-v-f9207f78] {
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    width: 100%;
    font-size: 15px;
    text-align: center;
}

.games .game .description[data-v-f9207f78] {
    color: rgba(var(--text-logout),1);
}



@media (max-width: 900px) {
    .games[data-v-f9207f78] {
        flex-wrap: wrap;
        height: unset;
        justify-content: center;
    }

    .games .game[data-v-f9207f78] {
        margin: 10px 0;
        width: calc(25% - 5px);
    }
}