Qosify: new package for DSCP marking + cake

Hello beautiful people. Could you help me with this, please
I´ve tried many things but I can't get qosify to work. I'm using this config taken from a couple users of this topic (I don't remember the names, sorry)

/etc/config/qosify

config defaults
        list defaults /etc/qosify/*.conf

        #option dscp_icmp +besteffort
        #option dscp_default_tcp unmarked_traffic
        #option dscp_default_udp unmarked_traffic

config class unmarked_traffic
        option ingress CS1
        option egress CS1
        option prio_max_avg_pkt_len 1256
        option dscp_prio CS4
        option bulk_trigger_pps 250
        option bulk_trigger_timeout 10
        option dscp_bulk CS1

config class bulk
        option ingress CS1
        option egress CS1

config class bulk_upload_only
        option ingress CS0
        option egress CS1

config class besteffort
        option ingress CS0
        option egress CS0

config class video_broadcast
        option ingress CS3
        option egress CS3

config class video_network_sparse
        option ingress CS3
        option egress CS3

        option bulk_trigger_pps 100
        option bulk_trigger_timeout 5
        option dscp_bulk CS0

config class video_network
        option ingress CS3
        option egress CS3

config class video_gaming
        option ingress CS4
        option egress CS4

config class video_conferencing
        option ingress AF42
        option egress AF42

config class voice_telephony
        option ingress EF
        option egress EF

config class voice_network
        option ingress CS6
        option egress CS6

config interface wan
        option name wan
        option disabled 0
        option bandwidth_up 30mbit
        option bandwidth_down 500mbit
        option overhead_type docsis
        # defaults:
        option ingress 1
        option egress 1
        option mode diffserv4
        option nat 1
        option host_isolate 1
        option autorate_ingress 0

        option ingress_options ""
        option egress_options "wash"
        option options ""

/etc/qosify/00-defaults.conf

#
# Bulk Tin
#

# Microsoft Onedrive
dns:*1drv*                 bulk_upload_only
dns:*onedrive*             bulk_upload_only
dns:*.storage.live.com     bulk_upload_only

# Microsoft (Download)
dns:*backblaze*            bulk_upload_only
dns:*backblazeb2*          bulk_upload_only
dns:*ms-acdc.office*       bulk_upload_only
dns:*sharepoint*           bulk_upload_only
dns:*update.microsoft*     bulk
dns:*windowsupdate*        bulk

# MEGA (Download)
# dns:*mega*                 bulk

# Dropbox
dns:*dropboxusercontent*   bulk

# Google
dns:*drive.google*         bulk
dns:*googleusercontent*    bulk

# Steam (Download)
dns:*steamcontent*         bulk

# Epic Games (Download)
dns:*download.epicgames*   bulk
dns:*download2.epicgames*  bulk
dns:*download3.epicgames*  bulk
dns:*download4.epicgames*  bulk
dns:*epicgames-download1*  bulk

# BitTorrent
tcp:6881-7000    bulk
tcp:51413        bulk
udp:6771         bulk
udp:6881-7000    bulk
udp:51413        bulk

# Usenet
tcp:119          bulk
tcp:563          bulk

# Netflix
dns:nflxvideo.net       bulk
dns:*.nflxvideo.net     bulk

#
# Best Effort Tin
#

# Nothing here

#
# Video Tin
#

# SSH
tcp:22    video_network_sparse

# Microsoft Remote Desktop (RDP)
tcp:3389        video_network
udp:3389        video_network

#Moonlight & Steam Link
udp:27031       video_network
udp:27036       video_network
udp:47998-48000 video_network
udp:48002       video_network
udp:48010       video_network
tcp:27036-27037 video_network
tcp:47984       video_network
tcp:47989       video_network
tcp:48010       video_network

# Parsec - Remote Desktop
udp:8000-8010   video_network
udp:9000        video_network

# TeamViewer - Remote Desktop
tcp:5938         video_network
udp:5938         video_network

# Streaming music
dns:mvod.itunes.apple.com       video_network
dns:streamingaudio.itunes.apple.com     video_network
dns:aod.itunes.apple.com        video_network
dns:tidal.com   video_network
dns:*.tidal.com video_network

# GeForce Now
tcp:49006       video_gaming
udp:49003-49006 video_gaming
#dns:cloudmatchbeta.nvidiagrid.net video_gaming
dns:nvidiagrid.net      video_gaming
dns:*.nvidiagrid.net    video_gaming

# Xbox
tcp:3074         video_gaming
udp:88           video_gaming
#udp:500         video_gaming # UDP port already used in "VoWiFi" rules
udp:3074         video_gaming
udp:3544         video_gaming
#udp:4500        video_gaming # UDP port already used in "VoWiFi" rules
dns:gssv-play-prod.xboxlive.com video_gaming
dns:*.gssv-play-prod.xboxlive.com       video_gaming
dns:xboxlive.com        video_gaming
dns:*.xboxlive.com      video_gaming

# Call of Duty
#tcp:3074        video_gaming # TCP port already used in "Xbox" rules
tcp:3075-3076    video_gaming
#udp:3074        video_gaming # UDP port already used in "Xbox" rules
udp:3075-3079    video_gaming
udp:3658         video_gaming

#Fortnite
tcp:433         video_gaming
tcp:3478-3479   video_gaming
tcp:5060        video_gaming
tcp:5062        video_gaming
tcp:5222        video_gaming
tcp:6250        video_gaming
tcp:12000-65000 video_gaming
udp:3478-3479   video_gaming
udp:5060        video_gaming
udp:5062        video_gaming
udp:6250        video_gaming
udp:12000-65000 video_gaming

# FIFA
tcp:3659         video_gaming
udp:3659         video_gaming

# Supercell Games
tcp:9339         video_gaming
udp:9339         video_gaming

#
# Voice Tin
#

# Telephony
udp:3478-3497   +voice_telephony

# Zoom
dns:*.zoom.us   +voice_telephony
tcp:8801-8802       +voice_telephony
udp:8801-8810       +voice_telephony

# Skype
dns:*skype*      +voice_telephony

# Google Meet
udp:19302-19309  +voice_telephony

# Voice over Internet Protocol (VoIP)
tcp:5060-5061    +voice_telephony
udp:5060-5061    +voice_telephony

# Voice over WiFi or WiFi Calling (VoWiFi)
udp:500          +voice_telephony
udp:4500         +voice_telephony

#AudioRelay
udp:59100       +voice_telephony

I'm using wireshark to see if these is marked as indicated, but everything seems to be marked as CS0 and nothing else. I've tried with Geforce Now, Steam, Netflix... nothing has the DSCP I configured. Am I missing something?

Also, this is my init scripts, I don't know if some of these are causing conflict or something.

Don't know if it's relevant: The ISP modem is set as bridge and all the things are managed through my Xiaomi Mi Router 4A

This is output for qosify-status couple minutes after run a game on GFN. Nothing seems to pass through video tin. Some of the traffic is adding to the Voice and Best Effort columns though, so I'm assuming it's doing something right?

root@OpenWrt:~# qosify-status
===== interface wan: active =====
egress status:
qdisc cake 800a: root refcnt 2 bandwidth 30Mbit diffserv4 dual-srchost nat wash no-ack-filter split-gso rtt 100ms noatm overhead 18 mpu 64
 Sent 497143 bytes 3316 pkt (dropped 0, overlimits 133 requeues 0)
 backlog 0b 0p requeues 0
 memory used: 20160b of 4Mb
 capacity estimate: 30Mbit
 min/max network layer size:           40 /    1500
 min/max overhead-adjusted size:       64 /    1518
 average network hdr offset:           14

                   Bulk  Best Effort        Video        Voice
  thresh       1875Kbit       30Mbit       15Mbit     7500Kbit
  target         9.69ms          5ms          5ms          5ms
  interval        105ms        100ms        100ms        100ms
  pk_delay          0us        191us         23us        199us
  av_delay          0us         24us          0us         14us
  sp_delay          0us         13us          0us         14us
  backlog            0b           0b           0b           0b
  pkts                0         3190            3          123
  bytes               0       485774          270        11099
  way_inds            0            0            0            0
  way_miss            0          120            3            3
  way_cols            0            0            0            0
  drops               0            0            0            0
  marks               0            0            0            0
  ack_drop            0            0            0            0
  sp_flows            0            2            1            0
  bk_flows            0            1            0            0
  un_flows            0            0            0            0
  max_len             0         1514           90         1270
  quantum           300          915          457          300


ingress status:
qdisc cake 800b: root refcnt 2 bandwidth 500Mbit diffserv4 dual-dsthost nat nowash ingress no-ack-filter split-gso rtt 100ms noatm overhead 18 mpu 64
 Sent 26982078 bytes 25800 pkt (dropped 1, overlimits 72 requeues 0)
 backlog 0b 0p requeues 0
 memory used: 230688b of 15140Kb
 capacity estimate: 500Mbit
 min/max network layer size:           46 /    1500
 min/max overhead-adjusted size:       64 /    1518
 average network hdr offset:           14

                   Bulk  Best Effort        Video        Voice
  thresh      31250Kbit      500Mbit      250Mbit      125Mbit
  target            5ms          5ms          5ms          5ms
  interval        100ms        100ms        100ms        100ms
  pk_delay          0us        926us          0us        149us
  av_delay          0us        268us          0us         18us
  sp_delay          0us         12us          0us          8us
  backlog            0b           0b           0b           0b
  pkts                0        21708            0         4093
  bytes               0     26728848            0       254504
  way_inds            0            0            0            0
  way_miss            0           51            0           11
  way_cols            0            0            0            0
  drops               0            1            0            0
  marks               0            0            0            0
  ack_drop            0            0            0            0
  sp_flows            0            3            0            1
  bk_flows            0            1            0            0
  un_flows            0            0            0            0
  max_len             0         3028            0         1292
  quantum           953         1514         1514         1514

Could you help me and tell me what am I doing wrong. I'd appreciate a lot.