.top-games-wrapper {
    padding: 10px 0;
}

.top-games-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    text-align: center;
}

.top-games-scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 16px;
    gap: 13px;
}

.top-games-scroll::-webkit-scrollbar {
    display: none;
}

.top-game-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    width: 100px;
    transition: transform 0.2s ease;
}

.top-game-item:hover {
    transform: scale(1.05);
}

.top-game-icon {
    width: 80px;
    height: 80px;
    border-radius: 24%;
    overflow: hidden;
    margin-bottom: 8px;
}

.top-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-game-name {
    font-size: 12px;
    color: #ff5722;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    /*text-overflow: ellipsis;*/
    max-width: 100%;
    line-height: 1.4;
}

@media (max-width: 850px) {

    .top-games-title {
        font-size: 4.44444vw;
        margin-bottom: 2.22222vw;
        text-align: center;
    }

    .top-games-scroll {
        padding: 2.22222vw 0;
        gap: 3.55556vw;
    }

    .top-game-item {
        width: 15.55vw;
    }

    .top-game-icon {
        width: 15.55vw;
        height: 15.55vw;
        margin-bottom: 1.77778vw;
    }

    .top-game-name {
        font-size: 3.33vw;
    }
}
