.divisiongame {
    display: flex;
    flex-direction: column;
    width: 160px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    opacity: 0.6;
    position: relative;
}

.divisiongame .game-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 24px;
    margin: 0 auto;
    border: 12px solid transparent;
}

.divisiongame .game-name {
    text-transform: uppercase;
    font-size: 22px;
    color: #4B4A4A;
    text-align: center;
    padding: 8px 4px;
    font-family: "Metropolis Bold";
    margin-block: auto;
    line-height: 24px;
}

.divisiongame.selected {
    opacity: 1;
}

.divisiongame.selected .game-image {
    border: 12px solid #1683ff;
    transform: scale(1.1);
}

.dark .divisiongame .game-name {
    color: #fff;
}

.divisiongame .joinedBanner {
    position: absolute;
    top: 10px;
    left: 12px;
    width: 136px;
    height: 60px;
    background-color: #1683ffa3;
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
    z-index: 1;
}
.divisiongame.selected .joinedBanner {
    transform: scale(1.16);
}

.divisiongame .joinedIcon {
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/misc/joined_gg.svg );
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    top: 10px;
    left: 14px;
    width: 40px;
    height: 40px;
}
.divisiongame .joinedBanner.hide {
    display: none;
}

@media (max-width: 1024px) {
    .divisiongame .game-name {
        font-size: 20px;
        line-height: 22px;
        letter-spacing: 0.2px;
    }
    .divisiongame .game-image {
        width: 140px;
        height: 140px;
    }
    .divisiongame .joinedBanner {
        width: 116px;
        height: 48px;
        top: 10px;
        left: 22px;
    }
    .divisiongame .joinedIcon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 767px) {
    .divisiongame .game-image {
        width: 100px;
        height: 100px;
    }
    .divisiongame .game-name {
        font-size: 18px;
    }
    .divisiongame.selected .game-image {
        border-width: 6px;
    }
    .divisiongames .games-list {
        overflow-x: auto;
    }
    .divisiongame .joinedBanner {
        width: 76px;
        height: 48px;
        top: 12px;
        left: 42px;
    }
    .divisiongame.selected .joinedBanner {
        width: 86px;
        height: 48px;
        top: 4px;
        left: 37px;
    }
    .divisiongame .joinedIcon {
        width: 30px;
        top: 4px;
        left: 4px;
        height: 30px;
    }
}