-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
1503 lines (1502 loc) · 767 KB
/
game.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html lang="en" dir="ltr"><head><meta charSet="utf-8"/><meta name="robots" content="max-image-preview:large"/><meta name="viewport" content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0, width=device-width, height=device-height"/><link rel="shortcut icon" href="https://images.crazygames.com/favicons/ms-icon-2-310x310.png?auto=format%2Ccompress&q=90&cs=strip&ch=DPR&w=16&h=16" type="image/png"/><title>CrazyGames - Free Online Games on CrazyGames.com</title><meta http-equiv="Accept-CH" content="DPR"/><meta name="description" content="Play free online games at CrazyGames, the best place to play high-quality browser games. We add new games every day. Have fun!"/><link rel="canonical" href="https://www.crazygames.com/"/><link rel="alternate" hrefLang="nl" href="https://www.crazygames.nl/"/><link rel="alternate" hrefLang="en" href="https://www.crazygames.com/"/><link rel="alternate" hrefLang="it" href="https://it.crazygames.com/"/><link rel="alternate" hrefLang="es" href="https://www.1001juegos.com/"/><link rel="alternate" hrefLang="id" href="https://www.crazygames.co.id/"/><link rel="alternate" hrefLang="fr" href="https://www.crazygames.fr/"/><link rel="alternate" hrefLang="pt" href="https://www.crazygames.com.br/"/><link rel="alternate" hrefLang="ru" href="https://www.crazygames.ru/"/><link rel="alternate" hrefLang="uk" href="https://www.crazygames.com.ua/"/><link rel="alternate" hrefLang="nb" href="https://www.crazygames.no/"/><link rel="alternate" hrefLang="ro" href="https://www.crazygames.ro/"/><link rel="alternate" hrefLang="fi" href="https://www.crazygames.fi/"/><link rel="alternate" hrefLang="sv" href="https://www.crazygames.se/"/><link rel="alternate" hrefLang="de" href="https://de.crazygames.com/"/><link rel="alternate" hrefLang="pl" href="https://www.crazygames.pl/"/><link rel="alternate" hrefLang="el" href="https://gr.crazygames.com/"/><link rel="alternate" hrefLang="da" href="https://www.crazygames.dk/"/><link rel="alternate" hrefLang="cs" href="https://www.crazygames.cz/"/><link rel="alternate" hrefLang="hu" href="https://www.crazygames.hu/"/><link rel="alternate" hrefLang="tr" href="https://tr.crazygames.com/"/><link rel="alternate" hrefLang="ar" href="https://ar.crazygames.com/"/><link rel="alternate" hrefLang="vi" href="https://vn.crazygames.com/"/><link rel="alternate" hrefLang="th" href="https://th.crazygames.com/"/><link rel="alternate" href="https://www.crazygames.com/" hrefLang="x-default"/><meta name="theme-color" content="#ffffff"/><meta name="HandheldFriendly" content="true"/><meta name="mobile-web-app-capable" content="yes"/><meta name="apple-mobile-web-app-capable" content="yes"/><meta name="apple-mobile-web-app-status-bar-style" content="default"/><link rel="apple-touch-icon" href="https://images.crazygames.com/favicons/manifest-icon-3.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=120&h=120&fit=crop&crop=entropy"/><link rel="apple-touch-icon" sizes="152x152" href="https://images.crazygames.com/favicons/manifest-icon-3.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=152&h=152&fit=crop&crop=entropy"/><link rel="apple-touch-icon" sizes="167x167" href="https://images.crazygames.com/favicons/manifest-icon-3.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=167&h=167&fit=crop&crop=entropy"/><link rel="apple-touch-icon" sizes="180x180" href="https://images.crazygames.com/favicons/manifest-icon-3.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=180&h=180&fit=crop&crop=entropy"/><link rel="mask-icon" href="https://images.crazygames.com/favicons/safari-pinned-tab.svg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR" color="#6842ff"/><link rel="icon" type="image/png" href="https://images.crazygames.com/favicons/ms-icon-2-310x310.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=32&h=32&fit=crop&crop=entropy" sizes="32x32"/><link rel="icon" type="image/png" href="https://images.crazygames.com/favicons/ms-icon-2-310x310.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=16&h=16&fit=crop&crop=entropy" sizes="16x16"/><link rel="shortcut icon" sizes="196x196" href="https://images.crazygames.com/favicons/ms-icon-2-310x310.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=196&h=196&fit=crop&crop=entropy"/><meta name="msapplication-TileColor" content="#603cba"/><meta name="msapplication-TileImage" content="https://images.crazygames.com/favicons/manifest-icon-3.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=144&h=144&fit=crop&crop=entropy"/><link rel="icon" type="image/x-icon" href="https://images.crazygames.com/favicons/favicon.ico?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=48&h=48&fit=crop&crop=entropy" sizes="48x48"/><meta property="og:url" content="https://www.crazygames.com/"/><meta property="og:title" content="CrazyGames - Free Online Games on CrazyGames.com"/><meta property="og:description" content="Play free online games at CrazyGames, the best place to play high-quality browser games. We add new games every day. Have fun!"/><meta property="og:locale" content="en_US"/><meta property="og:image" content="https://images.crazygames.com/crazygames/share.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=1200&h=630&fit=crop"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="twitter:card" content="summary_large_image"/><meta property="twitter:url" content="https://www.crazygames.com/"/><meta property="twitter:title" content="CrazyGames - Free Online Games on CrazyGames.com"/><meta property="twitter:description" content="Play free online games at CrazyGames, the best place to play high-quality browser games. We add new games every day. Have fun!"/><meta property="twitter:image" content="https://images.crazygames.com/crazygames/share.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=1200&h=630&fit=crop"/><meta name="next-head-count" content="60"/><link rel="preconnect" href="https://videos.crazygames.com/" crossorigin="anonymous"/><link rel="preconnect" href="https://workers.crazygames.com/" crossorigin="anonymous"/><link rel="preconnect" href="https://images.crazygames.com/" crossorigin="anonymous"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><link rel="preconnect" href="https://builds.crazygames.com" crossorigin="anonymous"/><style>.grecaptcha-badge { visibility: collapse !important; }</style><link rel="preload" as="image" href="/images/background2.jpg"/><meta name="wot-verification" content="93f0d04493fb0826d761"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /><noscript data-n-css=""></noscript><script defer="" nomodule="" src="https://builds.crazygames.com/portal/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script defer="" src="https://builds.crazygames.com/portal/_next/static/chunks/95278.d1b3dbf0d267c8e9.js"></script><script src="https://builds.crazygames.com/portal/_next/static/chunks/webpack-0fa667610543d934.js" defer=""></script><script src="https://builds.crazygames.com/portal/_next/static/chunks/framework-6a24ea55bfe2d3c0.js" defer=""></script><script src="https://builds.crazygames.com/portal/_next/static/chunks/main-f425c1ba2d046e04.js" defer=""></script><script src="https://builds.crazygames.com/portal/_next/static/chunks/pages/_app-d46237f94beb971e.js" defer=""></script><script src="https://builds.crazygames.com/portal/_next/static/chunks/77782-6019a937aa0993fa.js" defer=""></script><script src="https://builds.crazygames.com/portal/_next/static/chunks/10984-ff2604fb71e6ed5d.js" defer=""></script><script src="https://builds.crazygames.com/portal/_next/static/chunks/70690-36a0308504e44475.js" defer=""></script><script src="https://builds.crazygames.com/portal/_next/static/chunks/74842-f455e458c92ee155.js" defer=""></script><script src="https://builds.crazygames.com/portal/_next/static/chunks/47638-bbba67ec3f4ffdee.js" defer=""></script><script src="https://builds.crazygames.com/portal/_next/static/chunks/84340-6325a0a43adaffd9.js" defer=""></script><script src="https://builds.crazygames.com/portal/_next/static/chunks/22557-f81fdd65c0bcd05a.js" defer=""></script><script src="https://builds.crazygames.com/portal/_next/static/chunks/pages/games-5c6d5b14d254fc6e.js" defer=""></script><script src="https://builds.crazygames.com/portal/_next/static/1680509504/_buildManifest.js" defer=""></script><script src="https://builds.crazygames.com/portal/_next/static/1680509504/_ssgManifest.js" defer=""></script><style data-emotion="css-global b05075">html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;box-sizing:border-box;-webkit-text-size-adjust:100%;}*,*::before,*::after{box-sizing:inherit;}strong,b{font-weight:700;}body{margin:0;color:#F9FAFF;font-family:"Roboto","Helvetica","Arial",sans-serif;font-weight:400;font-size:1rem;line-height:1.5;letter-spacing:0.00938em;background-color:#0C0D14;}@media print{body{background-color:#fff;}}body::backdrop{background-color:#0C0D14;}@font-face{font-family:Nunito-fallback;size-adjust:101.44000000000005%;ascent-override:109%;src:local('Arial');}html{scrollbar-width:thin;scrollbar-color:#AAADBE;}html::-webkit-scrollbar{width:6px;height:6px;background:rgba(0,0,0,0);}html::-webkit-scrollbar-thumb{background:#AAADBE;border-radius:30px;}html::-webkit-scrollbar-corner{background:rgba(0,0,0,0);}body{overflow-y:overlay;font-size:14px;font-family:Nunito,Arial,"Helvetica Neue",Helvetica,sans-serif;}button{font-family:Nunito,Arial,"Helvetica Neue",Helvetica,sans-serif;}h1,h2,h3,h4,h5,h6{font-family:Nunito,Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:900;color:#fff;margin-block:0;}h1{font-size:24px;line-height:31px;}h2{font-size:1.2rem;}@media (max-width:1509.95px){h2{font-size:0.875rem;}}h3{font-family:Nunito,Arial,"Helvetica Neue",Helvetica,sans-serif;font-weight:900;color:#fff;}a{-webkit-text-decoration:none;text-decoration:none;color:#fff;}</style><style data-emotion="css-global animation-1nudq4e">@-webkit-keyframes animation-1nudq4e{50%{-webkit-transform:translateX(1.5px) rotate(2deg);-moz-transform:translateX(1.5px) rotate(2deg);-ms-transform:translateX(1.5px) rotate(2deg);transform:translateX(1.5px) rotate(2deg);}100%{-webkit-transform:translateX(-1.5px) rotate(-2deg);-moz-transform:translateX(-1.5px) rotate(-2deg);-ms-transform:translateX(-1.5px) rotate(-2deg);transform:translateX(-1.5px) rotate(-2deg);}}@keyframes animation-1nudq4e{50%{-webkit-transform:translateX(1.5px) rotate(2deg);-moz-transform:translateX(1.5px) rotate(2deg);-ms-transform:translateX(1.5px) rotate(2deg);transform:translateX(1.5px) rotate(2deg);}100%{-webkit-transform:translateX(-1.5px) rotate(-2deg);-moz-transform:translateX(-1.5px) rotate(-2deg);-ms-transform:translateX(-1.5px) rotate(-2deg);transform:translateX(-1.5px) rotate(-2deg);}}</style><style data-emotion="css-global animation-c7515d">@-webkit-keyframes animation-c7515d{0%{opacity:1;}50%{opacity:0.4;}100%{opacity:1;}}@keyframes animation-c7515d{0%{opacity:1;}50%{opacity:0.4;}100%{opacity:1;}}</style><style data-emotion="css 1f20jmh wqzt1m 6n1w7f 6qu7l6 2ug2n9 1vhz41m ps5k2i xgeqm6 vpjz3l 1sbqpkv b69bjh 22791k 1y0lbxl 1exdxkp 1upoo4v 1s73xoa 148wt6v 1hfy2mq wwwalv 6t4bsj linpkp 19dlbhf 1iuj5ih cydm8w x933z2 1nehx92 lpurl3 196mb08 1ajq493 nctlmm 15ovic2 1pzb6vf 1la1o8y 18689kv a60ex1 vc6kpq 41foc0 1xcs8fm 1lo4a7f ieoiqz 10n196v 26ldk7 1t3hjog 1te01zb 1edovc9 17r7lae 3hh4tu x4ble 1ietxlh">.css-1f20jmh{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;background:#0C0D14;position:relative;}.css-wqzt1m{z-index:11;position:fixed;background-image:none;background:rgba(33, 34, 51, 0.9);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);width:100%;top:0;left:auto;right:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;min-height:60px;box-shadow:0px 3px 3px -2px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 1px 8px 0px rgba(0,0,0,0.12);}.css-wqzt1m .MuiBackdrop-root{z-index:-1;}.css-6n1w7f{border-radius:30px;-webkit-transition:all 250ms ease;transition:all 250ms ease;border:none;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-family:Nunito;font-weight:800;font-size:16px;box-sizing:border-box;padding:0;background:transparent;color:#EFF0F7;height:48px;width:48px;margin-right:4px;}.css-6n1w7f:hover{color:#AAADBE;}.css-6n1w7f:active{color:rgba(170, 173, 190, 0.8);}.css-6n1w7f.Mui-disabled{background:#28293D;color:#474967;cursor:default;}.css-6n1w7f svg{height:24px;width:24px;}@media (max-width:388.95px){.css-6n1w7f{display:none;}}.css-6qu7l6{display:inline-block;fill:currentcolor;height:24px;width:24px;}.css-2ug2n9{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;margin:0px 8px;}.css-2ug2n9 svg{fill:white;height:100%;}.css-1vhz41m{height:35px;position:relative;margin-right:8px;}@media (hover: hover){.css-1vhz41m:hover{-webkit-animation-name:animation-1nudq4e;animation-name:animation-1nudq4e;-webkit-animation-duration:0.2s;animation-duration:0.2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;}}.css-ps5k2i{height:35px;padding-top:3px;}.css-xgeqm6{height:40px;-webkit-transition:all 0.1s ease-in-out;transition:all 0.1s ease-in-out;}.css-xgeqm6 .MuiAutocomplete-listbox{scrollbar-width:thin;scrollbar-color:#AAADBE;}.css-xgeqm6 .MuiAutocomplete-listbox::-webkit-scrollbar{width:7px;height:7px;background:rgba(0,0,0,0);}.css-xgeqm6 .MuiAutocomplete-listbox::-webkit-scrollbar-thumb{background:#AAADBE;border-radius:30px;}.css-xgeqm6 .MuiAutocomplete-listbox::-webkit-scrollbar-corner{background:rgba(0,0,0,0);}@media (min-width:1082px){.css-xgeqm6{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);}}.css-vpjz3l{border-radius:30px;-webkit-transition:all 250ms ease;transition:all 250ms ease;border:none;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-family:Nunito;font-weight:800;font-size:16px;box-sizing:border-box;padding:8px 16px;background:transparent;color:#EFF0F7;height:40px;}.css-vpjz3l:hover{color:#AAADBE;}.css-vpjz3l:active{color:rgba(170, 173, 190, 0.8);}.css-vpjz3l.Mui-disabled{background:#28293D;color:#474967;cursor:default;}.css-vpjz3l svg{height:20px;width:20px;margin-right:8px;}.css-1sbqpkv{position:absolute;inset:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}.css-1sbqpkv span{display:inline-block;width:10px;height:10px;margin-right:2px;background:#28293D;border-radius:50%;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);-webkit-animation:wave 1s infinite ease-in-out;animation:wave 1s infinite ease-in-out;}.css-1sbqpkv span:nth-child(1){-webkit-animation-delay:0s;animation-delay:0s;}.css-1sbqpkv span:nth-child(2){-webkit-animation-delay:0.1s;animation-delay:0.1s;}.css-1sbqpkv span:nth-child(3){-webkit-animation-delay:0.2s;animation-delay:0.2s;}@-webkit-keyframes wave{0%,60%,100%{background:#28293D;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);-moz-transform:translateY(0);}20%{background:#55566A;-webkit-transform:translateY(6px);-moz-transform:translateY(6px);-ms-transform:translateY(6px);transform:translateY(6px);-moz-transform:translateY(6px);}40%{background:#55566A;-webkit-transform:translateY(-6px);-moz-transform:translateY(-6px);-ms-transform:translateY(-6px);transform:translateY(-6px);-moz-transform:translateY(-6px);}}@keyframes wave{0%,60%,100%{background:#28293D;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);-moz-transform:translateY(0);}20%{background:#55566A;-webkit-transform:translateY(6px);-moz-transform:translateY(6px);-ms-transform:translateY(6px);transform:translateY(6px);-moz-transform:translateY(6px);}40%{background:#55566A;-webkit-transform:translateY(-6px);-moz-transform:translateY(-6px);-ms-transform:translateY(-6px);transform:translateY(-6px);-moz-transform:translateY(-6px);}}.css-b69bjh{border-radius:30px;-webkit-transition:all 250ms ease;transition:all 250ms ease;border:none;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-family:Nunito;font-weight:800;font-size:16px;box-sizing:border-box;padding:8px 16px;background:#6842FF;color:#F9FAFF;height:40px;}.css-b69bjh:hover{background:#8668FF;}.css-b69bjh:active{background:rgba(134, 104, 255, 0.7);}.css-b69bjh.Mui-disabled{background:#28293D;color:#474967;cursor:default;}.css-b69bjh svg{height:20px;width:20px;margin-right:8px;}.css-22791k{width:200px;-webkit-transition:visibility 0s,all 0.15s ease-in-out;transition:visibility 0s,all 0.15s ease-in-out;height:calc(100vh - 60px);background:#0C0D14;content-visibility:auto;z-index:3;position:fixed;top:60px;left:0;border-right:1px solid #28293D;}@media (min-width:1910px){.css-22791k{width:200px;}}.css-22791k:hover{width:200px;}@media (max-width:1909.95px){.css-22791k{width:60px;}.css-22791k:hover [class*='LabelContainer']{opacity:1;visibility:visible;}}.css-1y0lbxl{width:100%;height:calc(100% - 46px);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;padding-top:16px;padding-bottom:30px;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;overflow:auto;overflow-x:hidden;overflow-anchor:none;scrollbar-width:none;}.css-1y0lbxl::-webkit-scrollbar{width:0;height:0;}.css-1y0lbxl::-webkit-scrollbar-thumb{border-radius:30px;}.css-1y0lbxl:hover{scrollbar-width:thin;scrollbar-color:#AAADBE;}.css-1y0lbxl:hover::-webkit-scrollbar{width:3px;height:3px;background:rgba(0,0,0,0);}.css-1y0lbxl:hover::-webkit-scrollbar-thumb{background:#AAADBE;border-radius:30px;}.css-1y0lbxl:hover::-webkit-scrollbar-corner{background:rgba(0,0,0,0);}.css-1exdxkp{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex-wrap:nowrap;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;width:200px;height:34px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-left-width:6px;border-left-style:solid;border-left-color:transparent;}.css-1exdxkp svg{width:60px;height:34px;padding:0 19px;text-align:center;margin-left:-6px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#878A9E;}.css-1exdxkp .LabelContainer{-webkit-transition:visibility 0s,opacity 0.3s,all 0.2s ease-in-out;transition:visibility 0s,opacity 0.3s,all 0.2s ease-in-out;opacity:0;visibility:hidden;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:120px;}@media (min-width:1910px){.css-1exdxkp .LabelContainer{opacity:1;visibility:visible;}}.css-1exdxkp:active{color:#A48EFF;}.css-1exdxkp:active svg{color:#A48EFF;}@media (hover: hover){.css-1exdxkp{border-left-color:#A48EFF;}.css-1exdxkp:hover{color:rgb(204, 204, 204);}.css-1exdxkp:hover [class*='LabelContainer']{-webkit-transform:translate(8px, 0);-moz-transform:translate(8px, 0);-ms-transform:translate(8px, 0);transform:translate(8px, 0);}.css-1exdxkp [class*='LabelContainer']{-webkit-transform:none!important;-moz-transform:none!important;-ms-transform:none!important;transform:none!important;color:#A48EFF;}.css-1exdxkp svg{color:#A48EFF;}}.css-1upoo4v{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex-wrap:nowrap;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;width:200px;height:34px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-left-width:6px;border-left-style:solid;border-left-color:transparent;opacity:0.3;}.css-1upoo4v svg{width:60px;height:34px;padding:0 19px;text-align:center;margin-left:-6px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#878A9E;}.css-1upoo4v .LabelContainer{-webkit-transition:visibility 0s,opacity 0.3s,all 0.2s ease-in-out;transition:visibility 0s,opacity 0.3s,all 0.2s ease-in-out;opacity:0;visibility:hidden;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:120px;}@media (min-width:1910px){.css-1upoo4v .LabelContainer{opacity:1;visibility:visible;}}.css-1upoo4v:active{color:#A48EFF;}.css-1upoo4v:active svg{color:#A48EFF;}.css-1s73xoa{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex-wrap:nowrap;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;width:200px;height:34px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-left-width:6px;border-left-style:solid;border-left-color:transparent;}.css-1s73xoa svg{width:60px;height:34px;padding:0 19px;text-align:center;margin-left:-6px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#878A9E;}.css-1s73xoa .LabelContainer{-webkit-transition:visibility 0s,opacity 0.3s,all 0.2s ease-in-out;transition:visibility 0s,opacity 0.3s,all 0.2s ease-in-out;opacity:0;visibility:hidden;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:120px;}@media (min-width:1910px){.css-1s73xoa .LabelContainer{opacity:1;visibility:visible;}}.css-1s73xoa:active{color:#A48EFF;}.css-1s73xoa:active svg{color:#A48EFF;}@media (hover: hover){.css-1s73xoa:hover{cursor:pointer;color:rgb(204, 204, 204);}.css-1s73xoa:hover [class*='LabelContainer']{-webkit-transform:translate(8px, 0);-moz-transform:translate(8px, 0);-ms-transform:translate(8px, 0);transform:translate(8px, 0);}.css-1s73xoa:hover svg{color:rgb(108, 110, 126);}}.css-148wt6v{margin:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;border-width:0;border-style:solid;border-color:rgba(255, 255, 255, 0.12);border-bottom-width:thin;margin-top:8px;margin-bottom:8px;margin-left:16px;margin-right:16px;}.css-1hfy2mq{position:absolute;bottom:0;width:100%;height:46px;background:rgba(26, 27, 40, 0.6);-webkit-backdrop-filter:blur(12.5px);backdrop-filter:blur(12.5px);box-shadow:0px -1px 0px #28293D;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.css-wwwalv{z-index:-1;position:fixed;top:0;left:0;background-color:transparent;-webkit-transition:background-color 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;-webkit-tap-highlight-color:transparent;z-index:1198;}.css-6t4bsj{min-height:calc(100vh - 60px);padding-left:60px;margin-top:60px;}@media (min-width:1910px){.css-6t4bsj{padding-left:calc(200px)!important;}}.css-linpkp{position:fixed;left:0;right:0;z-index:-1;height:100vh;}.css-19dlbhf{position:absolute;overflow:hidden;bottom:0;left:0;right:0;top:0;width:100%;height:100%;background-image:url(/images/background2.jpg);background-repeat:repeat;}.css-1iuj5ih{padding-left:8px;}.css-cydm8w ul{padding:12px 8px;}.css-cydm8w li.primeCarouselLi,.css-cydm8w .skeleton{margin-right:4px;width:calc((100vw - 76px) / 1.1);height:calc(((((100vw - (76px)) / 1.25) - 4px) * 0.5617977528089888) + 4px);}@media (min-width:600px){.css-cydm8w li.primeCarouselLi,.css-cydm8w .skeleton{width:calc((100vw - 76px) / 1.6);height:calc(((((100vw - (76px)) / 1.6) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:800px){.css-cydm8w li.primeCarouselLi,.css-cydm8w .skeleton{width:calc((100vw - 76px) / 2.1);height:calc(((((100vw - (76px)) / 2.1) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1000px){.css-cydm8w li.primeCarouselLi,.css-cydm8w .skeleton{width:calc((100vw - 76px) / 2.6);height:calc(((((100vw - (76px)) / 2.6) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1200px){.css-cydm8w li.primeCarouselLi,.css-cydm8w .skeleton{width:calc((100vw - 76px) / 3.1);height:calc(((((100vw - (76px)) / 3.1) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1700px){.css-cydm8w li.primeCarouselLi,.css-cydm8w .skeleton{width:calc((100vw - 76px) / 3.6);height:calc(((((100vw - (76px)) / 3.6) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1910px){.css-cydm8w li.primeCarouselLi,.css-cydm8w .skeleton{width:calc((100vw - 216px) / 3.6);height:calc(((((100vw - (216px)) / 3.6) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:2100px){.css-cydm8w li.primeCarouselLi,.css-cydm8w .skeleton{width:calc((100vw - 216px) / 4.1);height:calc(((((100vw - (216px)) / 4.1) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:3000px){.css-cydm8w li.primeCarouselLi,.css-cydm8w .skeleton{width:calc((100vw - 216px) / 4.6);height:calc(((((100vw - (216px)) / 4.6) - 4px) * 0.5617977528089888) + 4px);}}.css-cydm8w .arrow{top:10px;height:calc(((((100vw - (76px)) / 1.1) - 4px) * 0.5617977528089888) + 4px);}@media (min-width:600px){.css-cydm8w .arrow{height:calc(((((100vw - (76px)) / 1.6) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:800px){.css-cydm8w .arrow{height:calc(((((100vw - (76px)) / 2.1) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1000px){.css-cydm8w .arrow{height:calc(((((100vw - (76px)) / 2.6) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1200px){.css-cydm8w .arrow{height:calc(((((100vw - (76px)) / 3.1) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1700px){.css-cydm8w .arrow{height:calc(((((100vw - (76px)) / 3.6) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1910px){.css-cydm8w .arrow{height:calc(((((100vw - (216px)) / 3.6) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:2100px){.css-cydm8w .arrow{height:calc(((((100vw - (216px)) / 4.1) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:3000px){.css-cydm8w .arrow{height:calc(((((100vw - (216px)) / 4.6) - 4px) * 0.5617977528089888) + 4px);}}.css-x933z2{padding-left:8px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;width:100%;margin-top:24px;}@media (max-width:1509.95px){.css-x933z2{padding-left:0!important;min-height:21px;}}.css-x933z2 .carouselTitle{-webkit-align-self:flex-end;-ms-flex-item-align:flex-end;align-self:flex-end;padding-right:16px;padding-bottom:3px;}@media (max-width:1509.95px){.css-x933z2 .carouselTitle{line-height:1!important;padding-left:12px;}}.css-x933z2 .carouselTitleLink{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;padding:0;z-index:2;text-transform:none;line-height:1!important;-webkit-text-decoration:none;text-decoration:none;color:#A48EFF;font-weight:700;}.css-x933z2 .carouselTitleLink:hover{color:#6842FF;}@media (max-width:1509.95px){.css-x933z2 .carouselTitleLink{margin-bottom:-2px;font-size:12px;}.css-x933z2 .carouselTitleLink:hover{background-color:transparent!important;}}.css-1nehx92{position:relative;overflow-y:hidden;z-index:2;}@media (hover: hover){.css-1nehx92:hover .arrow{opacity:1;}}.css-lpurl3{margin-block-end:0;padding:10px 8px;overflow:hidden;overflow-x:scroll;width:100%;white-space:nowrap;list-style:none;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);scroll-padding:50px 50px 50px 50px;-ms-overflow-style:none;scrollbar-width:none;margin:0;}.css-lpurl3::-webkit-scrollbar{display:none;}.css-lpurl3 li.primeCarouselLi{list-style:none;display:inline-block;box-sizing:border-box;scroll-snap-align:center;vertical-align:middle;position:relative;}.css-196mb08{border-radius:calc(8px + 2px);border-width:2px;border-style:solid;border-color:transparent;box-sizing:border-box;display:block;position:relative;contain:layout;z-index:0;-webkit-transition:-webkit-transform .1s cubic-bezier(.5, 0, .1, 1);transition:transform .1s cubic-bezier(.5, 0, .1, 1);transition-delay:0s;background-color:rgba(255,255,255,0.07);-webkit-background-clip:padding-box;background-clip:padding-box;margin-left:0;margin-top:0;width:100%;height:100%;}.css-196mb08 .skeleton{top:0!important;}.css-196mb08 .GameThumbImage{-webkit-transition:opacity .3s cubic-bezier(.5, 0, .1, 1);transition:opacity .3s cubic-bezier(.5, 0, .1, 1);transition-delay:0ms;z-index:1;border-radius:8px;position:absolute;bottom:0;width:100%;height:100%;color:transparent;}.css-196mb08 .gameThumbTitleContainer{color:#FFFFFF;position:absolute;bottom:5px;margin-bottom:8px;margin-left:8px;z-index:4;font-size:11.2px;font-weight:700;width:0;height:0;overflow:hidden;}.css-1ajq493{display:grid;height:100%;width:100%;grid-template-columns:repeat(2, 1fr);grid-template-rows:repeat(2, 1fr);grid-gap:4px 4px;}.css-nctlmm{display:block;background-color:rgba(249, 250, 255, 0.13);height:1.2em;-webkit-animation:animation-c7515d 1.5s ease-in-out 0.5s infinite;animation:animation-c7515d 1.5s ease-in-out 0.5s infinite;position:relative;border-radius:8px;margin-left:2px;margin-right:2px;}.css-15ovic2{display:block;background-color:rgba(249, 250, 255, 0.13);height:1.2em;-webkit-animation:animation-c7515d 1.5s ease-in-out 0.5s infinite;animation:animation-c7515d 1.5s ease-in-out 0.5s infinite;position:relative;border-radius:8px;box-sizing:content-box;margin-left:2px;margin-right:2px;}.css-1pzb6vf{height:calc(100px + 4px);top:10px;-webkit-background-position:50%;background-position:50%;background-repeat:no-repeat;width:50px;color:transparent;border:0;position:absolute;z-index:1;outline-color:initial;outline-style:none;outline-width:0;opacity:0;border-radius:0;-webkit-transition:opacity .25s ease,background-color .25s ease;transition:opacity .25s ease,background-color .25s ease;background-color:rgba(0,0,0,.7);background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0Ljc2MyAxNy4yMzd2LTIuNDc0bC0xNCAxNGExLjc0OCAxLjc0OCAwIDAwMCAyLjQ3NGMuNjgzLjY4NCAxLjc5LjY4NCAyLjQ3NCAwbDE0LTE0YTEuNzQ4IDEuNzQ4IDAgMDAwLTIuNDc0bC0xNC0xNEExLjc1IDEuNzUgMCAwMC43NjMgMy4yMzdsMTQgMTR6IiBmaWxsPSIjRUZGMUYxIi8+PC9zdmc+);right:0px;}.css-1pzb6vf:hover{background-color:rgba(0,0,0,.9);cursor:pointer;}.css-1la1o8y{padding:0;margin:0;content-visibility:auto;contain-intrinsic-size:171px;contain:layout paint;padding-left:0;overflow:hidden;margin-top:4px;position:relative;}@media (max-width:1509.95px){.css-1la1o8y{padding-bottom:8px;margin-bottom:-4px;}}.css-1la1o8y li.primeCarouselLi,.css-1la1o8y .skeleton{margin-right:4px;width:calc((100vw - 76px) / 2.25);height:calc(((((100vw - (76px)) / 2.25) - 4px) * 0.5617977528089888) + 4px);}@media (min-width:600px){.css-1la1o8y li.primeCarouselLi,.css-1la1o8y .skeleton{width:calc((100vw - 76px) / 3.25);height:calc(((((100vw - (76px)) / 3.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:800px){.css-1la1o8y li.primeCarouselLi,.css-1la1o8y .skeleton{width:calc((100vw - 76px) / 4.25);height:calc(((((100vw - (76px)) / 4.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1000px){.css-1la1o8y li.primeCarouselLi,.css-1la1o8y .skeleton{width:calc((100vw - 76px) / 5.25);height:calc(((((100vw - (76px)) / 5.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1200px){.css-1la1o8y li.primeCarouselLi,.css-1la1o8y .skeleton{width:calc((100vw - 76px) / 6.25);height:calc(((((100vw - (76px)) / 6.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1700px){.css-1la1o8y li.primeCarouselLi,.css-1la1o8y .skeleton{width:calc((100vw - 76px) / 7.25);height:calc(((((100vw - (76px)) / 7.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1910px){.css-1la1o8y li.primeCarouselLi,.css-1la1o8y .skeleton{width:calc((100vw - 216px) / 7.25);height:calc(((((100vw - (216px)) / 7.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:2100px){.css-1la1o8y li.primeCarouselLi,.css-1la1o8y .skeleton{width:calc((100vw - 216px) / 8.25);height:calc(((((100vw - (216px)) / 8.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:3000px){.css-1la1o8y li.primeCarouselLi,.css-1la1o8y .skeleton{width:calc((100vw - 216px) / 9.25);height:calc(((((100vw - (216px)) / 9.25) - 4px) * 0.5617977528089888) + 4px);}}.css-1la1o8y .arrow{height:calc(((((100vw - (76px)) / 2.25) - 4px) * 0.5617977528089888) + 4px);}@media (min-width:600px){.css-1la1o8y .arrow{height:calc(((((100vw - (76px)) / 3.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:800px){.css-1la1o8y .arrow{height:calc(((((100vw - (76px)) / 4.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1000px){.css-1la1o8y .arrow{height:calc(((((100vw - (76px)) / 5.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1200px){.css-1la1o8y .arrow{height:calc(((((100vw - (76px)) / 6.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1700px){.css-1la1o8y .arrow{height:calc(((((100vw - (76px)) / 7.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1910px){.css-1la1o8y .arrow{height:calc(((((100vw - (216px)) / 7.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:2100px){.css-1la1o8y .arrow{height:calc(((((100vw - (216px)) / 8.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:3000px){.css-1la1o8y .arrow{height:calc(((((100vw - (216px)) / 9.25) - 4px) * 0.5617977528089888) + 4px);}}.css-18689kv{padding-left:8px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;width:100%;}@media (max-width:1509.95px){.css-18689kv{padding-left:0!important;min-height:21px;}}.css-18689kv .carouselTitle{-webkit-align-self:flex-end;-ms-flex-item-align:flex-end;align-self:flex-end;padding-right:16px;padding-bottom:3px;}@media (max-width:1509.95px){.css-18689kv .carouselTitle{line-height:1!important;padding-left:12px;}}.css-18689kv .carouselTitleLink{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;padding:0;z-index:2;text-transform:none;line-height:1!important;-webkit-text-decoration:none;text-decoration:none;color:#A48EFF;font-weight:700;}.css-18689kv .carouselTitleLink:hover{color:#6842FF;}@media (max-width:1509.95px){.css-18689kv .carouselTitleLink{margin-bottom:-2px;font-size:12px;}.css-18689kv .carouselTitleLink:hover{background-color:transparent!important;}}.css-a60ex1{display:block;background-color:rgba(249, 250, 255, 0.13);height:1.2em;-webkit-animation:animation-c7515d 1.5s ease-in-out 0.5s infinite;animation:animation-c7515d 1.5s ease-in-out 0.5s infinite;position:relative;border-radius:8px;}.css-vc6kpq{padding:0;margin:0;content-visibility:auto;contain-intrinsic-size:171px;contain:layout paint;padding-left:0;overflow:hidden;margin-top:4px;position:relative;padding-top:31.8px;overflow-anchor:none;}@media (max-width:1509.95px){.css-vc6kpq{padding-bottom:8px;margin-bottom:-4px;}}.css-vc6kpq li.primeCarouselLi,.css-vc6kpq .skeleton{margin-right:4px;width:calc((100vw - 76px) / 2.25);height:calc(((((100vw - (76px)) / 2.25) - 4px) * 0.5617977528089888) + 4px);}@media (min-width:600px){.css-vc6kpq li.primeCarouselLi,.css-vc6kpq .skeleton{width:calc((100vw - 76px) / 3.25);height:calc(((((100vw - (76px)) / 3.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:800px){.css-vc6kpq li.primeCarouselLi,.css-vc6kpq .skeleton{width:calc((100vw - 76px) / 4.25);height:calc(((((100vw - (76px)) / 4.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1000px){.css-vc6kpq li.primeCarouselLi,.css-vc6kpq .skeleton{width:calc((100vw - 76px) / 5.25);height:calc(((((100vw - (76px)) / 5.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1200px){.css-vc6kpq li.primeCarouselLi,.css-vc6kpq .skeleton{width:calc((100vw - 76px) / 6.25);height:calc(((((100vw - (76px)) / 6.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1700px){.css-vc6kpq li.primeCarouselLi,.css-vc6kpq .skeleton{width:calc((100vw - 76px) / 7.25);height:calc(((((100vw - (76px)) / 7.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1910px){.css-vc6kpq li.primeCarouselLi,.css-vc6kpq .skeleton{width:calc((100vw - 216px) / 7.25);height:calc(((((100vw - (216px)) / 7.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:2100px){.css-vc6kpq li.primeCarouselLi,.css-vc6kpq .skeleton{width:calc((100vw - 216px) / 8.25);height:calc(((((100vw - (216px)) / 8.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:3000px){.css-vc6kpq li.primeCarouselLi,.css-vc6kpq .skeleton{width:calc((100vw - 216px) / 9.25);height:calc(((((100vw - (216px)) / 9.25) - 4px) * 0.5617977528089888) + 4px);}}.css-vc6kpq .arrow{height:calc(((((100vw - (76px)) / 2.25) - 4px) * 0.5617977528089888) + 4px);}@media (min-width:600px){.css-vc6kpq .arrow{height:calc(((((100vw - (76px)) / 3.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:800px){.css-vc6kpq .arrow{height:calc(((((100vw - (76px)) / 4.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1000px){.css-vc6kpq .arrow{height:calc(((((100vw - (76px)) / 5.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1200px){.css-vc6kpq .arrow{height:calc(((((100vw - (76px)) / 6.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1700px){.css-vc6kpq .arrow{height:calc(((((100vw - (76px)) / 7.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:1910px){.css-vc6kpq .arrow{height:calc(((((100vw - (216px)) / 7.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:2100px){.css-vc6kpq .arrow{height:calc(((((100vw - (216px)) / 8.25) - 4px) * 0.5617977528089888) + 4px);}}@media (min-width:3000px){.css-vc6kpq .arrow{height:calc(((((100vw - (216px)) / 9.25) - 4px) * 0.5617977528089888) + 4px);}}.css-41foc0{margin:16px;content-visibility:auto;contain:layout paint;contain-intrinsic-size:400px;overflow-anchor:none;border-radius:10px;background-color:#13141E;height:250px;position:relative;color:#AAADBE;font-size:16px;}.css-41foc0 h2,.css-41foc0 h3{color:#E5E6EE;font-weight:800;font-size:16px;}.css-41foc0 p{color:#AAADBE;font-size:16px;}.css-41foc0 a{-webkit-text-decoration:none;text-decoration:none;color:#A48EFF;font-weight:700;}.css-41foc0 a:hover{color:#6842FF;}.css-1xcs8fm{height:100%;overflow-x:hidden;overflow-y:auto;padding:30px;scrollbar-width:thin;scrollbar-color:#AAADBE;padding-bottom:60px;}.css-1xcs8fm::-webkit-scrollbar{width:4px;height:4px;background:rgba(0,0,0,0);}.css-1xcs8fm::-webkit-scrollbar-thumb{background:#AAADBE;border-radius:30px;}.css-1xcs8fm::-webkit-scrollbar-corner{background:rgba(0,0,0,0);}.css-1lo4a7f{position:absolute;bottom:0;left:0;right:4px;background:linear-gradient(180deg, rgba(19, 20, 30, 0) 0%, #13141E 35.42%);height:80px;padding-top:40px;padding-left:30px;}.css-ieoiqz{cursor:pointer;-webkit-text-decoration:none;text-decoration:none;color:#A48EFF;font-weight:700;}.css-ieoiqz:hover{color:#6842FF;}.css-10n196v{padding:8px;min-height:80px;font-size:14px;content-visibility:auto;contain:layout paint;contain-intrinsic-size:0px 32px;width:100%;height:100%;box-shadow:0px -1px 0px #1a1b28;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;overflow-anchor:none;}@media (max-width:1909.95px){.css-10n196v{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}}.css-26ldk7{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}@media (min-width:1910px){.css-26ldk7{margin-left:12px;margin-right:12px;}}@media (max-width:1909.95px){.css-26ldk7{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;margin-bottom:8px;margin-top:8px;}}@media (max-width:469.95px){.css-26ldk7{-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;row-gap:8px;}}.css-1t3hjog{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;margin:0px 8px;width:110px;}.css-1t3hjog svg{fill:white;height:100%;}.css-1te01zb{height:35px;margin-right:8px;}.css-1edovc9{border-radius:30px;-webkit-transition:all 250ms ease;transition:all 250ms ease;border:1px solid #878A9E;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-family:Nunito;font-weight:800;font-size:16px;box-sizing:border-box;padding:8px 16px;background:transparent;color:#EFF0F7;height:40px;margin-right:4px;margin-left:4px;border-width:2px;border-color:#2F3148;height:35px;min-width:35px;width:35px;}.css-1edovc9:hover{color:#AAADBE;}.css-1edovc9:active{border-color:rgba(135, 138, 158, 0.7);}.css-1edovc9.Mui-disabled{background:#28293D;color:#474967;cursor:default;}.css-1edovc9 svg{height:20px;width:20px;margin-right:8px;}.css-1edovc9:hover{border-width:2px;border-color:#6842FF;}.css-1edovc9 svg{margin-right:0;}.css-17r7lae{display:inline-block;fill:currentcolor;height:24px;width:24px;min-width:15px;width:15px;height:15px;}.css-3hh4tu{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:end;justify-content:end;width:inherit;}@media (min-width:1910px){.css-3hh4tu{margin-left:12px;margin-right:12px;}}@media (max-width:1909.95px){.css-3hh4tu{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;margin-bottom:8px;margin-top:8px;}}.css-x4ble{color:#878A9E;-webkit-text-decoration:none;text-decoration:none;margin:0 10px;cursor:pointer;margin-bottom:2px;margin-top:2px;}.css-x4ble:hover{opacity:0.8;}.css-1ietxlh{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}@media (min-width:1910px){.css-1ietxlh{margin-left:12px;margin-right:12px;}}@media (max-width:1909.95px){.css-1ietxlh{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;margin-bottom:8px;margin-top:8px;}}</style><style data-href="https://fonts.googleapis.com/css2?display=swap&family=Nunito:wght@400;600;700;800;900">@font-face{font-family:'Nunito';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTA.woff) format('woff')}@font-face{font-family:'Nunito';font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTA.woff) format('woff')}@font-face{font-family:'Nunito';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTA.woff) format('woff')}@font-face{font-family:'Nunito';font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTA.woff) format('woff')}@font-face{font-family:'Nunito';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTA.woff) format('woff')}@font-face{font-family:'Nunito';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOOaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Nunito';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIMeaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Nunito';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOuaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Nunito';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2) format('woff2');unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Nunito';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofINeaBTMnFcQ.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Nunito';font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOOaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Nunito';font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIMeaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Nunito';font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOuaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Nunito';font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2) format('woff2');unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Nunito';font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofINeaBTMnFcQ.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Nunito';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOOaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Nunito';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIMeaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Nunito';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOuaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Nunito';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2) format('woff2');unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Nunito';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofINeaBTMnFcQ.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Nunito';font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOOaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Nunito';font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIMeaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Nunito';font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOuaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Nunito';font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2) format('woff2');unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Nunito';font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofINeaBTMnFcQ.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Nunito';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOOaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Nunito';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIMeaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Nunito';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIOuaBTMnFcQIG.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Nunito';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2) format('woff2');unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Nunito';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/nunito/v25/XRXV3I6Li01BKofINeaBTMnFcQ.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}</style></head><body dir="ltr"><div id="__next"><div style="pointer-events:auto" class="css-1f20jmh"><header id="czyHeader" class="css-wqzt1m"><div style="display:flex;flex-direction:row;padding-left:8px;align-items:center"><button aria-label="Open/Close sidebar" class="MuiButton-root css-6n1w7f"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" d="M19 4C19.5523 4 20 3.55229 20 3C20 2.44772 19.5523 2 19 2L3 2C2.44772 2 2 2.44772 2 3C2 3.55228 2.44772 4 3 4L19 4ZM20.47 7.95628L15.3568 11.152C14.7301 11.5437 14.7301 12.4564 15.3568 12.848L20.47 16.0438C21.136 16.4601 22 15.9812 22 15.1958V8.80427C22 8.01884 21.136 7.54 20.47 7.95628ZM11 13C11.5523 13 12 12.5523 12 12C12 11.4477 11.5523 11 11 11L3 11C2.44771 11 2 11.4477 2 12C2 12.5523 2.44771 13 3 13L11 13ZM20 21C20 21.5523 19.5523 22 19 22L3 22C2.44771 22 2 21.5523 2 21C2 20.4477 2.44771 20 3 20L19 20C19.5523 20 20 20.4477 20 21Z"></path></svg></button><a href="https://www.crazygames.com/"><div class="css-2ug2n9"><div class="css-1vhz41m"><svg viewBox="0 0 62 70" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Logo CrazyGames.com</title><defs></defs><defs><path id="ziggyPath" d="M.0048.1308h18.9714v15.7638H.0048z"></path></defs><g fill="none" fill-rule="evenodd"><path d="M15.7344 15.0195C18.9941 12.3113 23.9963 11 31 11C38.0037 11 43.0059 12.3218 46.266 15.0195C50.1173 18.2116 52 23.7677 52 32.0002C52 49.4319 43.6085 53 31 53C18.3915 53 10 49.4319 10 32.0002C10 23.7785 11.8722 18.2116 15.7344 15.0195Z" fill="white"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M44.627 7.13337C44.627 7.13337 52.9646 -2.4781 55.644 0.612441C60.2225 5.90326 58.813 21.8557 58.813 21.8557" fill="#6842FF"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M16.5255 7.13337C16.5255 7.13337 8.18781 -2.4781 5.5085 0.612441C0.929965 5.90326 2.33944 21.8557 2.33944 21.8557" fill="#6842FF"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M25.9261 62.3626C18.976 61.7696 13.5263 59.7776 9.34705 56.3311C3.14925 51.1998 0 42.9987 0 31.9271C0 20.9156 3.13918 12.7341 9.33731 7.59338C14.4257 3.37247 21.3741 1.31256 30.5711 1.31256C39.7684 1.31256 46.7064 3.36273 51.8052 7.59338C58.0033 12.7341 61.1422 20.9254 61.1422 31.9271C61.1422 36.0107 60.7138 39.7038 59.862 42.9958C59.4452 45.0421 58.8574 47.0566 58.0753 48.9979C55.9358 54.3687 52.3367 59.1897 47.7585 62.7702C45.4491 64.5305 42.8997 65.9806 40.2305 67.0908C37.5515 68.201 34.7621 69.0009 31.923 69.4311C29.0839 69.8811 26.2146 70.0413 23.3654 69.9913L21.2359 69.871C20.8761 69.8512 20.5263 69.8214 20.1762 69.7814L19.1169 69.6612C18.1261 69.5775 17.1502 69.4159 16.1752 69.2544C15.753 69.1844 15.3309 69.1145 14.9079 69.051C14.628 69.011 14.438 68.741 14.488 68.4609C14.5078 68.3112 14.6078 68.1809 14.7179 68.101L15.0979 67.9008C16.1893 67.2272 17.2258 66.7044 18.2317 66.1969C18.6446 65.9887 19.0523 65.783 19.4566 65.5706L23.4054 63.6201C23.9635 63.3298 24.5136 63.0594 25.0522 62.7947C25.3471 62.6498 25.6386 62.5065 25.9261 62.3626ZM16.3854 16.1245C19.4144 13.6042 24.0628 12.3838 30.5711 12.3838C37.0794 12.3838 41.7277 13.6139 44.7572 16.1245C48.3361 19.0952 50.0856 24.2658 50.0856 31.9271C50.0856 48.1495 42.2876 51.4701 30.5711 51.4701C18.8545 51.4701 11.0566 48.1495 11.0566 31.9271C11.0566 24.2758 12.7964 19.0952 16.3854 16.1245Z" fill="#6842FF"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M42.7773 60.9916C39.2384 62.0319 35.1899 62.5518 30.561 62.5518C28.9414 62.5518 27.4121 62.4816 25.9425 62.3617C25.1225 62.7721 24.2729 63.172 23.4032 63.6422L20.8538 64.9025C22.1035 64.9824 23.3834 65.0321 24.7328 65.0321C32.1507 65.0321 38.0887 63.702 42.7773 60.9916Z" fill="#3E2899"></path><path d="M19.4248 35.8107C19.4248 38.0537 21.2589 39.8882 23.5005 39.8882C25.7421 39.8882 27.5762 38.0537 27.5762 35.8107V31.0121C27.465 31.0236 27.3522 31.0295 27.238 31.0295C25.4401 31.0295 23.9827 29.5714 23.9827 27.7731C23.9827 26.3125 24.9437 25.0765 26.2677 24.6634C25.5396 23.9875 24.5661 23.5728 23.5005 23.5728C21.2589 23.5728 19.4248 25.4077 19.4248 27.6503V35.8107Z" fill="#6842FF"></path><path d="M32.8452 35.8107C32.8452 38.0537 34.6793 39.8882 36.9209 39.8882C39.1625 39.8882 40.9966 38.0537 40.9966 35.8107V30.7009C40.8384 30.7245 40.6765 30.7367 40.5118 30.7367C38.7136 30.7367 37.2561 29.2786 37.2561 27.4803C37.2561 26.0726 38.1489 24.8735 39.399 24.4187C38.7111 23.8888 37.8511 23.5728 36.9209 23.5728C34.6793 23.5728 32.8452 25.4077 32.8452 27.6503V35.8107Z" fill="#6842FF"></path></g></svg></div><div class="css-ps5k2i"><svg viewBox="0 0 55 28" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs></defs><defs><path id="logoPath" d="M.1532.0123h7.747v9.6358H.1532z"></path></defs><g fill="none" fill-rule="evenodd"><path fill="#FFF" d="M3.4204 4.9798c0 .5003.165.8886.4943 1.1648.3292.2768.6792.4147 1.05.4147.3705 0 .7173-.1088 1.0414-.3266.3234-.2175.5851-.3264.7851-.3264.3532 0 .7826.3119 1.2882.9353.2708.3415.406.6473.406.9177 0 .4473-.3237.8648-.9707 1.253-.6705.4707-1.4941.706-2.4704.706-1.0943 0-2.1473-.394-3.1589-1.1823-.4825-.3767-.8768-.8797-1.1826-1.5092-.306-.6292-.4587-1.3235-.4587-2.0823 0-.7588.1528-1.447.4587-2.0648.3058-.6175.7-1.1145 1.1826-1.4913C2.8614.612 3.9028.2237 5.0088.2237c.4468 0 .8824.0619 1.306.1853.4234.1236.7352.2442.9356.3619l.2821.1764c.2117.1413.3764.253.4943.3353.3058.2354.4586.5028.4586.803 0 .3-.1235.6382-.3703 1.0146-.424.6472-.8296.9707-1.218.9707-.2235 0-.541-.1292-.9527-.3882-.212-.2-.515-.3-.909-.3-.3945 0-.7618.1411-1.1032.4235-.3413.2823-.5118.6736-.5118 1.1736M15.9503.4355c.2236.0704.4087.1915.5562.3617.1468.1709.2204.4443.2204.8207s-.1117.7883-.3351 1.2354c-.2236.447-.547.6704-.9705.6704a1.3814 1.3814 0 01-.6092-.1408c-.194-.0943-.45-.1413-.7677-.1413-.3174 0-.6149.1119-.891.3351-.2767.2238-.4148.4941-.4148.8118v3.7063c0 .2706-.0089.4734-.0264.6088-.0178.1355-.0738.291-.1678.4674-.1766.306-.6352.459-1.3765.459-.5647 0-.9707-.0998-1.2177-.3-.1881-.1645-.2945-.4175-.3179-.7588V1.865c0-.2704.0092-.4734.0266-.6087.0179-.1351.0679-.2852.15-.4502.1647-.3175.6235-.4765 1.3769-.4765.7056 0 1.147.1354 1.3233.406.1293.1883.194.3824.194.5822.0591-.0822.1439-.1822.2562-.2998.1115-.1175.3498-.2764.7145-.4766.3645-.1998.6851-.3.9617-.3.2766 0 .5088.015.6975.0442.188.0296.3939.0794.6173.15M19.9918 4.9887c0 .3882.1528.7384.459 1.0499.3055.312.6764.4675 1.1115.4675.4351 0 .797-.1586 1.0856-.4764.2883-.3175.432-.6675.432-1.0499 0-.3823-.1382-.7383-.4146-1.0679-.2766-.329-.647-.494-1.1117-.494-.465 0-.8413.165-1.1294.494-.2883.3296-.4324.6885-.4324 1.0768m3.2119-3.671c.0706-.6585.5351-.9881 1.394-.9881.459 0 .8.0351 1.0235.106.2235.0704.3794.194.468.3704.088.1766.141.3328.1588.4677.0175.1353.0262.3383.0262.609v6.1768c0 .2705-.0087.4735-.0262.6086-.0178.1355-.068.2913-.1504.4677-.1646.3061-.5672.459-1.2085.459-.6413 0-1.071-.0797-1.2884-.2382-.2177-.159-.3443-.391-.3794-.6972-.4355.6238-1.1621.9353-2.1795.9353-1.0177 0-1.9622-.4647-2.8324-1.3941-.871-.9294-1.306-2.009-1.306-3.2384 0-1.2293.4383-2.306 1.3147-3.2296.8766-.9234 1.8382-1.3855 2.8857-1.3855.3998 0 .7645.0708 1.094.2119.329.1412.5588.2736.6884.3972.129.1234.235.244.3175.3615M32.3273 6.524h3.0178c.4704 0 .809.059 1.0147.1764.2056.1177.3445.2885.4147.512.071.2235.106.5176.106.8823s-.035.659-.106.8822c-.0702.2236-.1938.3796-.3704.4679-.1766.088-.3326.141-.468.1587-.135.0175-.338.0264-.6085.0264h-6.371c-.412 0-.7708-.1528-1.0764-.4588-.3061-.3055-.4587-.6706-.4587-1.094 0-.4239.1526-.7854.4587-1.0856.3056-.2998.7765-.7322 1.4116-1.2971a306.9736 306.9736 0 011.7297-1.5263c.5177-.4528.7998-.703.847-.7502h-2.4884c-.6703 0-1.0939-.1115-1.2705-.3353-.2004-.2586-.3-.6-.3-1.0235 0-.4236.0294-.7383.0885-.9441.0587-.2058.129-.359.2115-.459.0824-.0998.1998-.1791.3526-.238.2-.0588.5062-.0885.918-.0885h5.7357c.4117 0 .7705.1474 1.0764.4414.3058.2941.4588.6618.4588 1.1029 0 .441-.1766.8324-.5296 1.1736-.3526.3413-1.6177 1.5-3.7942 3.4766M42.1573 9.5947c-1.1885 0-2.1737-.4502-2.9559-1.35-.7826-.9001-1.1738-1.997-1.1738-3.2915V1.865c0-.2824.0089-.4882.0263-.6175.0179-.1296.0679-.2824.15-.459.165-.3175.6237-.4764 1.3771-.4764.8229 0 1.3056.2236 1.4469.6705.0702.1883.106.4883.106.9V4.971c0 .4825.1379.859.4149 1.1296.276.2708.6462.4058 1.1115.4058.4647 0 .8407-.1411 1.1296-.4235.2877-.2823.432-.653.432-1.112V1.8474c0-.2704.0091-.4734.0266-.6088.0178-.135.0734-.2912.1678-.4676.1526-.306.6058-.4588 1.3586-.4588.7414 0 1.1943.159 1.359.4764.0822.1766.1322.3326.15.4677.0179.1353.0266.3383.0266.6088v6.2473c0 .176-.0041.3234-.0123.4423-.0037.056.0123 2.7697-.0143 3.1584-.0093.1362-.0734.2854-.1678.4499-.1764.3061-.6294.4591-1.3584.4591-.718 0-1.1592-.1415-1.3239-.4238-.0944-.16-.1508-.3465-.1696-.5594-.0046-.0531-.007-3.1172-.007-3.1735-.0468.0823-.153.2-.3175.353-.165.153-.3236.2821-.4764.3883-.4004.259-.8355.388-1.306.388M3.2617 17.8497c0 .3824.15.7265.4503 1.0324.2998.306.664.459 1.094.459.4292 0 .7852-.1562 1.0674-.4679.2827-.3115.424-.6528.424-1.0235 0-.3706-.1357-.7174-.4062-1.0413-.2706-.3234-.6351-.4853-1.0943-.4853-.4585 0-.8294.1587-1.1115.4764-.2822.318-.4237.668-.4237 1.0502zm3.1413 3.609c-.4473.5883-1.159.8823-2.1353.8823-.9768 0-1.8915-.45-2.7445-1.35-.853-.9-1.279-1.95-1.279-3.1502 0-1.2.4291-2.2527 1.288-3.1589.8587-.9058 1.8-1.3588 2.8236-1.3588.3999 0 .7646.0737 1.0941.2207.3294.147.5562.2823.6796.4058.1234.1234.2203.2383.2913.344.0353-.3292.1556-.5794.3617-.7498.2056-.1707.5382-.256.9971-.256.459 0 .794.0353 1.0058.1058.2117.0706.3617.1915.45.3617.0883.1708.1413.3207.1592.45.0174.1298.0262.3296.0262.6v7.3064c0 1.3528-.4705 2.4443-1.4118 3.2737-.9411.8294-2.0003 1.2441-3.1768 1.2441-.8938 0-1.747-.2178-2.5586-.653-.812-.4353-1.2177-.8296-1.2177-1.1824 0-.4587.1764-.8645.5296-1.2177.223-.2472.3968-.4177.5204-.5117.1234-.0943.2673-.1413.4324-.1413.1645 0 .3353.0706.512.2117.5644.4352 1.1758.653 1.835.653.447 0 .8115-.1764 1.0942-.5292.2822-.3532.4235-.7766.4235-1.2709v-.5294zM13.656 17.9821c0 .3883.1528.7385.4592 1.05.3056.3118.6762.4675 1.1117.4675.4352 0 .7971-.1585 1.0852-.4764.2883-.3177.4324-.6675.4324-1.05 0-.3822-.1385-.7384-.4145-1.0677-.2766-.3292-.6475-.4941-1.1118-.4941-.4653 0-.8417.1649-1.1294.494-.2887.3294-.4328.6886-.4328 1.0767m3.2121-3.6708c.0704-.6586.5353-.9882 1.3943-.9882.4586 0 .7998.0352 1.0235.1058.2234.0706.3794.194.4677.3707.0882.1766.1408.3325.1587.4674.0178.1356.0266.3385.0266.609v6.1769c0 .2706-.0088.4736-.0266.6087-.0179.1354-.0679.2913-.15.4677-.1647.306-.5677.459-1.209.459-.6413 0-1.0705-.0798-1.2884-.2383-.2176-.159-.3438-.3911-.3793-.6971-.4352.6236-1.1618.9354-2.1795.9354s-1.9618-.465-2.8325-1.3943c-.8709-.9295-1.3056-2.009-1.3056-3.2385 0-1.2292.438-2.3057 1.3145-3.2295.8765-.9233 1.8384-1.3854 2.8855-1.3854.3998 0 .7645.0706 1.0941.2117.3292.1415.5588.2738.6883.3973.1294.1234.2352.2442.3177.3617M24.386 14.5583c.5526-.8351 1.2179-1.2528 1.9943-1.2528 1.2 0 2.094.5117 2.6825 1.5354.1291-.1766.2849-.3617.4674-.556.1826-.194.4735-.4062.8737-.6353.3998-.2294.8117-.3441 1.2354-.3441.941 0 1.7294.3617 2.3646 1.0852.6355.7236.9528 1.9209.9528 3.5914v3.0883c0 .271-.0087.4738-.0264.609-.0173.1352-.0734.291-.1675.4676-.153.3177-.606.4764-1.359.4764-.7413 0-1.194-.1647-1.3586-.494-.0825-.1765-.1325-.3326-.15-.4677-.0178-.1352-.0266-.3382-.0266-.609v-3.0884c0-1.0233-.3646-1.5352-1.0942-1.5352-.4122 0-.6912.1353-.8382.406-.1474.2706-.2204.6527-.2204 1.147v3.0883c0 .2823-.0092.4883-.0264.6176-.0179.1298-.074.2824-.1679.459-.1649.3177-.624.4764-1.3766.4764-.7411 0-1.1941-.1647-1.3588-.494-.0824-.1765-.1324-.3326-.15-.4677-.0175-.1352-.0266-.3382-.0266-.609v-3.0884c0-1.0233-.365-1.5352-1.0941-1.5352-.7058 0-1.059.5119-1.059 1.5352v3.1237c0 .2709-.0085.4737-.0264.609-.0175.1353-.0734.291-.1675.4675-.1766.3061-.6355.459-1.3768.459-.741 0-1.1943-.1588-1.3586-.4765-.0826-.1766-.1326-.3292-.15-.459-.0179-.1293-.0266-.3353-.0266-.6176v-6.212c0-.2705.0087-.4735.0266-.609.0174-.135.073-.285.1674-.4498.1764-.3177.5943-.4766 1.2529-.4766.659 0 1.0883.106 1.2885.3176.1997.212.3.518.3.9177M41.61 17.382c.447 0 .6708-.1881.6708-.565 0-.2702-.1034-.4878-.3092-.6527-.2055-.1647-.4998-.247-.882-.247-.3827 0-.7621.1559-1.1381.4676-.377.312-.565.6443-.565.997H41.61zm3.7237-.5207c0 .7237-.1796 1.2594-.5381 1.606-.3592.3473-.7562.5207-1.1914.5207H39.422c0 .3296.1939.606.582.8294.3883.2236.7764.3354 1.1647.3354.6826 0 1.218-.0707 1.606-.212l.1945-.0704c.282-.1294.5173-.194.706-.194.3762 0 .6996.2644.9705.794.1524.3177.2293.5885.2293.8118 0 1.0474-1.2528 1.5705-3.7589 1.5705-.8708 0-1.644-.15-2.3207-.4498-.6768-.3-1.203-.6973-1.5796-1.1914-.7412-.953-1.1116-2.0175-1.1116-3.1942 0-1.4824.4792-2.6674 1.4382-3.556.9587-.888 2.1556-1.3325 3.5912-1.3325 1.6352 0 2.8354.5768 3.6002 1.7295.4.6119.6 1.2796.6 2.003z"></path><g transform="translate(46.0631 13.1342)"><path fill="#FFF" d="M.4884 8.6597c-.2239-.141-.3352-.3645-.3352-.6706 0-.3058.223-.7705.6703-1.3941.1292-.2.3383-.3.6266-.3.2883 0 .6794.1442 1.1735.4325.4942.2883.941.4322 1.3413.4322.7177 0 1.0766-.1411 1.0766-.4235 0-.2234-.3946-.3883-1.1825-.4942-.7412-.106-1.4767-.3822-2.206-.8294-.3414-.212-.6237-.544-.8472-.9971-.2234-.4528-.3353-.9911-.3353-1.6148C.4705.942 1.7469.0123 4.3002.0123c.8354 0 1.6944.2002 2.5766.5998.4117.1887.6178.4239.6178.7062 0 .2824-.1297.6296-.3883 1.0413-.2591.4118-.5238.6175-.7943.6175-.1412 0-.4031-.0883-.7851-.2649-.3826-.1762-.7975-.2645-1.2443-.2645-.6945 0-1.0413.1296-1.0413.3883 0 .3528.4.5824 1.2.6882.7764.0825 1.5295.3061 2.259.6706.3411.165.6265.45.8559.856.2295.4056.344.915.344 1.5267 0 .6117-.1145 1.1322-.344 1.5616-.2294.4298-.5499.75-.9618.962-.7532.3646-1.6971.547-2.8323.547-1.1357 0-2.2269-.3294-3.2737-.9884"></path></g></g></svg></div></div><script type="application/ld+json">{"@context":"https://schema.org","@type":"WebSite","url":"https://www.crazygames.com/","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.crazygames.com/search?q={search_term_string}"},"query-input":"required name=search_term_string"}]}</script><script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"CrazyGames","url":"https://www.crazygames.com/","description":"CrazyGames is a web gaming portal providing free instant games to over 20 million monthly users.","email":"general@crazygames.com","logo":"https://images.crazygames.com/favicons/manifest-icon-transparent-2.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR","image":"https://images.crazygames.com/favicons/manifest-icon-transparent-2.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR","contactPoint":{"@type":"ContactPoint","contactType":"User Feedback","url":"https://www.crazygames.com/contact","email":"general@crazygames.com","telephone":"+32477065352"},"address":{"@type":"PostalAddress","addressCountry":"BE","postalCode":"3010","addressLocality":"Leuven","addressRegion":"Vlaams-Brabant","streetAddress":"Ketelmakerij 20","telephone":"+32477065352"},"location":{"@type":"PostalAddress","addressCountry":"BE","postalCode":"3010","addressLocality":"Leuven","addressRegion":"Vlaams-Brabant","streetAddress":"Ketelmakerij 20","telephone":"+32477065352"},"telephone":"+32477065352","founder":{"@type":"Person","name":"Raf Mertens","gender":"Male","jobTitle":"CEO","sameAs":["https://linkedin.com/in/rafmertens","https://cs.stanford.edu/people/mertens/"]},"foundingDate":"2013-08-15","sameAs":["https://about.crazygames.com","https://en.wikipedia.org/wiki/CrazyGames","https://www.linkedin.com/company/crazygames/","https://twitter.com/crazygamescom","https://www.trustpilot.com/review/crazygames.com","https://play.google.com/store/apps/dev?id=8163162718412732005","https://www.similarweb.com/website/crazygames.com/","https://apps.apple.com/us/developer/crazygames-com/id1145410933","https://www.youtube.com/@crazygamescom"],"duns":"370549512","legalName":"Maxflow BV","taxID":"0550758377","vatID":"BE0550758377"}</script></a></div><div class="css-xgeqm6"></div><div style="flex-direction:row;display:flex;padding-right:16px;align-items:center;justify-content:flex-end"><div style="margin-right:8px"><div style="position:relative"><button style="visibility:hidden;min-width:143px" class="MuiButton-root css-vpjz3l"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.47368 6.78578C3.94666 7.79745 3.9392 9.02672 4.07146 9.70273C4.46989 11.7393 5.98381 14.0997 7.75719 15.9902C8.63197 16.9227 9.53387 17.7018 10.3315 18.2394C11.1783 18.8102 11.749 19 12 19C12.251 19 12.8217 18.8102 13.6685 18.2394C14.4661 17.7018 15.368 16.9227 16.2428 15.9902C18.0162 14.0997 19.5301 11.7393 19.9286 9.70273C20.0608 9.02672 20.0534 7.79745 19.5263 6.78578C19.2725 6.29849 18.9017 5.86627 18.3619 5.55002C17.82 5.23252 17.0529 5 15.96 5C14.7111 5 13.7204 5.56856 13.2125 6.32446C12.8891 6.80569 12.3638 6.94309 12 6.94309C11.6362 6.94309 11.1109 6.80569 10.7876 6.32446C10.2796 5.56856 9.28887 5 8.04003 5C6.94711 5 6.18001 5.23252 5.63809 5.55002C5.09831 5.86627 4.72752 6.29849 4.47368 6.78578ZM4.62707 3.82438C5.52816 3.29645 6.65797 3 8.04003 3C9.61785 3 11.0464 3.61724 12 4.64452C12.9536 3.61724 14.3822 3 15.96 3C17.342 3 18.4719 3.29645 19.3729 3.82438C20.2762 4.35357 20.8945 5.08322 21.3001 5.86176C22.0919 7.38172 22.0844 9.09982 21.8913 10.0867C21.3888 12.6555 19.5878 15.3476 17.7015 17.3585C16.7464 18.3766 15.7323 19.2603 14.7863 19.8979C13.8895 20.5023 12.8891 21 12 21C11.1109 21 10.1105 20.5023 9.21371 19.8979C8.26775 19.2603 7.25361 18.3766 6.29853 17.3585C4.41221 15.3476 2.61121 12.6555 2.10867 10.0867C1.91558 9.09982 1.90812 7.38172 2.69993 5.86176C3.1055 5.08322 3.72383 4.35357 4.62707 3.82438Z"></path></svg>My Games</button><div class="css-1sbqpkv"><span></span><span></span><span></span></div></div></div><div style="height:100%;position:relative"><div style="position:relative"><button style="visibility:hidden" class="MuiButton-root css-b69bjh"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" d="M6.08194 19.9771H17.9181C17.4451 17.1282 14.981 15 12 15C9.01897 15 6.55491 17.1282 6.08194 19.9771ZM4 20.9771C4 16.5223 7.58876 13 12 13C16.4112 13 20 16.5223 20 20.9771C20 21.5294 19.5523 21.9771 19 21.9771H5C4.44772 21.9771 4 21.5294 4 20.9771Z"></path><path xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" d="M12 4C10.3431 4 9 5.34315 9 7C9 8.65685 10.3431 10 12 10C13.6569 10 15 8.65685 15 7C15 5.34315 13.6569 4 12 4ZM7 7C7 4.23858 9.23858 2 12 2C14.7614 2 17 4.23858 17 7C17 9.76142 14.7614 12 12 12C9.23858 12 7 9.76142 7 7Z"></path></svg>Login</button><div class="css-1sbqpkv"><span></span><span></span><span></span></div></div></div></div></header><nav id="mainNav" class="css-22791k"><div class="css-1y0lbxl"><a aria-label="Home" href="https://www.crazygames.com/" class="css-1exdxkp"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.2929 2.29289C11.6834 1.90237 12.3166 1.90237 12.7071 2.29289L21.7071 11.2929C22.0976 11.6834 22.0976 12.3166 21.7071 12.7071C21.3166 13.0976 20.6834 13.0976 20.2929 12.7071L20 12.4142V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V12.4142L3.70711 12.7071C3.31658 13.0976 2.68342 13.0976 2.29289 12.7071C1.90237 12.3166 1.90237 11.6834 2.29289 11.2929L11.2929 2.29289ZM6 10.4142V20H9V16C9 14.8954 9.89543 14 11 14H13C14.1046 14 15 14.8954 15 16V20H18V10.4142L12 4.41421L6 10.4142ZM13 20V16H11V20H13Z"></path></svg><div class="LabelContainer">Home</div></a><div class="css-1upoo4v"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM12 7C12.5523 7 13 7.44772 13 8V11.5858L15.7071 14.2929C16.0976 14.6834 16.0976 15.3166 15.7071 15.7071C15.3166 16.0976 14.6834 16.0976 14.2929 15.7071L11.2929 12.7071C11.1054 12.5196 11 12.2652 11 12V8C11 7.44772 11.4477 7 12 7Z"></path></svg><div class="LabelContainer">Recent</div></div><a aria-label="New" href="https://www.crazygames.com/new" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M5 2C5.55228 2 6 2.44772 6 3V4H7C7.55228 4 8 4.44772 8 5C8 5.55228 7.55228 6 7 6H6V7C6 7.55228 5.55228 8 5 8C4.44772 8 4 7.55228 4 7V6H3C2.44772 6 2 5.55228 2 5C2 4.44772 2.44772 4 3 4H4V3C4 2.44772 4.44772 2 5 2ZM13 2C13.4304 2 13.8126 2.27543 13.9487 2.68377L16.0835 9.08833L21.3511 11.0637C21.7414 11.21 22 11.5832 22 12C22 12.4168 21.7414 12.79 21.3511 12.9363L16.0835 14.9117L13.9487 21.3162C13.8126 21.7246 13.4304 22 13 22C12.5696 22 12.1874 21.7246 12.0513 21.3162L9.91647 14.9117L4.64888 12.9363C4.25857 12.79 4 12.4168 4 12C4 11.5832 4.25857 11.21 4.64888 11.0637L9.91647 9.08833L12.0513 2.68377C12.1874 2.27543 12.5696 2 13 2ZM13 6.16228L11.663 10.1734C11.5675 10.4596 11.348 10.6875 11.0654 10.7935L7.848 12L11.0654 13.2065C11.348 13.3125 11.5675 13.5404 11.663 13.8266L13 17.8377L14.337 13.8266C14.4325 13.5404 14.652 13.3125 14.9346 13.2065L18.152 12L14.9346 10.7935C14.652 10.6875 14.4325 10.4596 14.337 10.1734L13 6.16228ZM6 16C6.55228 16 7 16.4477 7 17V18H8C8.55228 18 9 18.4477 9 19C9 19.5523 8.55228 20 8 20H7V21C7 21.5523 6.55228 22 6 22C5.44772 22 5 21.5523 5 21V20H4C3.44772 20 3 19.5523 3 19C3 18.4477 3.44772 18 4 18H5V17C5 16.4477 5.44772 16 6 16Z"></path></svg><div class="LabelContainer">New</div></a><a aria-label="Trending" href="https://www.crazygames.com/hot" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.8556 2.01042C14.1999 1.96018 14.5455 2.09248 14.7682 2.35976C17.2757 5.36878 20 9.21266 20 13.7999C20 16.1453 19.1579 18.2104 17.6483 19.6893C16.1396 21.1674 14.0258 21.9999 11.5882 21.9999C9.03924 21.9999 7.10704 20.8282 5.8406 19.1449C4.5948 17.489 4 15.3564 4 13.3499C4 11.317 4.57968 9.76054 5.47779 8.52458C6.35873 7.31224 7.51181 6.4571 8.5693 5.76369C8.8326 5.59104 9.16183 5.55248 9.4579 5.65961C9.75396 5.76673 9.98229 6.00704 10.0741 6.3082C10.2241 6.79976 10.4331 7.25547 10.6343 7.58479C10.8629 7.30707 11.0942 6.94482 11.3582 6.44182C11.7901 5.61877 12.2669 4.50591 12.9585 2.89162C12.9985 2.79812 13.0393 2.70293 13.0809 2.60602C13.2179 2.28623 13.5113 2.06066 13.8556 2.01042ZM14.263 4.92165C13.8332 5.91424 13.4713 6.71911 13.1291 7.37126C12.6171 8.34673 12.1033 9.07347 11.3801 9.63813C10.7888 10.0998 10.1528 9.85682 9.85364 9.6654C9.55424 9.47384 9.31149 9.18921 9.12778 8.93146C8.96402 8.70171 8.80589 8.43417 8.66045 8.14396C8.063 8.60336 7.52787 9.10557 7.09574 9.70026C6.44973 10.5893 6 11.7329 6 13.3499C6 14.9936 6.49344 16.6859 7.43881 17.9425C8.36355 19.1717 9.72547 19.9999 11.5882 19.9999C13.5624 19.9999 15.1545 19.3326 16.2487 18.2606C17.3421 17.1895 18 15.6546 18 13.7999C18 10.5224 16.3184 7.58246 14.263 4.92165Z"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M15 17.8C15 19.6667 13.7143 21 11.8235 21C9.93277 21 9 19.2222 9 17.6C9 15.9778 9.88235 15.2 10.7647 14.6C10.9412 15.2 11.2952 15.742 11.4706 15.6C11.9549 15.2078 12.2143 14.5555 12.8571 13C13.9286 14.3334 15 15.9333 15 17.8Z"></path></svg><div class="LabelContainer">Trending</div></a><a aria-label="Updated" href="https://www.crazygames.com/updated" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M4 3C4.55228 3 5 3.44772 5 4V6.34298C6.64938 4.30446 9.17168 3 12 3C16.5903 3 20.3767 6.43564 20.9304 10.8763C20.9988 11.4243 20.6099 11.924 20.0618 11.9923C19.5138 12.0607 19.0141 11.6718 18.9458 11.1237C18.5153 7.67174 15.5689 5 12 5C9.62231 5 7.51998 6.18566 6.25442 8H9C9.55228 8 10 8.44772 10 9C10 9.55228 9.55228 10 9 10H4C3.44772 10 3 9.55228 3 9V4C3 3.44772 3.44772 3 4 3ZM3.93815 12.0077C4.48619 11.9393 4.98587 12.3282 5.05421 12.8763C5.48467 16.3283 8.43109 19 12 19C14.3777 19 16.48 17.8143 17.7456 16H15C14.4477 16 14 15.5523 14 15C14 14.4477 14.4477 14 15 14H20C20.5523 14 21 14.4477 21 15V20C21 20.5523 20.5523 21 20 21C19.4477 21 19 20.5523 19 20V17.657C17.3506 19.6955 14.8283 21 12 21C7.40967 21 3.62332 17.5644 3.06958 13.1237C3.00124 12.5757 3.39011 12.076 3.93815 12.0077Z"></path></svg><div class="LabelContainer">Updated</div></a><div class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M17.2407 3.34923C17.6002 2.9299 18.2315 2.88134 18.6508 3.24076L21.265 5.48151C21.6273 5.79206 21.8486 6.19987 21.929 6.62926C21.9748 6.74391 22 6.86901 22 7C22 7.13098 21.9748 7.25607 21.929 7.37071C21.8487 7.80012 21.6273 8.20796 21.265 8.51853L18.6508 10.7593C18.2315 11.1187 17.6002 11.0701 17.2407 10.6508C16.8813 10.2315 16.9299 9.60018 17.3492 9.24076L18.7968 8H18.3031C16.9537 8 15.6953 8.68034 14.9563 9.80937L13.5224 12L14.9563 14.1906C15.6953 15.3197 16.9537 16 18.3031 16H18.7967L17.3492 14.7593C16.9299 14.3999 16.8813 13.7686 17.2407 13.3492C17.6002 12.9299 18.2315 12.8813 18.6508 13.2408L21.265 15.4815C21.6273 15.7921 21.8486 16.1999 21.929 16.6293C21.9748 16.7439 22 16.869 22 17C22 17.131 21.9748 17.2561 21.929 17.3707C21.8487 17.8001 21.6273 18.208 21.265 18.5185L18.6508 20.7593C18.2315 21.1187 17.6002 21.0701 17.2407 20.6508C16.8813 20.2315 16.9299 19.6002 17.3492 19.2408L18.7968 18H18.3031C16.2791 18 14.3914 16.9795 13.2829 15.286L12.3273 13.826L11.9014 14.4766C10.0539 17.2992 6.90783 19 3.53438 19H3C2.44772 19 2 18.5523 2 18C2 17.4477 2.44772 17 3 17H3.53438C6.23314 17 8.75 15.6393 10.228 13.3813L11.1321 12L10.228 10.6187C8.75 8.36067 6.23314 7 3.53438 7H3C2.44772 7 2 6.55228 2 6C2 5.44772 2.44772 5 3 5H3.53438C6.90783 5 10.0539 6.70084 11.9014 9.52341L12.3273 10.174L13.2829 8.71405C14.3914 7.02051 16.2791 6 18.3031 6H18.7967L17.3492 4.75927C16.9299 4.39985 16.8813 3.76855 17.2407 3.34923Z"></path></svg><div class="LabelContainer">Random</div></div><hr class="MuiDivider-root MuiDivider-fullWidth css-148wt6v"/><a aria-label="2 Player" href="https://www.crazygames.com/t/2-player" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M18 5C18 4.53741 18.1418 4.32774 18.2566 4.22382C18.3885 4.10452 18.6254 4 19 4C19.3746 4 19.6115 4.10452 19.7434 4.22382C19.8582 4.32774 20 4.53741 20 5C20 5.358 19.999 5.63184 19.9742 5.8692C19.9496 6.10435 19.9081 6.22381 19.8747 6.28411C19.8547 6.32037 19.8307 6.35347 19.746 6.39155C19.6379 6.44018 19.4167 6.5 19 6.5C18.487 6.5 17.9727 6.52792 17.5275 6.67632C17.0167 6.84659 16.6092 7.17058 16.3556 7.67779C16.137 8.11501 16.0664 8.627 16.0335 9.12098C16 9.62316 16 10.2446 16 10.9676V11C16 11.5523 16.4477 12 17 12H21C21.5523 12 22 11.5523 22 11C22 10.4477 21.5523 10 21 10H18.0038C18.0075 9.71292 18.0148 9.46762 18.029 9.25402C18.0574 8.82921 18.1085 8.65028 18.1403 8.58077C18.1456 8.5787 18.1521 8.57632 18.16 8.57368C18.2773 8.53458 18.513 8.5 19 8.5C20.1776 8.5 21.1245 8.15759 21.6253 7.25143C21.8419 6.85932 21.9254 6.44007 21.9633 6.07703C22.0001 5.72556 22 5.35227 22 5.02599V5C22 4.08188 21.6941 3.29155 21.0851 2.74065C20.4931 2.20513 19.7299 2 19 2C18.2701 2 17.5069 2.20513 16.9149 2.74065C16.3059 3.29155 16 4.08188 16 5C16 5.55228 16.4477 6 17 6C17.5523 6 18 5.55228 18 5ZM9.19907 5.79977C7.70809 5.79977 6.49942 7.00845 6.49942 8.49943C6.49942 9.99041 7.70809 11.1991 9.19907 11.1991C10.6901 11.1991 11.8987 9.99041 11.8987 8.49943C11.8987 7.00845 10.6901 5.79977 9.19907 5.79977ZM4.69965 8.49943C4.69965 6.01446 6.71411 4 9.19907 4C11.684 4 13.6985 6.01446 13.6985 8.49943C13.6985 10.9844 11.684 12.9989 9.19907 12.9989C6.71411 12.9989 4.69965 10.9844 4.69965 8.49943ZM14.5247 20.1774C14.099 17.6137 11.8817 15.6985 9.19908 15.6985C6.5165 15.6985 4.29912 17.6137 3.87351 20.1774H14.5247ZM2 21.0772C2 17.0684 5.22948 13.8987 9.19908 13.8987C13.1687 13.8987 16.3982 17.0684 16.3982 21.0772C16.3982 21.5742 15.9953 21.9771 15.4983 21.9771H2.89989C2.40289 21.9771 2 21.5742 2 21.0772Z"></path></svg><div class="LabelContainer">2 Player</div></a><a aria-label="Action" href="https://www.crazygames.com/c/action" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.9806 2.80388C12.8871 2.33646 12.4767 2 12 2C11.5233 2 11.1129 2.33646 11.0194 2.80388L9.31226 11.3397L4.5547 8.16795C4.15808 7.90353 3.62996 7.95583 3.29289 8.29289C2.95583 8.62996 2.90353 9.15808 3.16795 9.5547L6.13148 14H3C2.63973 14 2.30731 14.1938 2.1298 14.5073C1.95229 14.8208 1.95715 15.2056 2.14251 15.5145L5.14251 20.5145C5.42666 20.9881 6.04092 21.1416 6.5145 20.8575C6.98808 20.5733 7.14164 19.9591 6.85749 19.4855L4.76619 16H8C8.3688 16 8.70766 15.797 8.88167 15.4719C9.05569 15.1467 9.03662 14.7522 8.83205 14.4453L7.60555 12.6056L9.4453 13.8321C9.72288 14.0171 10.0745 14.0515 10.3827 13.9239C10.6909 13.7962 10.9152 13.5232 10.9806 13.1961L12 8.09902L13.0194 13.1961C13.0848 13.5232 13.3091 13.7962 13.6173 13.9239C13.9255 14.0515 14.2771 14.0171 14.5547 13.8321L16.3944 12.6056L15.1679 14.4453C14.9634 14.7522 14.9443 15.1467 15.1183 15.4719C15.2923 15.797 15.6312 16 16 16H19.2338L17.1425 19.4855C16.8584 19.9591 17.0119 20.5733 17.4855 20.8575C17.9591 21.1416 18.5733 20.9881 18.8575 20.5145L21.8575 15.5145C22.0429 15.2056 22.0477 14.8208 21.8702 14.5073C21.6927 14.1938 21.3603 14 21 14H17.8685L20.8321 9.5547C21.0965 9.15808 21.0442 8.62996 20.7071 8.29289C20.37 7.95583 19.8419 7.90353 19.4453 8.16795L14.6877 11.3397L12.9806 2.80388ZM5.70711 4.29289C5.31658 3.90237 4.68342 3.90237 4.29289 4.29289C3.90237 4.68342 3.90237 5.31658 4.29289 5.70711L6.29289 7.70711C6.68342 8.09763 7.31658 8.09763 7.70711 7.70711C8.09763 7.31658 8.09763 6.68342 7.70711 6.29289L5.70711 4.29289ZM19.7071 5.70711C20.0976 5.31658 20.0976 4.68342 19.7071 4.29289C19.3166 3.90237 18.6834 3.90237 18.2929 4.29289L16.2929 6.29289C15.9024 6.68342 15.9024 7.31658 16.2929 7.70711C16.6834 8.09763 17.3166 8.09763 17.7071 7.70711L19.7071 5.70711ZM12.8321 16.4453C12.6466 16.1671 12.3344 16 12 16C11.6656 16 11.3534 16.1671 11.1679 16.4453L9.16795 19.4453C8.96338 19.7522 8.94431 20.1467 9.11833 20.4719C9.29234 20.797 9.6312 21 10 21H14C14.3688 21 14.7077 20.797 14.8817 20.4719C15.0557 20.1467 15.0366 19.7522 14.8321 19.4453L12.8321 16.4453Z"></path></svg><div class="LabelContainer">Action</div></a><a aria-label="Adventure" href="https://www.crazygames.com/c/adventure" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path d="M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z"></path><path d="M12 2C12.5523 2 13 2.44772 13 3V5C13 5.55228 12.5523 6 12 6C11.4477 6 11 5.55228 11 5V3C11 2.44772 11.4477 2 12 2ZM2 12C2 11.4477 2.44772 11 3 11H5C5.55228 11 6 11.4477 6 12C6 12.5523 5.55228 13 5 13H3.00046C2.44818 13 2 12.5523 2 12ZM18 12C18 11.4477 18.4477 11 19 11H20.9995C21.5518 11 22 11.4477 22 12C22 12.5523 21.5523 13 21 13H19C18.4477 13 18 12.5523 18 12ZM12 18C12.5523 18 13 18.4477 13 19V20.9995C13 21.5518 12.5523 22 12 22C11.4477 22 11 21.5523 11 21V19C11 18.4477 11.4477 18 12 18Z"></path><path d="M11.3064 11.3065L10.4544 13.5456L12.6935 12.6935L13.5455 10.4544L11.3064 11.3065ZM10.1758 9.59682C9.90898 9.69834 9.69831 9.90901 9.59679 10.1758L7.79256 14.9171C7.48559 15.7238 8.27614 16.5144 9.08283 16.2074L13.8242 14.4032C14.091 14.3017 14.3016 14.091 14.4031 13.8242L16.2074 9.08286C16.5143 8.27617 15.7238 7.48562 14.9171 7.79259L10.1758 9.59682Z"></path></svg><div class="LabelContainer">Adventure</div></a><a aria-label="Basketball" href="https://www.crazygames.com/t/basketball" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.09401 5.67981L9.73957 8.32537C9.83604 8.13125 9.93004 7.91394 10.0204 7.67464C10.276 6.99803 10.4731 6.22695 10.6217 5.48411C10.7226 4.97933 10.7992 4.49761 10.8563 4.08169C9.51626 4.27418 8.21565 4.80689 7.09401 5.67981ZM12.878 4.04803C12.8139 4.5572 12.7191 5.19505 12.5828 5.87634C12.422 6.68028 12.1993 7.56649 11.8914 8.38144C11.7093 8.86336 11.4859 9.35219 11.2078 9.79357L12 10.5858L16.906 5.67981C15.7104 4.7493 14.3114 4.20538 12.878 4.04803ZM18.3202 7.09402L13.4142 12L14.2064 12.7922C14.6478 12.5141 15.1366 12.2907 15.6186 12.1086C16.4335 11.8007 17.3197 11.5779 18.1237 11.4171C18.8049 11.2809 19.4428 11.1861 19.952 11.122C19.7946 9.68863 19.2507 8.28965 18.3202 7.09402ZM19.9183 13.1436C19.5024 13.2007 19.0207 13.2774 18.5159 13.3783C17.773 13.5269 17.002 13.7239 16.3254 13.9795C16.086 14.0699 15.8687 14.1639 15.6746 14.2604L18.3202 16.906C19.1931 15.7843 19.7258 14.4837 19.9183 13.1436ZM16.906 18.3202L14.2604 15.6746C14.164 15.8687 14.07 16.086 13.9796 16.3253C13.724 17.0019 13.5269 17.773 13.3783 18.5159C13.2774 19.0207 13.2008 19.5024 13.1437 19.9183C14.4837 19.7258 15.7843 19.1931 16.906 18.3202ZM11.122 19.952C11.1861 19.4428 11.2809 18.8049 11.4172 18.1236C11.578 17.3197 11.8007 16.4335 12.1086 15.6185C12.2907 15.1366 12.5141 14.6478 12.7922 14.2064L12 13.4142L7.09402 18.3202C8.28965 19.2507 9.68864 19.7946 11.122 19.952ZM5.67981 16.906L10.5858 12L9.79355 11.2078C9.35218 11.4859 8.86337 11.7093 8.38145 11.8914C7.5665 12.1992 6.6803 12.422 5.87635 12.5828C5.19505 12.7191 4.5572 12.8139 4.04803 12.878C4.20537 14.3114 4.7493 15.7104 5.67981 16.906ZM4.08169 10.8563C4.49761 10.7992 4.97934 10.7226 5.48412 10.6217C6.22697 10.4731 6.99804 10.276 7.67465 10.0204C7.91394 9.93003 8.13124 9.83603 8.32535 9.73957L5.6798 7.09402C4.80689 8.21565 4.27419 9.51625 4.08169 10.8563ZM4.92893 4.92893C8.83418 1.02369 15.1658 1.02369 19.0711 4.92893C22.9763 8.83418 22.9763 15.1658 19.0711 19.0711C15.1658 22.9763 8.83418 22.9763 4.92893 19.0711C1.02369 15.1658 1.02369 8.83418 4.92893 4.92893Z"></path></svg><div class="LabelContainer">Basketball</div></a><a aria-label="Beauty" href="https://www.crazygames.com/c/beauty" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.0277 2.00039C8.35196 2.0095 8.65167 2.17533 8.83163 2.44523L9.99993 4.19733L11.0847 2.57011C11.5201 1.917 12.4799 1.917 12.9153 2.57011L14.0001 4.19733L15.1684 2.44523C15.3483 2.17533 15.648 2.0095 15.9723 2.00039C16.2966 1.99129 16.6051 2.14005 16.7999 2.39942C17.5532 3.40231 18 4.65042 18 6C18 9.31371 15.3137 12 12 12C8.68629 12 6 9.31371 6 6C6 4.65042 6.44677 3.40231 7.20007 2.39942C7.39489 2.14005 7.70343 1.99129 8.0277 2.00039ZM10.7484 5.31984L10.7488 5.32042L10.7488 5.32049C10.7487 5.32027 10.7486 5.32006 10.7484 5.31984ZM12 4.80278L10.9153 6.42989C10.4798 7.083 9.52015 7.083 9.08475 6.4299L8.12732 4.99403C8.0442 5.31521 8 5.65223 8 6C8 8.20914 9.79086 10 12 10C14.2091 10 16 8.20914 16 6C16 5.65223 15.9558 5.31521 15.8727 4.99403L14.9153 6.42989C14.9152 6.42992 14.9152 6.42994 14.9152 6.42997C14.4798 7.083 13.5201 7.08297 13.0847 6.42989L12 4.80278ZM2 12C2 11.4477 2.44772 11 3 11C6.9582 11 10.3793 13.2997 12 16.6359C13.6207 13.2997 17.0418 11 21 11C21.5523 11 22 11.4477 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM4.07108 13.0711C7.63256 13.5476 10.4524 16.3674 10.9289 19.9289C7.36744 19.4524 4.54762 16.6326 4.07108 13.0711ZM13.0711 19.9289C13.5476 16.3674 16.3674 13.5476 19.9289 13.0711C19.4524 16.6326 16.6326 19.4524 13.0711 19.9289Z"></path></svg><div class="LabelContainer">Beauty</div></a><a aria-label="Bike" href="https://www.crazygames.com/t/bike" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M15 6C16.1046 6 17 5.10457 17 4C17 2.89543 16.1046 2 15 2C13.8954 2 13 2.89543 13 4C13 5.10457 13.8954 6 15 6ZM6.93933 9.93934C6.35355 10.5251 6.35355 11.4749 6.93934 12.0607C7.14994 12.2713 7.40758 12.4061 7.67844 12.4653L10.8509 14.2278C11.2033 14.4236 11.4037 14.8117 11.3591 15.2124L11.0061 18.3896C10.9451 18.9385 11.3407 19.4329 11.8896 19.4939C12.4385 19.5549 12.9329 19.1593 12.9939 18.6104L13.3469 15.4332C13.4804 14.2313 12.8793 13.0668 11.8222 12.4795L9.77767 11.3436L10.1213 11H14.4116L16.2908 14.3825C14.9367 15.0235 14 16.4024 14 18C14 20.2091 15.7909 22 18 22C20.2091 22 22 20.2091 22 18C22 15.9176 20.4088 14.2069 18.3759 14.0174L18.3742 14.0144L15.884 9.53203C15.8636 9.49371 15.8409 9.45686 15.8159 9.42171C15.7326 9.30381 15.6271 9.20863 15.5084 9.13872C15.3883 9.06765 15.252 9.021 15.1064 9.0056C15.0646 9.00108 15.0223 8.99919 14.98 9H12.1213L13.0606 8.06065C13.6464 7.47487 13.6464 6.52512 13.0606 5.93933C12.4748 5.35355 11.5251 5.35355 10.9393 5.93934L6.93933 9.93934ZM6 20.5C7.38071 20.5 8.5 19.3807 8.5 18C8.5 16.6193 7.38071 15.5 6 15.5C4.61929 15.5 3.5 16.6193 3.5 18C3.5 19.3807 4.61929 20.5 6 20.5ZM6 22C8.20914 22 10 20.2091 10 18C10 15.7909 8.20914 14 6 14C3.79086 14 2 15.7909 2 18C2 20.2091 3.79086 22 6 22ZM18 20.5C19.3807 20.5 20.5 19.3807 20.5 18C20.5 16.6193 19.3807 15.5 18 15.5C16.6193 15.5 15.5 16.6193 15.5 18C15.5 19.3807 16.6193 20.5 18 20.5Z"></path></svg><div class="LabelContainer">Bike</div></a><a aria-label="Car" href="https://www.crazygames.com/t/car" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.05219 7.43888C7.50953 7.73632 7.02441 8.29544 6.42689 9.61299C5.99116 10.5738 5.08805 11.2964 4 11.4242V15H5.17071C5.58254 13.8348 6.69378 13 8 13C9.30622 13 10.4175 13.8348 10.8293 15H14.1707C14.5825 13.8348 15.6938 13 17 13C18.3062 13 19.4175 13.8348 19.8293 15H20V12.9683C20 12.1267 19.3177 11.4444 18.4761 11.4444C17.1935 11.4444 16.0834 10.751 15.3782 9.8346C14.9045 9.21911 14.2514 8.49236 13.4763 7.92674C12.6998 7.36006 11.8637 7 11 7C9.45606 7 8.63443 7.11975 8.05219 7.43888ZM19.8293 17H21C21.5523 17 22 16.5523 22 16V12.9683C22 11.0221 20.4223 9.44444 18.4761 9.44444C17.9351 9.44444 17.3701 9.14369 16.9632 8.61486C16.4243 7.91459 15.6389 7.02898 14.6553 6.31117C13.6731 5.59443 12.4301 5 11 5C9.45786 5 8.16523 5.09621 7.09091 5.68505C5.977 6.29559 5.26325 7.33646 4.60544 8.78696C4.41662 9.20332 4.03544 9.44444 3.65396 9.44444C2.7405 9.44444 2 10.1849 2 11.0984V16C2 16.5523 2.44772 17 3 17H5.17071C5.58254 18.1652 6.69378 19 8 19C9.30622 19 10.4175 18.1652 10.8293 17H14.1707C14.5825 18.1652 15.6938 19 17 19C18.3062 19 19.4175 18.1652 19.8293 17ZM9 16C9 15.4477 8.55228 15 8 15C7.44772 15 7 15.4477 7 16C7 16.5523 7.44772 17 8 17C8.55228 17 9 16.5523 9 16ZM17 15C16.4477 15 16 15.4477 16 16C16 16.5523 16.4477 17 17 17C17.5523 17 18 16.5523 18 16C18 15.4477 17.5523 15 17 15Z"></path></svg><div class="LabelContainer">Car</div></a><a aria-label="Card" href="https://www.crazygames.com/t/card" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M15 4H5L5 20H15V19.5218C14.9997 19.5072 14.9997 19.4925 15 19.4778V4ZM17 14.0441V4C17 2.89543 16.1046 2 15 2H5C3.89543 2 3 2.89543 3 4V20C3 21.1046 3.89543 22 5 22H15C16.1046 22 17 21.1046 17 20V19.6834L21.6962 7.30253C22.3008 5.7085 21.4572 3.93164 19.8399 3.39252L18.8163 3.05131C18.2923 2.87667 17.726 3.15983 17.5513 3.68377C17.3767 4.20771 17.6599 4.77403 18.1838 4.94868L19.2074 5.28988C19.7465 5.46959 20.0277 6.06188 19.8262 6.59322L17 14.0441ZM12.9484 10.355C12.9138 10.2011 12.8604 10.0534 12.7898 9.91635C12.722 9.77375 12.6353 9.64388 12.5327 9.5313C12.384 9.36272 12.2079 9.22864 12.0142 9.1365C11.6242 8.9545 11.187 8.9545 10.7971 9.1365C10.614 9.22464 10.4458 9.34834 10.3 9.50206L10.2786 9.5313L10 9.84811L9.72145 9.5313L9.70002 9.50206C9.55421 9.34834 9.38599 9.22464 9.20291 9.1365C8.813 8.9545 8.37575 8.9545 7.98584 9.1365C7.79213 9.22864 7.61602 9.36272 7.4673 9.5313C7.2639 9.7564 7.11991 10.0417 7.05161 10.355C7.01528 10.5141 6.99798 10.6781 7.00019 10.8424C7.00019 10.9974 7.01733 11.1514 7.05161 11.3006C7.08754 11.4517 7.13934 11.5973 7.20589 11.7344C7.27776 11.8752 7.36566 12.0047 7.4673 12.1194L10 15L12.5327 12.1194C12.6343 12.0063 12.7213 11.8767 12.7898 11.7344C12.929 11.4639 13.0015 11.1558 12.9998 10.8424C13.002 10.6781 12.9847 10.5141 12.9484 10.355Z"></path></svg><div class="LabelContainer">Card</div></a><a aria-label="Casual" href="https://www.crazygames.com/c/casual" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.002 4C11.4497 4 11.002 4.44772 11.002 5C11.002 5.55228 11.4497 6 12.002 6C12.5542 6 13.002 5.55228 13.002 5C13.002 4.44772 12.5542 4 12.002 4ZM9.00195 5C9.00195 3.34315 10.3451 2 12.002 2C13.6588 2 15.002 3.34315 15.002 5C15.002 6.30623 14.1671 7.41747 13.0019 7.8293V8.5828C13.4503 8.65773 13.8922 8.78342 14.319 8.95985L19.9492 11.2903L19.9517 11.2913C20.1346 11.3664 20.302 11.4725 20.4469 11.6042C20.7759 11.7679 21.002 12.1075 21.002 12.5V17.2268C21.0116 17.4774 20.9667 17.7272 20.8703 17.959C20.7087 18.348 20.4087 18.6633 20.0283 18.8442L20.0261 18.8452L14.5641 21.4252C13.763 21.8036 12.888 22 12.002 22C11.116 22 10.241 21.8037 9.43985 21.4252L3.97668 18.8446C3.66495 18.6969 3.40537 18.4581 3.23222 18.1597C3.06692 17.8749 2.98782 17.5485 3.00395 17.2203L3.00214 12.9411C3.00009 12.9005 2.99951 12.8596 3.00041 12.8187C3.00075 12.8032 3.00131 12.7877 3.00207 12.7723L3.00196 12.5004C3.00179 12.1104 3.22494 11.7724 3.55059 11.6074C3.69899 11.4719 3.87112 11.3632 4.05945 11.2874C4.06978 11.2832 4.08015 11.2792 4.09057 11.2754L9.68448 8.96002C10.1113 8.78359 10.5536 8.65773 11.0019 8.5828V7.82929C9.83675 7.41744 9.00195 6.30621 9.00195 5ZM5.00296 14.8665L5.0039 17.118L10.2941 19.6168C10.8281 19.8691 11.4114 20 12.002 20C12.5925 20 13.1758 19.8691 13.7098 19.6168L19.002 17.117V14.866L14.559 16.9346C13.7581 17.3069 12.8851 17.5001 12.0019 17.5001C11.1187 17.5001 10.2462 17.3071 9.44532 16.9348L5.00296 14.8665ZM10.4494 10.808C10.63 10.7333 10.8147 10.6722 11.0019 10.6247V13C11.0019 13.5523 11.4496 14 12.0019 14C12.5542 14 13.0019 13.5523 13.0019 13V10.6247C13.1892 10.6722 13.3743 10.7335 13.5549 10.8081L18.5438 12.8732L13.7153 15.1212C13.1786 15.3708 12.5938 15.5001 12.0019 15.5001C11.41 15.5001 10.8253 15.3708 10.2885 15.1212L5.46001 12.8732L10.4494 10.808Z"></path></svg><div class="LabelContainer">Casual</div></a><a aria-label="Clicker" href="https://www.crazygames.com/c/clicker" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M21.9659 7.75742C22.1089 8.29088 21.7923 8.83922 21.2588 8.98216L18.3221 9.76904C17.7887 9.91198 17.2403 9.5954 17.0974 9.06193C16.9544 8.52847 17.271 7.98013 17.8045 7.83719L20.7412 7.05031C21.2746 6.90737 21.823 7.22395 21.9659 7.75742ZM19.871 15.5756C19.4805 15.9661 18.8473 15.9661 18.4568 15.5756L16.307 13.4258C15.9165 13.0353 15.9165 12.4021 16.307 12.0116C16.6975 11.6211 17.3307 11.6211 17.7212 12.0116L19.871 14.1614C20.2615 14.5519 20.2615 15.1851 19.871 15.5756ZM16.2426 2.03408C16.7761 2.17702 17.0927 2.72536 16.9497 3.25882L16.1628 6.1955C16.0199 6.72897 15.4715 7.04555 14.9381 6.90261C14.4046 6.75967 14.088 6.21133 14.231 5.67786L15.0179 2.74118C15.1608 2.20772 15.7091 1.89114 16.2426 2.03408ZM14.8548 9.14522C15.1296 9.41995 15.2203 9.82894 15.0875 10.1941L11.0338 21.3417C10.8921 21.7315 10.5245 21.9933 10.1099 21.9999C9.69522 22.0065 9.31954 21.7564 9.16552 21.3714L7.70189 17.7123L3.7071 21.7071C3.31658 22.0976 2.68341 22.0976 2.29289 21.7071C1.90236 21.3166 1.90236 20.6834 2.29289 20.2929L6.28768 16.2981L2.62861 14.8345C2.24357 14.6805 1.99354 14.3048 2.00012 13.8902C2.0067 13.4755 2.26852 13.108 2.65825 12.9662L13.806 8.91253C14.1711 8.77976 14.5801 8.87049 14.8548 9.14522ZM12.4756 11.5244L5.80382 13.9505L8.43853 15.0044C8.69263 15.106 8.89398 15.3074 8.99562 15.5615L10.0495 18.1962L12.4756 11.5244ZM11.9885 7.69309C11.598 8.08362 10.9648 8.08362 10.5743 7.69309L8.42445 5.54329C8.03393 5.15277 8.03393 4.51961 8.42445 4.12908C8.81497 3.73856 9.44814 3.73855 9.83866 4.12908L11.9885 6.27888C12.379 6.6694 12.379 7.30257 11.9885 7.69309Z"></path></svg><div class="LabelContainer">Clicker</div></a><a aria-label="Controller" href="https://www.crazygames.com/t/controller" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.6063 16.5524C16.8319 16.8352 17.174 17 17.5358 17C18.8967 17 20 15.8967 20 14.5358V8.68421C20 7.75405 19.246 7 18.3158 7H5.68421C4.75405 7 4 7.75405 4 8.68421V14.5358C4 15.8967 5.10327 17 6.46423 17C6.82602 17 7.16813 16.8352 7.39368 16.5524L8.39547 15.2959C10.2411 12.9812 13.7589 12.9812 15.6045 15.2959L16.6063 16.5524ZM15.0426 17.7992C15.2166 18.0175 15.4166 18.2096 15.6362 18.3725C16.18 18.7757 16.8445 19 17.5358 19C20.0013 19 22 17.0013 22 14.5358V8.68421C22 6.64948 20.3505 5 18.3158 5H5.68421C3.64948 5 2 6.64948 2 8.68421V14.5358C2 17.0013 3.9987 19 6.46423 19C7.43473 19 8.3524 18.558 8.95744 17.7992L9.95923 16.5428C11.0042 15.2323 12.9958 15.2323 14.0408 16.5428L15.0426 17.7992ZM9 9.25C9 8.83579 8.66421 8.5 8.25 8.5C7.83579 8.5 7.5 8.83579 7.5 9.25V10H6.75C6.33579 10 6 10.3358 6 10.75C6 11.1642 6.33579 11.5 6.75 11.5H7.5V12.25C7.5 12.6642 7.83579 13 8.25 13C8.66421 13 9 12.6642 9 12.25V11.5H9.75C10.1642 11.5 10.5 11.1642 10.5 10.75C10.5 10.3358 10.1642 10 9.75 10H9V9.25ZM16.5 9.25C16.5 8.83579 16.1642 8.5 15.75 8.5C15.3358 8.5 15 8.83579 15 9.25C15 9.66421 15.3358 10 15.75 10C16.1642 10 16.5 9.66421 16.5 9.25ZM14.25 10C14.6642 10 15 10.3358 15 10.75C15 11.1642 14.6642 11.5 14.25 11.5C13.8358 11.5 13.5 11.1642 13.5 10.75C13.5 10.3358 13.8358 10 14.25 10ZM17.25 10C17.6642 10 18 10.3358 18 10.75C18 11.1642 17.6642 11.5 17.25 11.5C16.8358 11.5 16.5 11.1642 16.5 10.75C16.5 10.3358 16.8358 10 17.25 10ZM15.75 11.5C16.1642 11.5 16.5 11.8358 16.5 12.25C16.5 12.6642 16.1642 13 15.75 13C15.3358 13 15 12.6642 15 12.25C15 11.8358 15.3358 11.5 15.75 11.5Z"></path></svg><div class="LabelContainer">Controller</div></a><a aria-label="Dress Up" href="https://www.crazygames.com/t/dress-up" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 6C8 6.01653 8.0004 6.03296 8.00119 6.04929C7.3819 6.68067 7 7.54573 7 8.5C7 9.18297 7.19562 9.82026 7.53389 10.3589C7.22002 10.5775 6.96849 10.8861 6.82006 11.2572L3.62006 19.2572C3.09456 20.5709 4.06208 22 5.47701 22H5.58576C6.11619 22 6.6249 21.7893 6.99998 21.4142L7.99998 20.4142L8.58576 21C9.36681 21.781 10.6331 21.781 11.4142 21L12 20.4142L12.5858 21C13.3668 21.781 14.6331 21.781 15.4142 21L16 20.4142L17 21.4142C17.375 21.7893 17.8838 22 18.4142 22H18.5229C19.9379 22 20.9054 20.5709 20.3799 19.2572L17.1799 11.2572C17.0315 10.8861 16.7799 10.5775 16.4661 10.3589C16.8044 9.82028 17 9.18298 17 8.5C17 7.54573 16.6181 6.68067 15.9988 6.04929C15.9996 6.03296 16 6.01653 16 6V3C16 2.44772 15.5523 2 15 2C14.4477 2 14 2.44772 14 3V5.03544C13.8367 5.01209 13.6698 5 13.5 5H10.5C10.3302 5 10.1633 5.01209 10 5.03544V3C10 2.44772 9.55228 2 9 2C8.44772 2 8 2.44772 8 3V6ZM13.5 10C14.3284 10 15 9.32843 15 8.5C15 7.67157 14.3284 7 13.5 7H10.5C9.67157 7 9 7.67157 9 8.5C9 9.32843 9.67157 10 10.5 10H13.5ZM10.5 12L8.67701 12L5.47701 20H5.58576L6.58576 19C7.36681 18.219 8.63314 18.219 9.41419 19L9.99998 19.5858L10.5858 19C11.3668 18.219 12.6331 18.219 13.4142 19L14 19.5858L14.5858 19C15.3668 18.219 16.6331 18.219 17.4142 19L18.4142 20H18.5229L15.3229 12H13.5H10.5Z"></path></svg><div class="LabelContainer">Dress Up</div></a><a aria-label="Driving" href="https://www.crazygames.com/c/driving" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.06189 11L8.15696 11C8.22016 10.823 8.30475 10.6539 8.41477 10.4957C8.72756 10.0459 9.16263 9.80342 9.58322 9.67334C9.98534 9.54898 10.4165 9.51386 10.8011 9.50187C11.0632 9.4937 11.356 9.49595 11.6368 9.4981C11.7615 9.49906 11.8838 9.5 12 9.5C12.1162 9.5 12.2385 9.49906 12.3632 9.4981C12.644 9.49595 12.9368 9.4937 13.1989 9.50187C13.5835 9.51386 14.0147 9.54898 14.4168 9.67334C14.8374 9.80342 15.2724 10.0459 15.5852 10.4957C15.6953 10.6539 15.7798 10.823 15.843 11L19.9381 11C19.446 7.05369 16.0796 4 12 4C7.92038 4 4.55399 7.05369 4.06189 11ZM19.9381 13L15.874 13C15.5122 14.4056 14.4056 15.5122 13 15.874V19.9381C16.6187 19.4869 19.4869 16.6187 19.9381 13ZM11 19.9381V15.874C9.59439 15.5122 8.48779 14.4056 8.12602 13L4.06189 13C4.51314 16.6187 7.38128 19.4869 11 19.9381ZM12.011 14H11.989C10.8895 13.9941 10 13.1009 10 12C10 11.8588 10.0145 11.7667 10.029 11.7106C10.0427 11.6577 10.0558 11.6389 10.0567 11.6376L10.0567 11.6376L10.0578 11.6362C10.058 11.6361 10.0602 11.6339 10.0661 11.63C10.0785 11.6218 10.11 11.6039 10.1741 11.584C10.3149 11.5405 10.5302 11.5113 10.8634 11.5009C11.0867 11.4939 11.313 11.4957 11.5701 11.4978C11.7038 11.4989 11.8458 11.5 12 11.5C12.1542 11.5 12.2962 11.4989 12.4299 11.4978C12.687 11.4957 12.9133 11.4939 13.1366 11.5009C13.4698 11.5113 13.6851 11.5405 13.8259 11.584C13.89 11.6039 13.9215 11.6218 13.9339 11.63C13.9397 11.6339 13.942 11.636 13.9422 11.6362L13.9422 11.6362L13.9433 11.6376C13.9439 11.6385 13.9571 11.6571 13.971 11.7106C13.9855 11.7667 14 11.8588 14 12C14 13.1009 13.1105 13.9941 12.011 14ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z"></path></svg><div class="LabelContainer">Driving</div></a><a aria-label="Escape" href="https://www.crazygames.com/t/escape" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 3H17C18.6569 3 20 4.26639 20 5.82857V18.1714C20 19.7336 18.6569 21 17 21H14V19.4571H17C17.7531 19.4571 18.3636 18.8815 18.3636 18.1714V5.82857C18.3636 5.11849 17.7531 4.54286 17 4.54286H14V3Z"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M4.78307 3.61965C4.32553 3.72389 4 4.13995 4 4.62048V19.3795C4 19.86 4.32553 20.2761 4.78307 20.3803L11.7831 21.9752C12.4076 22.1175 13 21.6302 13 20.9743V3.02566C13 2.36976 12.4076 1.88255 11.7831 2.02483L4.78307 3.61965ZM10 14.0505C10.5523 14.0505 11 13.362 11 12.5126C11 11.6633 10.5523 10.9748 10 10.9748C9.44772 10.9748 9 11.6633 9 12.5126C9 13.362 9.44772 14.0505 10 14.0505Z"></path></svg><div class="LabelContainer">Escape</div></a><a aria-label="Flash" href="https://www.crazygames.com/t/flash" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 4H16C18.2091 4 20 5.79086 20 8V16C20 18.2091 18.2091 20 16 20H8C5.79086 20 4 18.2091 4 16V8C4 5.79086 5.79086 4 8 4ZM2 8C2 4.68629 4.68629 2 8 2H16C19.3137 2 22 4.68629 22 8V16C22 19.3137 19.3137 22 16 22H8C4.68629 22 2 19.3137 2 16V8ZM17 8.38493C16.6303 8.38032 16.2625 8.43582 15.9122 8.54908H15.9129C15.6025 8.65176 15.3158 8.81119 15.0685 9.01855C14.8094 9.23027 14.5867 9.4799 14.4085 9.75823C14.1937 10.0882 14.0056 10.4335 13.8456 10.7911H15.7398V13.1864H12.8676L12.1829 14.6887C11.9319 15.1665 11.6373 15.622 11.3027 16.0499C10.7949 16.6759 10.1409 17.1784 9.39345 17.5168C8.646 17.8552 7.82609 18.0201 7 17.998V15.5926C7.47164 15.601 7.93933 15.5087 8.36927 15.3224C8.75216 15.1385 9.08657 14.8736 9.34731 14.5476C9.64348 14.1526 9.89359 13.7277 10.0932 13.2803C10.368 12.7271 10.6088 12.1589 10.8144 11.5787L11.6214 9.6873C11.8992 9.06562 12.2609 8.48171 12.6973 7.95058C13.2032 7.32266 13.8569 6.81874 14.6048 6.48011C15.3527 6.14149 16.1735 5.97779 17 6.00242V8.38493Z"></path></svg><div class="LabelContainer">Flash</div></a><a aria-label="FPS" href="https://www.crazygames.com/t/first-person-shooter" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.73145 4C3.76983 4 2.94188 4.67292 2.75329 5.60777L2.03927 9.1472C1.87895 9.9419 2.21823 10.754 2.89841 11.2035L3.29461 11.4654L2.12846 17.6314C1.89568 18.8622 2.84811 20 4.11124 20H7.77304C8.76082 20 9.60333 19.2909 9.76364 18.3246L10.1908 15.75H13.2037C14.0137 15.75 14.7197 15.2035 14.9162 14.4244L15.5275 12H18.4682C19.8567 12 21.0671 11.0631 21.4038 9.72761L21.9082 7.72761C22.3856 5.83416 20.9411 4 18.9725 4H4.73145ZM13.9679 12H10.8129L10.4396 14.25H13.2037C13.3194 14.25 13.4203 14.1719 13.4483 14.0606L13.9679 12ZM4.01743 9.53943L4.73145 6H18.9725C19.6287 6 20.1102 6.61139 19.9511 7.24253L19.4467 9.24254C19.3345 9.6877 18.931 10 18.4682 10H10.8129C9.8251 10 8.9826 10.7091 8.82229 11.6754L7.77304 18H4.11124L5.2774 11.834C5.42642 11.046 5.08645 10.246 4.41363 9.80129L4.01743 9.53943Z"></path></svg><div class="LabelContainer">FPS</div></a><a aria-label="Horror" href="https://www.crazygames.com/t/horror" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M7 16.6676L12 19.6676L17 16.6676L20 18.4676V12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12V18.4676L7 16.6676ZM2.95353 21.4279C2.53388 21.6797 2 21.3774 2 20.888V12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12V20.888C22 21.3774 21.4661 21.6797 21.0465 21.4279L17 19L12 22L7 19L2.95353 21.4279ZM11 11C11 12.1046 10.3284 13 9.5 13C8.67157 13 8 12.1046 8 11C8 9.89543 8.67157 9 9.5 9C10.3284 9 11 9.89543 11 11ZM14.5 13C15.3284 13 16 12.1046 16 11C16 9.89543 15.3284 9 14.5 9C13.6716 9 13 9.89543 13 11C13 12.1046 13.6716 13 14.5 13Z"></path></svg><div class="LabelContainer">Horror</div></a><a aria-label=".io" href="https://www.crazygames.com/c/io" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M4 12C4 7.58172 7.58172 4 12 4C13.9129 4 15.668 4.67045 17.0449 5.79082L11.305 11.3399C11.1112 11.5272 11.0012 11.7849 11 12.0544C10.9988 12.3239 11.1065 12.5825 11.2986 12.7716L16.9228 18.3065C15.565 19.3683 13.8569 20 12 20C7.58172 20 4 16.4183 4 12ZM12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C14.7732 22 17.2843 20.8698 19.0947 19.0474C19.2821 18.8587 19.3867 18.603 19.3852 18.337C19.3837 18.071 19.2762 17.8165 19.0866 17.6299L13.4321 12.0652L19.195 6.49399C19.5908 6.11137 19.6029 5.48081 19.2221 5.08327C17.4031 3.18438 14.839 2 12 2ZM10 6C8.89543 6 8 6.89543 8 8C8 9.10457 8.89543 10 10 10C11.1046 10 12 9.10457 12 8C12 6.89543 11.1046 6 10 6ZM20 12C20 11.4477 20.4477 11 21 11C21.5523 11 22 11.4477 22 12C22 12.5523 21.5523 13 21 13C20.4477 13 20 12.5523 20 12ZM17 11C16.4477 11 16 11.4477 16 12C16 12.5523 16.4477 13 17 13H18C18.5523 13 19 12.5523 19 12C19 11.4477 18.5523 11 18 11H17Z"></path></svg><div class="LabelContainer">.io</div></a><a aria-label="Mahjong" href="https://www.crazygames.com/t/mahjong" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M18 4H6V20H18V4ZM6 2C4.89543 2 4 2.89543 4 4V20C4 21.1046 4.89543 22 6 22H18C19.1046 22 20 21.1046 20 20V4C20 2.89543 19.1046 2 18 2H6ZM12 6.25C12.4142 6.25 12.75 6.58579 12.75 7L12.75 8H14.7802C15.4112 8 15.8845 8.57732 15.7608 9.19612L15.1608 12.1961C15.0673 12.6635 14.6569 13 14.1802 13H12.75L12.75 15.438C12.75 15.8473 12.6065 16.2438 12.3444 16.5583L11.5762 17.4801C11.311 17.7983 10.8381 17.8413 10.5199 17.5762C10.2017 17.311 10.1587 16.8381 10.4238 16.5199L11.1921 15.598C11.2295 15.5531 11.25 15.4964 11.25 15.438L11.25 13H9.81979C9.34311 13 8.9327 12.6635 8.83921 12.1961L8.23921 9.19612C8.11545 8.57733 8.58875 8 9.21979 8H11.25L11.25 7C11.25 6.58579 11.5858 6.25 12 6.25ZM11.25 9.5H9.82969L10.2297 11.5H11.25L11.25 9.5ZM12.75 11.5H13.7703L14.1703 9.5H12.75L12.75 11.5Z"></path></svg><div class="LabelContainer">Mahjong</div></a><a aria-label="Minecraft" href="https://www.crazygames.com/t/minecraft" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 2H14V3V4H16V5H17H19V7V8H20V10H21H22V12V13V15V18H19V15V13H18V11H17V10H16H15V12H13V14H11V16H9V18H7V20H5V22H2V19H4V17H6V15H8V13H10V11H12V9H14V8V7H13V6H11V5H9H6V2H9H11H12Z"></path></svg><div class="LabelContainer">Minecraft</div></a><a aria-label="Multiplayer" href="https://www.crazygames.com/t/multiplayer" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M9 4C7.34315 4 6 5.34315 6 7C6 8.65685 7.34315 10 9 10C10.6569 10 12 8.65685 12 7C12 5.34315 10.6569 4 9 4ZM4 7C4 4.23858 6.23858 2 9 2C10.1256 2 11.1644 2.37197 12.0001 2.99969C12.8355 2.37247 13.8751 2 15 2C17.7614 2 20 4.23858 20 7C20 9.76142 17.7614 12 15 12C13.8749 12 12.8354 11.6275 12.0001 11.0003C11.1644 11.628 10.1256 12 9 12C6.23858 12 4 9.76142 4 7ZM13.3338 9.4953C13.8105 9.81451 14.383 10 15 10C16.6569 10 18 8.65685 18 7C18 5.34315 16.6569 4 15 4C14.3829 4 13.8105 4.18553 13.3338 4.50471C13.7576 5.23908 14 6.09123 14 7C14 7.90878 13.7576 8.76093 13.3338 9.4953ZM9 15C6.22914 15 4 17.1922 4 19.9695V19.9771H14V19.9695C14 17.1922 11.7709 15 9 15ZM16 19.9771H20V19.9695C20 17.1922 17.7709 15 15 15C14.6505 15 14.3172 15.0253 14.0011 15.0769C15.2368 16.3274 16 18.0475 16 19.9695V19.9771ZM11.9386 13.6356C11.0444 13.2269 10.0485 13 9 13C5.14345 13 2 16.0688 2 19.9695V20.9771C2 21.5294 2.44772 21.9771 3 21.9771H21C21.5523 21.9771 22 21.5294 22 20.9771V19.9695C22 16.0688 18.8566 13 15 13C13.9424 13 12.8952 13.1826 11.9386 13.6356Z"></path></svg><div class="LabelContainer">Multiplayer</div></a><a aria-label="Pool" href="https://www.crazygames.com/t/pool" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 19C15.866 19 19 15.866 19 12C19 8.13401 15.866 5 12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19ZM12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"></path><path d="M13.5341 11.9003C14.0038 12.0259 14.3636 12.2548 14.6136 12.5873C14.8712 12.9197 15 13.3259 15 13.8061C15 14.4931 14.7348 15.0323 14.2045 15.4238C13.6742 15.8079 12.9394 16 12 16C11.0606 16 10.3258 15.8079 9.79545 15.4238C9.26515 15.0323 9 14.4931 9 13.8061C9 13.3259 9.12879 12.9197 9.38636 12.5873C9.64394 12.2475 10.0076 12.0185 10.4773 11.9003C10.0758 11.7525 9.76136 11.5235 9.53409 11.2133C9.30682 10.8957 9.19318 10.5263 9.19318 10.1053C9.19318 9.45522 9.44318 8.94183 9.94318 8.5651C10.4432 8.18837 11.1288 8 12 8C12.8712 8 13.5568 8.18837 14.0568 8.5651C14.5568 8.94183 14.8068 9.45522 14.8068 10.1053C14.8068 10.5337 14.6932 10.9067 14.4659 11.2244C14.2386 11.542 13.928 11.7673 13.5341 11.9003ZM12 9.11911C11.053 9.11911 10.5795 9.49584 10.5795 10.2493C10.5795 10.626 10.697 10.9141 10.9318 11.1136C11.1742 11.3056 11.5303 11.4017 12 11.4017C12.4697 11.4017 12.822 11.3056 13.0568 11.1136C13.2992 10.9141 13.4205 10.626 13.4205 10.2493C13.4205 9.49584 12.947 9.11911 12 9.11911ZM12 14.8809C13.0833 14.8809 13.625 14.4857 13.625 13.6953C13.625 12.9049 13.0833 12.5097 12 12.5097C10.9167 12.5097 10.375 12.9049 10.375 13.6953C10.375 14.4857 10.9167 14.8809 12 14.8809Z"></path></svg><div class="LabelContainer">Pool</div></a><a aria-label="Puzzle" href="https://www.crazygames.com/c/puzzle" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M11 4.88889C11 3.24032 12.3978 2 14 2C15.6022 2 17 3.24032 17 4.88889V5.77778H20C21.0499 5.77778 22 6.59525 22 7.72222V10.5556C22 11.6825 21.0499 12.5 20 12.5H19C18.3931 12.5 18 12.9511 18 13.3889C18 13.8267 18.3931 14.2778 19 14.2778H20C21.0499 14.2778 22 15.0953 22 16.2222V20.0556C22 21.1825 21.0499 22 20 22H17C15.9501 22 15 21.1825 15 20.0556V18.1111C15 17.6733 14.6069 17.2222 14 17.2222C13.3931 17.2222 13 17.6733 13 18.1111V20.0556C13 21.1825 12.0499 22 11 22H8C6.95005 22 6 21.1825 6 20.0556V16.2778H5C3.39777 16.2778 2 15.0375 2 13.3889C2 11.7403 3.39777 10.5 5 10.5H6V7.72222C6 6.59525 6.95005 5.77778 8 5.77778H11V4.88889ZM14 4C13.3931 4 13 4.45105 13 4.88889V5.83333C13 6.9603 12.0499 7.77778 11 7.77778H8V10.5556C8 11.6825 7.04995 12.5 6 12.5H5C4.39309 12.5 4 12.9511 4 13.3889C4 13.8267 4.39309 14.2778 5 14.2778H6C7.04995 14.2778 8 15.0953 8 16.2222L8 20H11V18.1111C11 16.4625 12.3978 15.2222 14 15.2222C15.6022 15.2222 17 16.4625 17 18.1111V20H20V16.2778H19C17.3978 16.2778 16 15.0375 16 13.3889C16 11.7403 17.3978 10.5 19 10.5H20V7.77778H17C15.9501 7.77778 15 6.9603 15 5.83333V4.88889C15 4.45105 14.6069 4 14 4Z"></path></svg><div class="LabelContainer">Puzzle</div></a><a aria-label="Shooting" href="https://www.crazygames.com/c/shooting" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 2C12.5523 2 13 2.44772 13 3V4.06189C16.6187 4.51314 19.4869 7.38128 19.9381 11H21C21.5523 11 22 11.4477 22 12C22 12.5523 21.5523 13 21 13H19.9381C19.4869 16.6187 16.6187 19.4869 13 19.9381V21C13 21.5523 12.5523 22 12 22C11.4477 22 11 21.5523 11 21V19.9381C7.38128 19.4869 4.51314 16.6187 4.06189 13H3C2.44772 13 2 12.5523 2 12C2 11.4477 2.44772 11 3 11H4.06189C4.51314 7.38128 7.38128 4.51314 11 4.06189V3C11 2.44772 11.4477 2 12 2ZM11.0033 6.0824C8.48814 6.5029 6.5029 8.48814 6.0824 11.0033C6.59614 11.0452 7 11.4755 7 12C7 12.5245 6.59614 12.9548 6.0824 12.9967C6.5029 15.5119 8.48814 17.4971 11.0033 17.9176C11.0452 17.4039 11.4755 17 12 17C12.5245 17 12.9548 17.4039 12.9967 17.9176C15.5119 17.4971 17.4971 15.5119 17.9176 12.9967C17.4039 12.9548 17 12.5245 17 12C17 11.4755 17.4039 11.0452 17.9176 11.0033C17.4971 8.48814 15.5119 6.5029 12.9967 6.0824C12.9548 6.59614 12.5245 7 12 7C11.4755 7 11.0452 6.59614 11.0033 6.0824ZM12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10ZM8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12Z"></path></svg><div class="LabelContainer">Shooting</div></a><a aria-label="Soccer" href="https://www.crazygames.com/t/soccer" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path d="M12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2ZM13.67 16H10.33L8.95 17.897L9.504 19.603C10.3097 19.8669 11.1522 20.0009 12 20C12.871 20 13.71 19.86 14.496 19.603L15.049 17.897L13.669 16H13.67ZM5.294 10.872L4.002 11.809L4 12C4 13.73 4.549 15.331 5.482 16.64H7.392L8.715 14.82L7.687 11.65L5.294 10.872ZM18.706 10.872L16.313 11.65L15.285 14.82L16.607 16.64H18.517C19.4838 15.2862 20.0024 13.6636 20 12L19.997 11.81L18.706 10.872ZM12 9.536L9.656 11.238L10.552 14H13.447L14.343 11.238L12 9.536ZM14.291 4.333L13 5.273V7.79L15.694 9.747L17.933 9.02L18.487 7.317C17.4546 5.88787 15.9798 4.83905 14.291 4.333ZM9.708 4.333C8.01941 4.83951 6.54495 5.88868 5.513 7.318L6.067 9.02L8.306 9.747L11 7.79V5.273L9.708 4.333Z"></path></svg><div class="LabelContainer">Soccer</div></a><a aria-label="Sports" href="https://www.crazygames.com/c/sports" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M19.9919 6.15083C20.0437 7.51638 20.1056 9.21045 19.7911 10.9807L13.0193 4.20888C14.7896 3.89445 16.4836 3.95635 17.8492 4.0081C19.0483 4.05355 19.9465 4.95176 19.9919 6.15083ZM16.8184 16.8184C17.9542 15.6826 18.6979 14.4474 19.1805 13.1985L10.8015 4.8195C9.55263 5.30217 8.31745 6.04578 7.18165 7.18159C6.02307 8.34017 5.27256 9.60215 4.79084 10.8766L13.1234 19.2092C14.3979 18.7275 15.6599 17.977 16.8184 16.8184ZM10.8923 19.8065L4.19353 13.1077C3.89657 14.8459 3.95727 16.5063 4.00816 17.8491C4.05361 19.0482 4.95182 19.9464 6.15089 19.9919C7.49368 20.0428 9.15412 20.1035 10.8923 19.8065ZM17.9249 2.00954C20.1691 2.09459 21.9054 3.83092 21.9905 6.07508L21.9945 6.17983C22.1034 9.03534 22.299 14.1662 18.2327 18.2326C14.1663 22.2989 9.0354 22.1033 6.1799 21.9944L6.07515 21.9904C3.83098 21.9054 2.09465 20.169 2.0096 17.9249L2.00561 17.8201C1.89673 14.9646 1.70109 9.83372 5.76743 5.76737C9.83378 1.70103 14.9647 1.89667 17.8202 2.00555L17.9249 2.00954ZM10.7071 9.29289C10.3166 8.90237 9.68345 8.90237 9.29292 9.29289C8.9024 9.68342 8.9024 10.3166 9.29292 10.7071L13.2929 14.7071C13.6834 15.0976 14.3166 15.0976 14.7071 14.7071C15.0977 14.3166 15.0977 13.6834 14.7071 13.2929L10.7071 9.29289Z"></path></svg><div class="LabelContainer">Sports</div></a><a aria-label="Stickman" href="https://www.crazygames.com/t/stick" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M15 5.5C15 6.752 14.0797 7.78905 12.8786 7.97152L14.8386 10.0165C15.2206 10.4151 15.8534 10.4286 16.2522 10.0467L17.3083 9.03531C17.7072 8.65332 18.3402 8.66701 18.7222 9.06588C19.1042 9.46476 19.0905 10.0978 18.6916 10.4798L17.6355 11.4912C16.4392 12.6368 14.5408 12.5962 13.3947 11.4004L13.2738 11.2742L12.2742 15.2724C12.2476 15.3787 12.2103 15.4795 12.1637 15.574L14.2219 16.9461C14.5514 17.1658 14.8342 17.4486 15.0539 17.7781L16.832 20.4453C17.1384 20.9048 17.0142 21.5257 16.5547 21.832C16.0952 22.1384 15.4743 22.0142 15.1679 21.5547L13.3898 18.8875C13.3166 18.7777 13.2223 18.6834 13.1125 18.6102L10.5125 16.8769L10.0556 17.8759C9.67127 18.7162 8.92113 19.3325 8.02221 19.5465L6.2316 19.9728C5.69433 20.1007 5.1551 19.7689 5.02719 19.2316C4.89928 18.6943 5.23113 18.1551 5.7684 18.0272L7.55901 17.6009C7.85865 17.5296 8.1087 17.3241 8.23681 17.044L9.34817 14.6141C9.35282 14.591 9.35803 14.5679 9.3638 14.5448L10.5497 9.80111L9.64545 9.95182C9.48741 9.97816 9.33802 10.0421 9.20985 10.1382L7.6 11.3456C7.15817 11.677 6.53137 11.5874 6.2 11.1456C5.86863 10.7038 5.95817 10.077 6.4 9.7456L8.00985 8.53821C8.39437 8.24983 8.84254 8.05805 9.31665 7.97903L11.2383 7.65875C10.4975 7.22485 10 6.42053 10 5.5C10 4.11929 11.1193 3 12.5 3C13.8807 3 15 4.11929 15 5.5Z"></path></svg><div class="LabelContainer">Stickman</div></a><a aria-label="Tower Defense" href="https://www.crazygames.com/t/tower-defense" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M2 4C2 2.89543 2.89543 2 4 2H5.27924C6.1401 2 6.90438 2.55086 7.17661 3.36754L7.72076 5H9V4C9 2.89543 9.89543 2 11 2H13C14.1046 2 15 2.89543 15 4V5H16.2792L16.8234 3.36754C17.0956 2.55086 17.8599 2 18.7208 2H20C21.1046 2 22 2.89543 22 4V8.73444C22 9.08249 21.9092 9.42452 21.7365 9.72671L20 12.7656V20C20 21.1046 19.1046 22 18 22H14.0962C13.4908 22 13 21.5092 13 20.9038V18C13 17.4477 12.5523 17 12 17C11.4477 17 11 17.4477 11 18V20.9038C11 21.5092 10.5092 22 9.90385 22H6C4.89543 22 4 21.1046 4 20V12.7656L2.26351 9.72671C2.09083 9.42452 2 9.08249 2 8.73444V4ZM5.27924 4H4V8.73444L5.73649 11.7733C5.90917 12.0755 6 12.4175 6 12.7656V20H9V18C9 16.3431 10.3431 15 12 15C13.6569 15 15 16.3431 15 18V20H18V12.7656C18 12.4175 18.0908 12.0755 18.2635 11.7733L20 8.73444V4H18.7208L18.1766 5.63246C17.9044 6.44914 17.1401 7 16.2792 7H15C13.8954 7 13 6.10457 13 5V4H11V5C11 6.10457 10.1046 7 9 7H7.72076C6.8599 7 6.09562 6.44914 5.82339 5.63246L5.27924 4Z"></path></svg><div class="LabelContainer">Tower Defense</div></a><hr class="MuiDivider-root MuiDivider-fullWidth css-148wt6v"/><a aria-label="Tags" href="https://www.crazygames.com/tags" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M7 4C5.34315 4 4 5.34315 4 7V12C4 12.2985 4.12956 12.5656 4.33882 12.7503L4.36217 12.7709L11.3584 19.7671C11.5326 19.9131 11.755 20 12 20C12.245 20 12.4674 19.9131 12.6416 19.7671L19.6158 12.7929C19.6305 12.7782 19.6456 12.764 19.6612 12.7503C19.8704 12.5656 20 12.2985 20 12C20 11.755 19.9131 11.5326 19.7671 11.3584L12.7929 4.38419C12.7782 4.36952 12.764 4.35438 12.7503 4.33882C12.5656 4.12956 12.2985 4 12 4H7ZM2 7C2 4.23858 4.23858 2 7 2H12C12.8838 2 13.6793 2.3834 14.2269 2.98978L21.2071 9.96998C21.2218 9.98466 21.236 9.99979 21.2497 10.0154C21.716 10.5436 22 11.2398 22 12C22 12.8838 21.6166 13.6793 21.0102 14.2269L14.03 21.2071C14.0153 21.2218 14.0002 21.236 13.9846 21.2497C13.4564 21.716 12.7602 22 12 22C11.2398 22 10.5436 21.716 10.0154 21.2497C9.99979 21.236 9.98466 21.2218 9.96998 21.2071L2.98978 14.2269C2.3834 13.6793 2 12.8838 2 12V7ZM6 7C6 6.44772 6.44772 6 7 6H7.01C7.56228 6 8.01 6.44772 8.01 7C8.01 7.55228 7.56228 8 7.01 8H7C6.44772 8 6 7.55228 6 7Z"></path></svg><div class="LabelContainer">Tags</div></a><div style="height:30px"></div></div><div class="css-1hfy2mq"><a aria-label="Contact Us" href="https://www.crazygames.com/contact" class="css-1s73xoa"><svg viewBox="0 0 24 24" focusable="false" aria-hidden="true" class="css-6qu7l6"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.99998 7C1.99998 5.34315 3.34313 4 4.99998 4H19C20.6568 4 22 5.34315 22 7V7.98448C22.0001 7.99422 22.0001 8.00395 22 8.01368V17C22 18.6569 20.6568 20 19 20H4.99998C3.34313 20 1.99998 18.6569 1.99998 17V8.01367C1.99984 8.00395 1.99984 7.99422 1.99998 7.98449V7ZM3.99998 9.86852V17C3.99998 17.5523 4.4477 18 4.99998 18H19C19.5523 18 20 17.5523 20 17V9.86852L13.6641 14.0925C12.6564 14.7642 11.3436 14.7642 10.3359 14.0925L3.99998 9.86852ZM20 7.46482L12.5547 12.4283C12.2188 12.6523 11.7812 12.6523 11.4453 12.4283L3.99998 7.46482V7C3.99998 6.44772 4.4477 6 4.99998 6H19C19.5523 6 20 6.44772 20 7V7.46482Z"></path></svg><div class="LabelContainer">Contact Us</div></a></div></nav><div class="css-wwwalv"></div><main id="layoutMain" class="css-6t4bsj"><div class="css-linpkp"><div class="css-19dlbhf"></div></div><div style="padding-bottom:20px;position:relative"><div class="css-1iuj5ih"><div class="css-cydm8w"><div class="titleContainer css-x933z2"><h2 class="carouselTitle">Recommended for you</h2></div><div class="prime-carousel css-1nehx92"><ul class="prime-carousel-container css-lpurl3"><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/bloxdhop-io"><div class="gameThumbTitleContainer">Bloxd.io</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Bloxd.io" srcSet="https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=428&h=237&fit=crop 429w,
https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=436&h=241&fit=crop 437w,
https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=448&h=248&fit=crop 449w,
https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=471&h=229&fit=crop 472w,
https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=519&h=289&fit=crop 520w,
https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=675&h=378&fit=crop 676w,
https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=710&h=398&fit=crop 711w" sizes="(min-width:3000px) 710px,
(min-width:2100px) 675px,
(min-width:1200px) 519px,
(min-width:1000px) 428px,
(min-width:800px) 436px,
(min-width:600px) 448px,
471px" fetchpriority="high"/></a></li><li class="primeCarouselLi"><div class="css-1ajq493"><a class="css-196mb08" href="https://www.crazygames.com/game/capybara-clicker"><div class="gameThumbTitleContainer">Capybara Clicker</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/games/capybara-clicker/cover-1678290947532.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Capybara Clicker" srcSet="https://images.crazygames.com/games/capybara-clicker/cover-1678290947532.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/capybara-clicker/cover-1678290947532.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/capybara-clicker/cover-1678290947532.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/capybara-clicker/cover-1678290947532.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/capybara-clicker/cover-1678290947532.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/capybara-clicker/cover-1678290947532.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/capybara-clicker/cover-1678290947532.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a><a class="css-196mb08" href="https://www.crazygames.com/game/smash-karts"><div class="gameThumbTitleContainer">Smash Karts</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Smash Karts" srcSet="https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a><a class="css-196mb08" href="https://www.crazygames.com/game/crazy-roll-3d"><div class="gameThumbTitleContainer">Crazy Roll 3D</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Crazy Roll 3D" srcSet="https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a><a class="css-196mb08" href="https://www.crazygames.com/game/buildnow-gg"><div class="gameThumbTitleContainer">BuildNow GG</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/buildnow-gg/20210823164305/buildnow-gg-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="BuildNow GG" srcSet="https://images.crazygames.com/buildnow-gg/20210823164305/buildnow-gg-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/buildnow-gg/20210823164305/buildnow-gg-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/buildnow-gg/20210823164305/buildnow-gg-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/buildnow-gg/20210823164305/buildnow-gg-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/buildnow-gg/20210823164305/buildnow-gg-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/buildnow-gg/20210823164305/buildnow-gg-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/buildnow-gg/20210823164305/buildnow-gg-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></div></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-nctlmm" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><div class="css-1ajq493"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></div></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-nctlmm" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><div class="css-1ajq493"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></div></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-nctlmm" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><div class="css-1ajq493"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></div></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-nctlmm" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><div class="css-1ajq493"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-15ovic2" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></div></li></ul><button class="arrow css-1pzb6vf" aria-label="Right arrow"></button></div></div><div class="css-1la1o8y"><div class="titleContainer css-18689kv"><h2 class="carouselTitle">Featured games</h2></div> <div class="prime-carousel css-1nehx92"><ul class="prime-carousel-container css-lpurl3"><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/max-vs-gangsters"><div class="gameThumbTitleContainer">Max vs Gangsters</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/max-vs-gangsters/20230403144826/max-vs-gangsters-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Max vs Gangsters" srcSet="https://images.crazygames.com/max-vs-gangsters/20230403144826/max-vs-gangsters-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/max-vs-gangsters/20230403144826/max-vs-gangsters-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/max-vs-gangsters/20230403144826/max-vs-gangsters-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/max-vs-gangsters/20230403144826/max-vs-gangsters-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/max-vs-gangsters/20230403144826/max-vs-gangsters-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/max-vs-gangsters/20230403144826/max-vs-gangsters-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/max-vs-gangsters/20230403144826/max-vs-gangsters-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/crazy-farming"><div class="gameThumbTitleContainer">Crazy Farming</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/games/crazy-farming/cover-1680810844828.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Crazy Farming" srcSet="https://images.crazygames.com/games/crazy-farming/cover-1680810844828.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/crazy-farming/cover-1680810844828.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/crazy-farming/cover-1680810844828.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/crazy-farming/cover-1680810844828.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/crazy-farming/cover-1680810844828.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/crazy-farming/cover-1680810844828.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/crazy-farming/cover-1680810844828.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/inca-cubes-2048"><div class="gameThumbTitleContainer">Inca Cubes 2048</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Inca Cubes 2048" srcSet="https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/farm-family"><div class="gameThumbTitleContainer">Farm Family</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/farm-family/20230331124843/farm-family-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Farm Family" srcSet="https://images.crazygames.com/farm-family/20230331124843/farm-family-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/farm-family/20230331124843/farm-family-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/farm-family/20230331124843/farm-family-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/farm-family/20230331124843/farm-family-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/farm-family/20230331124843/farm-family-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/farm-family/20230331124843/farm-family-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/farm-family/20230331124843/farm-family-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/farmer-challenge-party"><div class="gameThumbTitleContainer">Farmer Challenge Party</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/farmer-challenge-party/20230406071707/farmer-challenge-party-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Farmer Challenge Party" srcSet="https://images.crazygames.com/farmer-challenge-party/20230406071707/farmer-challenge-party-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/farmer-challenge-party/20230406071707/farmer-challenge-party-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/farmer-challenge-party/20230406071707/farmer-challenge-party-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/farmer-challenge-party/20230406071707/farmer-challenge-party-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/farmer-challenge-party/20230406071707/farmer-challenge-party-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/farmer-challenge-party/20230406071707/farmer-challenge-party-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/farmer-challenge-party/20230406071707/farmer-challenge-party-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/tiny-fishing"><div class="gameThumbTitleContainer">Tiny Fishing</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Tiny Fishing" srcSet="https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/captains-idle"><div class="gameThumbTitleContainer">Captains Idle</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/captains-idle/20230323175033/captains-idle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Captains Idle" srcSet="https://images.crazygames.com/captains-idle/20230323175033/captains-idle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/captains-idle/20230323175033/captains-idle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/captains-idle/20230323175033/captains-idle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/captains-idle/20230323175033/captains-idle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/captains-idle/20230323175033/captains-idle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/captains-idle/20230323175033/captains-idle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/captains-idle/20230323175033/captains-idle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/911-cannibal"><div class="gameThumbTitleContainer">911: Cannibal</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/911-cannibal/20230324162711/911-cannibal-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="911: Cannibal" srcSet="https://images.crazygames.com/911-cannibal/20230324162711/911-cannibal-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/911-cannibal/20230324162711/911-cannibal-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/911-cannibal/20230324162711/911-cannibal-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/911-cannibal/20230324162711/911-cannibal-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/911-cannibal/20230324162711/911-cannibal-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/911-cannibal/20230324162711/911-cannibal-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/911-cannibal/20230324162711/911-cannibal-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li></ul><button class="arrow css-1pzb6vf" aria-label="Right arrow"></button></div></div><div class="css-1la1o8y"><div class="titleContainer css-18689kv"><h2 class="carouselTitle">New games</h2><a class="carouselTitleLink" href="https://www.crazygames.com/new">View more</a></div> <div class="prime-carousel css-1nehx92"><ul class="prime-carousel-container css-lpurl3"><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/human-resistance"><svg width="39" height="27" viewBox="0 0 39 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#new-b)"><path d="M5 0H25.5C31.299 0 36 4.70101 36 10.5C36 16.299 31.299 21 25.5 21H5V0Z" fill="url(#new-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF2264"></path><path d="m5 27h -2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A30131"></path><path d="m10.367 11.574h0.1406v-4.8633c0-0.125 0.0078-0.24219 0.0234-0.35156 0.0157-0.11329 0.0489-0.21094 0.0997-0.29297 0.0546-0.08203 0.1328-0.14649 0.2343-0.19336 0.1055-0.05078 0.2481-0.07617 0.4278-0.07617 0.1992 0 0.3554 0.02539 0.4687 0.07617 0.1172 0.04687 0.2051 0.11133 0.2637 0.19336s0.0957 0.17968 0.1113 0.29297c0.0156 0.10937 0.0235 0.22656 0.0235 0.35156v5.9414c0 0.1719-0.0059 0.3379-0.0176 0.4981-0.0078 0.1601-0.0391 0.3047-0.0938 0.4336-0.0508 0.125-0.1367 0.2265-0.2578 0.3047-0.1172 0.0742-0.2832 0.1113-0.498 0.1113h-0.7735c-0.1836 0-0.3379-0.0352-0.4629-0.1055-0.12105-0.0742-0.22262-0.1621-0.30465-0.2636-0.08203-0.1055-0.14843-0.2149-0.19922-0.3282-0.04687-0.1132-0.08398-0.2089-0.11132-0.2871l-1.7695-4.7929h-0.14063v4.8632c0 0.125-0.00781 0.2442-0.02344 0.3575-0.01562 0.1093-0.05078 0.205-0.10547 0.2871-0.05078 0.082-0.1289 0.1484-0.23437 0.1992-0.10156 0.0469-0.24219 0.0703-0.42188 0.0703-0.20312 0-0.36328-0.0234-0.48047-0.0703-0.11718-0.0508-0.20507-0.1172-0.26367-0.1992-0.05859-0.0821-0.0957-0.1778-0.11133-0.2871-0.01562-0.1133-0.02343-0.2325-0.02343-0.3575v-5.9414c0-0.16797 0.0039-0.33203 0.01172-0.49219 0.01171-0.16406 0.04492-0.30859 0.09961-0.43359 0.05468-0.12891 0.14062-0.23047 0.25781-0.30469 0.12109-0.07812 0.29101-0.11718 0.50976-0.11718h0.77344c0.19531 0 0.35352 0.03906 0.47461 0.11718 0.125 0.07422 0.22656 0.15625 0.30469 0.2461 0.08594 0.10546 0.15429 0.22656 0.20508 0.36328l1.8633 5.0508zm6.5976-5.7773c0.1563 0 0.3145 0.00585 0.4747 0.01757 0.1601 0.01172 0.3046 0.04493 0.4335 0.09961 0.129 0.05469 0.2344 0.13867 0.3165 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3165 0.24609-0.1289 0.05469-0.2734 0.08789-0.4335 0.09961-0.1602 0.01172-0.3184 0.01758-0.4747 0.01758h-1.3945v1.5938h0.7383c0.1562 0 0.3125 0.00586 0.4687 0.01758 0.1602 0.00781 0.3008 0.03906 0.4219 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4219 0.0937-0.1562 0.0078-0.3125 0.0117-0.4687 0.0117h-0.7383v1.6875h1.3945c0.1563 0 0.3145 0.0059 0.4747 0.0176 0.1601 0.0117 0.3046 0.0449 0.4335 0.0996 0.129 0.0508 0.2344 0.1328 0.3165 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.043 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996-0.3164 0.0176-0.4688 0.0176h-2.2968c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2968zm6.7149 0.03515c0.1094 0 0.2109 0.01953 0.3047 0.05859 0.0976 0.03907 0.1836 0.09376 0.2578 0.16407 0.0781 0.0664 0.1445 0.14843 0.1992 0.24609 0.0547 0.09375 0.0938 0.19531 0.1172 0.30469l1.0078 4.6757h0.1992c0.1641-0.7617 0.3321-1.539 0.5039-2.332 0.1719-0.79688 0.3438-1.5781 0.5157-2.3438 0.0351-0.14844 0.0878-0.2832 0.1582-0.4043 0.0625-0.10156 0.1484-0.19336 0.2578-0.27539 0.1133-0.08594 0.2597-0.1289 0.4394-0.1289 0.1367 0 0.2559 0.02539 0.3574 0.07617 0.1055 0.04687 0.1915 0.10937 0.2579 0.1875 0.0703 0.07422 0.1211 0.15625 0.1523 0.24609 0.0352 0.08984 0.0527 0.17774 0.0527 0.26367 0 0.04688-0.0019 0.0918-0.0058 0.13477s-0.0098 0.08008-0.0176 0.11133c-0.0078 0.03906-0.0156 0.07421-0.0234 0.10547l-1.6055 6.375c-0.0586 0.1328-0.1367 0.25-0.2344 0.3515-0.082 0.0899-0.1894 0.1719-0.3222 0.2461-0.129 0.0703-0.2911 0.1055-0.4864 0.1055h-0.1992c-0.1953 0-0.3555-0.0352-0.4805-0.1055-0.125-0.0742-0.2246-0.1562-0.2988-0.2461-0.0859-0.1015-0.1504-0.2187-0.1933-0.3515l-0.8204-3.4336h-0.1992c-0.125 0.55472-0.2597 1.1269-0.4043 1.7168-0.1406 0.5898-0.2754 1.1621-0.4043 1.7168-0.0508 0.1328-0.1191 0.25-0.2051 0.3515-0.0781 0.0899-0.1796 0.1719-0.3046 0.2461-0.1211 0.0703-0.2793 0.1055-0.4747 0.1055h-0.1992c-0.1953 0-0.3613-0.0352-0.498-0.1055-0.1328-0.0742-0.2422-0.1562-0.3281-0.2461-0.1016-0.1015-0.1817-0.2187-0.2403-0.3515l-1.582-6.375c-0.0078-0.03126-0.0156-0.06641-0.0234-0.10547-0.0079-0.03125-0.0137-0.06836-0.0176-0.11133s-0.0059-0.08789-0.0059-0.13477c0-0.08593 0.0156-0.17383 0.0469-0.26367 0.0352-0.08984 0.0859-0.17187 0.1523-0.24609 0.0703-0.07813 0.1563-0.14063 0.2579-0.1875 0.1054-0.05078 0.2265-0.07617 0.3632-0.07617 0.1797 0 0.3242 0.04296 0.4336 0.1289 0.1133 0.08203 0.2012 0.17383 0.2637 0.27539 0.0703 0.1211 0.123 0.25586 0.1582 0.4043l1.0195 4.6757h0.1992c0.0743-0.3593 0.1543-0.7363 0.2403-1.1308 0.0859-0.39845 0.1719-0.79884 0.2578-1.2012 0.0898-0.40625 0.1777-0.80664 0.2637-1.2012 0.0898-0.39844 0.1758-0.7793 0.2578-1.1426 0.0547-0.22266 0.1601-0.40625 0.3164-0.55078 0.1562-0.14844 0.3437-0.22266 0.5625-0.22266z" fill="#fff"></path><defs><filter id="new-b" x="2" y="0" width="37" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18375"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18375" result="shape"></feBlend></filter><linearGradient id="new-a" x1="36" x2="5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF6A85"></stop><stop offset="1" stop-color="#FF2264"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Human Resistance</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/human-resistance/20230406121905/human-resistance-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Human Resistance" srcSet="https://images.crazygames.com/human-resistance/20230406121905/human-resistance-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/human-resistance/20230406121905/human-resistance-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/human-resistance/20230406121905/human-resistance-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/human-resistance/20230406121905/human-resistance-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/human-resistance/20230406121905/human-resistance-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/human-resistance/20230406121905/human-resistance-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/human-resistance/20230406121905/human-resistance-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/archer-defense"><svg width="39" height="27" viewBox="0 0 39 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#new-b)"><path d="M5 0H25.5C31.299 0 36 4.70101 36 10.5C36 16.299 31.299 21 25.5 21H5V0Z" fill="url(#new-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF2264"></path><path d="m5 27h -2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A30131"></path><path d="m10.367 11.574h0.1406v-4.8633c0-0.125 0.0078-0.24219 0.0234-0.35156 0.0157-0.11329 0.0489-0.21094 0.0997-0.29297 0.0546-0.08203 0.1328-0.14649 0.2343-0.19336 0.1055-0.05078 0.2481-0.07617 0.4278-0.07617 0.1992 0 0.3554 0.02539 0.4687 0.07617 0.1172 0.04687 0.2051 0.11133 0.2637 0.19336s0.0957 0.17968 0.1113 0.29297c0.0156 0.10937 0.0235 0.22656 0.0235 0.35156v5.9414c0 0.1719-0.0059 0.3379-0.0176 0.4981-0.0078 0.1601-0.0391 0.3047-0.0938 0.4336-0.0508 0.125-0.1367 0.2265-0.2578 0.3047-0.1172 0.0742-0.2832 0.1113-0.498 0.1113h-0.7735c-0.1836 0-0.3379-0.0352-0.4629-0.1055-0.12105-0.0742-0.22262-0.1621-0.30465-0.2636-0.08203-0.1055-0.14843-0.2149-0.19922-0.3282-0.04687-0.1132-0.08398-0.2089-0.11132-0.2871l-1.7695-4.7929h-0.14063v4.8632c0 0.125-0.00781 0.2442-0.02344 0.3575-0.01562 0.1093-0.05078 0.205-0.10547 0.2871-0.05078 0.082-0.1289 0.1484-0.23437 0.1992-0.10156 0.0469-0.24219 0.0703-0.42188 0.0703-0.20312 0-0.36328-0.0234-0.48047-0.0703-0.11718-0.0508-0.20507-0.1172-0.26367-0.1992-0.05859-0.0821-0.0957-0.1778-0.11133-0.2871-0.01562-0.1133-0.02343-0.2325-0.02343-0.3575v-5.9414c0-0.16797 0.0039-0.33203 0.01172-0.49219 0.01171-0.16406 0.04492-0.30859 0.09961-0.43359 0.05468-0.12891 0.14062-0.23047 0.25781-0.30469 0.12109-0.07812 0.29101-0.11718 0.50976-0.11718h0.77344c0.19531 0 0.35352 0.03906 0.47461 0.11718 0.125 0.07422 0.22656 0.15625 0.30469 0.2461 0.08594 0.10546 0.15429 0.22656 0.20508 0.36328l1.8633 5.0508zm6.5976-5.7773c0.1563 0 0.3145 0.00585 0.4747 0.01757 0.1601 0.01172 0.3046 0.04493 0.4335 0.09961 0.129 0.05469 0.2344 0.13867 0.3165 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3165 0.24609-0.1289 0.05469-0.2734 0.08789-0.4335 0.09961-0.1602 0.01172-0.3184 0.01758-0.4747 0.01758h-1.3945v1.5938h0.7383c0.1562 0 0.3125 0.00586 0.4687 0.01758 0.1602 0.00781 0.3008 0.03906 0.4219 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4219 0.0937-0.1562 0.0078-0.3125 0.0117-0.4687 0.0117h-0.7383v1.6875h1.3945c0.1563 0 0.3145 0.0059 0.4747 0.0176 0.1601 0.0117 0.3046 0.0449 0.4335 0.0996 0.129 0.0508 0.2344 0.1328 0.3165 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.043 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996-0.3164 0.0176-0.4688 0.0176h-2.2968c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2968zm6.7149 0.03515c0.1094 0 0.2109 0.01953 0.3047 0.05859 0.0976 0.03907 0.1836 0.09376 0.2578 0.16407 0.0781 0.0664 0.1445 0.14843 0.1992 0.24609 0.0547 0.09375 0.0938 0.19531 0.1172 0.30469l1.0078 4.6757h0.1992c0.1641-0.7617 0.3321-1.539 0.5039-2.332 0.1719-0.79688 0.3438-1.5781 0.5157-2.3438 0.0351-0.14844 0.0878-0.2832 0.1582-0.4043 0.0625-0.10156 0.1484-0.19336 0.2578-0.27539 0.1133-0.08594 0.2597-0.1289 0.4394-0.1289 0.1367 0 0.2559 0.02539 0.3574 0.07617 0.1055 0.04687 0.1915 0.10937 0.2579 0.1875 0.0703 0.07422 0.1211 0.15625 0.1523 0.24609 0.0352 0.08984 0.0527 0.17774 0.0527 0.26367 0 0.04688-0.0019 0.0918-0.0058 0.13477s-0.0098 0.08008-0.0176 0.11133c-0.0078 0.03906-0.0156 0.07421-0.0234 0.10547l-1.6055 6.375c-0.0586 0.1328-0.1367 0.25-0.2344 0.3515-0.082 0.0899-0.1894 0.1719-0.3222 0.2461-0.129 0.0703-0.2911 0.1055-0.4864 0.1055h-0.1992c-0.1953 0-0.3555-0.0352-0.4805-0.1055-0.125-0.0742-0.2246-0.1562-0.2988-0.2461-0.0859-0.1015-0.1504-0.2187-0.1933-0.3515l-0.8204-3.4336h-0.1992c-0.125 0.55472-0.2597 1.1269-0.4043 1.7168-0.1406 0.5898-0.2754 1.1621-0.4043 1.7168-0.0508 0.1328-0.1191 0.25-0.2051 0.3515-0.0781 0.0899-0.1796 0.1719-0.3046 0.2461-0.1211 0.0703-0.2793 0.1055-0.4747 0.1055h-0.1992c-0.1953 0-0.3613-0.0352-0.498-0.1055-0.1328-0.0742-0.2422-0.1562-0.3281-0.2461-0.1016-0.1015-0.1817-0.2187-0.2403-0.3515l-1.582-6.375c-0.0078-0.03126-0.0156-0.06641-0.0234-0.10547-0.0079-0.03125-0.0137-0.06836-0.0176-0.11133s-0.0059-0.08789-0.0059-0.13477c0-0.08593 0.0156-0.17383 0.0469-0.26367 0.0352-0.08984 0.0859-0.17187 0.1523-0.24609 0.0703-0.07813 0.1563-0.14063 0.2579-0.1875 0.1054-0.05078 0.2265-0.07617 0.3632-0.07617 0.1797 0 0.3242 0.04296 0.4336 0.1289 0.1133 0.08203 0.2012 0.17383 0.2637 0.27539 0.0703 0.1211 0.123 0.25586 0.1582 0.4043l1.0195 4.6757h0.1992c0.0743-0.3593 0.1543-0.7363 0.2403-1.1308 0.0859-0.39845 0.1719-0.79884 0.2578-1.2012 0.0898-0.40625 0.1777-0.80664 0.2637-1.2012 0.0898-0.39844 0.1758-0.7793 0.2578-1.1426 0.0547-0.22266 0.1601-0.40625 0.3164-0.55078 0.1562-0.14844 0.3437-0.22266 0.5625-0.22266z" fill="#fff"></path><defs><filter id="new-b" x="2" y="0" width="37" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18375"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18375" result="shape"></feBlend></filter><linearGradient id="new-a" x1="36" x2="5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF6A85"></stop><stop offset="1" stop-color="#FF2264"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Archer Defense</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/archer-defense/20230406153030/archer-defense-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Archer Defense" srcSet="https://images.crazygames.com/archer-defense/20230406153030/archer-defense-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/archer-defense/20230406153030/archer-defense-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/archer-defense/20230406153030/archer-defense-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/archer-defense/20230406153030/archer-defense-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/archer-defense/20230406153030/archer-defense-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/archer-defense/20230406153030/archer-defense-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/archer-defense/20230406153030/archer-defense-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/growmi"><svg width="39" height="27" viewBox="0 0 39 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#new-b)"><path d="M5 0H25.5C31.299 0 36 4.70101 36 10.5C36 16.299 31.299 21 25.5 21H5V0Z" fill="url(#new-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF2264"></path><path d="m5 27h -2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A30131"></path><path d="m10.367 11.574h0.1406v-4.8633c0-0.125 0.0078-0.24219 0.0234-0.35156 0.0157-0.11329 0.0489-0.21094 0.0997-0.29297 0.0546-0.08203 0.1328-0.14649 0.2343-0.19336 0.1055-0.05078 0.2481-0.07617 0.4278-0.07617 0.1992 0 0.3554 0.02539 0.4687 0.07617 0.1172 0.04687 0.2051 0.11133 0.2637 0.19336s0.0957 0.17968 0.1113 0.29297c0.0156 0.10937 0.0235 0.22656 0.0235 0.35156v5.9414c0 0.1719-0.0059 0.3379-0.0176 0.4981-0.0078 0.1601-0.0391 0.3047-0.0938 0.4336-0.0508 0.125-0.1367 0.2265-0.2578 0.3047-0.1172 0.0742-0.2832 0.1113-0.498 0.1113h-0.7735c-0.1836 0-0.3379-0.0352-0.4629-0.1055-0.12105-0.0742-0.22262-0.1621-0.30465-0.2636-0.08203-0.1055-0.14843-0.2149-0.19922-0.3282-0.04687-0.1132-0.08398-0.2089-0.11132-0.2871l-1.7695-4.7929h-0.14063v4.8632c0 0.125-0.00781 0.2442-0.02344 0.3575-0.01562 0.1093-0.05078 0.205-0.10547 0.2871-0.05078 0.082-0.1289 0.1484-0.23437 0.1992-0.10156 0.0469-0.24219 0.0703-0.42188 0.0703-0.20312 0-0.36328-0.0234-0.48047-0.0703-0.11718-0.0508-0.20507-0.1172-0.26367-0.1992-0.05859-0.0821-0.0957-0.1778-0.11133-0.2871-0.01562-0.1133-0.02343-0.2325-0.02343-0.3575v-5.9414c0-0.16797 0.0039-0.33203 0.01172-0.49219 0.01171-0.16406 0.04492-0.30859 0.09961-0.43359 0.05468-0.12891 0.14062-0.23047 0.25781-0.30469 0.12109-0.07812 0.29101-0.11718 0.50976-0.11718h0.77344c0.19531 0 0.35352 0.03906 0.47461 0.11718 0.125 0.07422 0.22656 0.15625 0.30469 0.2461 0.08594 0.10546 0.15429 0.22656 0.20508 0.36328l1.8633 5.0508zm6.5976-5.7773c0.1563 0 0.3145 0.00585 0.4747 0.01757 0.1601 0.01172 0.3046 0.04493 0.4335 0.09961 0.129 0.05469 0.2344 0.13867 0.3165 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3165 0.24609-0.1289 0.05469-0.2734 0.08789-0.4335 0.09961-0.1602 0.01172-0.3184 0.01758-0.4747 0.01758h-1.3945v1.5938h0.7383c0.1562 0 0.3125 0.00586 0.4687 0.01758 0.1602 0.00781 0.3008 0.03906 0.4219 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4219 0.0937-0.1562 0.0078-0.3125 0.0117-0.4687 0.0117h-0.7383v1.6875h1.3945c0.1563 0 0.3145 0.0059 0.4747 0.0176 0.1601 0.0117 0.3046 0.0449 0.4335 0.0996 0.129 0.0508 0.2344 0.1328 0.3165 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.043 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996-0.3164 0.0176-0.4688 0.0176h-2.2968c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2968zm6.7149 0.03515c0.1094 0 0.2109 0.01953 0.3047 0.05859 0.0976 0.03907 0.1836 0.09376 0.2578 0.16407 0.0781 0.0664 0.1445 0.14843 0.1992 0.24609 0.0547 0.09375 0.0938 0.19531 0.1172 0.30469l1.0078 4.6757h0.1992c0.1641-0.7617 0.3321-1.539 0.5039-2.332 0.1719-0.79688 0.3438-1.5781 0.5157-2.3438 0.0351-0.14844 0.0878-0.2832 0.1582-0.4043 0.0625-0.10156 0.1484-0.19336 0.2578-0.27539 0.1133-0.08594 0.2597-0.1289 0.4394-0.1289 0.1367 0 0.2559 0.02539 0.3574 0.07617 0.1055 0.04687 0.1915 0.10937 0.2579 0.1875 0.0703 0.07422 0.1211 0.15625 0.1523 0.24609 0.0352 0.08984 0.0527 0.17774 0.0527 0.26367 0 0.04688-0.0019 0.0918-0.0058 0.13477s-0.0098 0.08008-0.0176 0.11133c-0.0078 0.03906-0.0156 0.07421-0.0234 0.10547l-1.6055 6.375c-0.0586 0.1328-0.1367 0.25-0.2344 0.3515-0.082 0.0899-0.1894 0.1719-0.3222 0.2461-0.129 0.0703-0.2911 0.1055-0.4864 0.1055h-0.1992c-0.1953 0-0.3555-0.0352-0.4805-0.1055-0.125-0.0742-0.2246-0.1562-0.2988-0.2461-0.0859-0.1015-0.1504-0.2187-0.1933-0.3515l-0.8204-3.4336h-0.1992c-0.125 0.55472-0.2597 1.1269-0.4043 1.7168-0.1406 0.5898-0.2754 1.1621-0.4043 1.7168-0.0508 0.1328-0.1191 0.25-0.2051 0.3515-0.0781 0.0899-0.1796 0.1719-0.3046 0.2461-0.1211 0.0703-0.2793 0.1055-0.4747 0.1055h-0.1992c-0.1953 0-0.3613-0.0352-0.498-0.1055-0.1328-0.0742-0.2422-0.1562-0.3281-0.2461-0.1016-0.1015-0.1817-0.2187-0.2403-0.3515l-1.582-6.375c-0.0078-0.03126-0.0156-0.06641-0.0234-0.10547-0.0079-0.03125-0.0137-0.06836-0.0176-0.11133s-0.0059-0.08789-0.0059-0.13477c0-0.08593 0.0156-0.17383 0.0469-0.26367 0.0352-0.08984 0.0859-0.17187 0.1523-0.24609 0.0703-0.07813 0.1563-0.14063 0.2579-0.1875 0.1054-0.05078 0.2265-0.07617 0.3632-0.07617 0.1797 0 0.3242 0.04296 0.4336 0.1289 0.1133 0.08203 0.2012 0.17383 0.2637 0.27539 0.0703 0.1211 0.123 0.25586 0.1582 0.4043l1.0195 4.6757h0.1992c0.0743-0.3593 0.1543-0.7363 0.2403-1.1308 0.0859-0.39845 0.1719-0.79884 0.2578-1.2012 0.0898-0.40625 0.1777-0.80664 0.2637-1.2012 0.0898-0.39844 0.1758-0.7793 0.2578-1.1426 0.0547-0.22266 0.1601-0.40625 0.3164-0.55078 0.1562-0.14844 0.3437-0.22266 0.5625-0.22266z" fill="#fff"></path><defs><filter id="new-b" x="2" y="0" width="37" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18375"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18375" result="shape"></feBlend></filter><linearGradient id="new-a" x1="36" x2="5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF6A85"></stop><stop offset="1" stop-color="#FF2264"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Growmi</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/growmi/20230406063042/growmi-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Growmi" srcSet="https://images.crazygames.com/growmi/20230406063042/growmi-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/growmi/20230406063042/growmi-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/growmi/20230406063042/growmi-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/growmi/20230406063042/growmi-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/growmi/20230406063042/growmi-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/growmi/20230406063042/growmi-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/growmi/20230406063042/growmi-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/bubble-shooter-ball"><svg width="39" height="27" viewBox="0 0 39 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#new-b)"><path d="M5 0H25.5C31.299 0 36 4.70101 36 10.5C36 16.299 31.299 21 25.5 21H5V0Z" fill="url(#new-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF2264"></path><path d="m5 27h -2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A30131"></path><path d="m10.367 11.574h0.1406v-4.8633c0-0.125 0.0078-0.24219 0.0234-0.35156 0.0157-0.11329 0.0489-0.21094 0.0997-0.29297 0.0546-0.08203 0.1328-0.14649 0.2343-0.19336 0.1055-0.05078 0.2481-0.07617 0.4278-0.07617 0.1992 0 0.3554 0.02539 0.4687 0.07617 0.1172 0.04687 0.2051 0.11133 0.2637 0.19336s0.0957 0.17968 0.1113 0.29297c0.0156 0.10937 0.0235 0.22656 0.0235 0.35156v5.9414c0 0.1719-0.0059 0.3379-0.0176 0.4981-0.0078 0.1601-0.0391 0.3047-0.0938 0.4336-0.0508 0.125-0.1367 0.2265-0.2578 0.3047-0.1172 0.0742-0.2832 0.1113-0.498 0.1113h-0.7735c-0.1836 0-0.3379-0.0352-0.4629-0.1055-0.12105-0.0742-0.22262-0.1621-0.30465-0.2636-0.08203-0.1055-0.14843-0.2149-0.19922-0.3282-0.04687-0.1132-0.08398-0.2089-0.11132-0.2871l-1.7695-4.7929h-0.14063v4.8632c0 0.125-0.00781 0.2442-0.02344 0.3575-0.01562 0.1093-0.05078 0.205-0.10547 0.2871-0.05078 0.082-0.1289 0.1484-0.23437 0.1992-0.10156 0.0469-0.24219 0.0703-0.42188 0.0703-0.20312 0-0.36328-0.0234-0.48047-0.0703-0.11718-0.0508-0.20507-0.1172-0.26367-0.1992-0.05859-0.0821-0.0957-0.1778-0.11133-0.2871-0.01562-0.1133-0.02343-0.2325-0.02343-0.3575v-5.9414c0-0.16797 0.0039-0.33203 0.01172-0.49219 0.01171-0.16406 0.04492-0.30859 0.09961-0.43359 0.05468-0.12891 0.14062-0.23047 0.25781-0.30469 0.12109-0.07812 0.29101-0.11718 0.50976-0.11718h0.77344c0.19531 0 0.35352 0.03906 0.47461 0.11718 0.125 0.07422 0.22656 0.15625 0.30469 0.2461 0.08594 0.10546 0.15429 0.22656 0.20508 0.36328l1.8633 5.0508zm6.5976-5.7773c0.1563 0 0.3145 0.00585 0.4747 0.01757 0.1601 0.01172 0.3046 0.04493 0.4335 0.09961 0.129 0.05469 0.2344 0.13867 0.3165 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3165 0.24609-0.1289 0.05469-0.2734 0.08789-0.4335 0.09961-0.1602 0.01172-0.3184 0.01758-0.4747 0.01758h-1.3945v1.5938h0.7383c0.1562 0 0.3125 0.00586 0.4687 0.01758 0.1602 0.00781 0.3008 0.03906 0.4219 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4219 0.0937-0.1562 0.0078-0.3125 0.0117-0.4687 0.0117h-0.7383v1.6875h1.3945c0.1563 0 0.3145 0.0059 0.4747 0.0176 0.1601 0.0117 0.3046 0.0449 0.4335 0.0996 0.129 0.0508 0.2344 0.1328 0.3165 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.043 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996-0.3164 0.0176-0.4688 0.0176h-2.2968c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2968zm6.7149 0.03515c0.1094 0 0.2109 0.01953 0.3047 0.05859 0.0976 0.03907 0.1836 0.09376 0.2578 0.16407 0.0781 0.0664 0.1445 0.14843 0.1992 0.24609 0.0547 0.09375 0.0938 0.19531 0.1172 0.30469l1.0078 4.6757h0.1992c0.1641-0.7617 0.3321-1.539 0.5039-2.332 0.1719-0.79688 0.3438-1.5781 0.5157-2.3438 0.0351-0.14844 0.0878-0.2832 0.1582-0.4043 0.0625-0.10156 0.1484-0.19336 0.2578-0.27539 0.1133-0.08594 0.2597-0.1289 0.4394-0.1289 0.1367 0 0.2559 0.02539 0.3574 0.07617 0.1055 0.04687 0.1915 0.10937 0.2579 0.1875 0.0703 0.07422 0.1211 0.15625 0.1523 0.24609 0.0352 0.08984 0.0527 0.17774 0.0527 0.26367 0 0.04688-0.0019 0.0918-0.0058 0.13477s-0.0098 0.08008-0.0176 0.11133c-0.0078 0.03906-0.0156 0.07421-0.0234 0.10547l-1.6055 6.375c-0.0586 0.1328-0.1367 0.25-0.2344 0.3515-0.082 0.0899-0.1894 0.1719-0.3222 0.2461-0.129 0.0703-0.2911 0.1055-0.4864 0.1055h-0.1992c-0.1953 0-0.3555-0.0352-0.4805-0.1055-0.125-0.0742-0.2246-0.1562-0.2988-0.2461-0.0859-0.1015-0.1504-0.2187-0.1933-0.3515l-0.8204-3.4336h-0.1992c-0.125 0.55472-0.2597 1.1269-0.4043 1.7168-0.1406 0.5898-0.2754 1.1621-0.4043 1.7168-0.0508 0.1328-0.1191 0.25-0.2051 0.3515-0.0781 0.0899-0.1796 0.1719-0.3046 0.2461-0.1211 0.0703-0.2793 0.1055-0.4747 0.1055h-0.1992c-0.1953 0-0.3613-0.0352-0.498-0.1055-0.1328-0.0742-0.2422-0.1562-0.3281-0.2461-0.1016-0.1015-0.1817-0.2187-0.2403-0.3515l-1.582-6.375c-0.0078-0.03126-0.0156-0.06641-0.0234-0.10547-0.0079-0.03125-0.0137-0.06836-0.0176-0.11133s-0.0059-0.08789-0.0059-0.13477c0-0.08593 0.0156-0.17383 0.0469-0.26367 0.0352-0.08984 0.0859-0.17187 0.1523-0.24609 0.0703-0.07813 0.1563-0.14063 0.2579-0.1875 0.1054-0.05078 0.2265-0.07617 0.3632-0.07617 0.1797 0 0.3242 0.04296 0.4336 0.1289 0.1133 0.08203 0.2012 0.17383 0.2637 0.27539 0.0703 0.1211 0.123 0.25586 0.1582 0.4043l1.0195 4.6757h0.1992c0.0743-0.3593 0.1543-0.7363 0.2403-1.1308 0.0859-0.39845 0.1719-0.79884 0.2578-1.2012 0.0898-0.40625 0.1777-0.80664 0.2637-1.2012 0.0898-0.39844 0.1758-0.7793 0.2578-1.1426 0.0547-0.22266 0.1601-0.40625 0.3164-0.55078 0.1562-0.14844 0.3437-0.22266 0.5625-0.22266z" fill="#fff"></path><defs><filter id="new-b" x="2" y="0" width="37" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18375"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18375" result="shape"></feBlend></filter><linearGradient id="new-a" x1="36" x2="5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF6A85"></stop><stop offset="1" stop-color="#FF2264"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Bubble Shooter Ball</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/games/bubble-shooter-ball/cover-1680727439742.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Bubble Shooter Ball" srcSet="https://images.crazygames.com/games/bubble-shooter-ball/cover-1680727439742.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/bubble-shooter-ball/cover-1680727439742.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/bubble-shooter-ball/cover-1680727439742.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/bubble-shooter-ball/cover-1680727439742.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/bubble-shooter-ball/cover-1680727439742.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/bubble-shooter-ball/cover-1680727439742.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/bubble-shooter-ball/cover-1680727439742.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/rope-color-sort-3d"><svg width="39" height="27" viewBox="0 0 39 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#new-b)"><path d="M5 0H25.5C31.299 0 36 4.70101 36 10.5C36 16.299 31.299 21 25.5 21H5V0Z" fill="url(#new-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF2264"></path><path d="m5 27h -2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A30131"></path><path d="m10.367 11.574h0.1406v-4.8633c0-0.125 0.0078-0.24219 0.0234-0.35156 0.0157-0.11329 0.0489-0.21094 0.0997-0.29297 0.0546-0.08203 0.1328-0.14649 0.2343-0.19336 0.1055-0.05078 0.2481-0.07617 0.4278-0.07617 0.1992 0 0.3554 0.02539 0.4687 0.07617 0.1172 0.04687 0.2051 0.11133 0.2637 0.19336s0.0957 0.17968 0.1113 0.29297c0.0156 0.10937 0.0235 0.22656 0.0235 0.35156v5.9414c0 0.1719-0.0059 0.3379-0.0176 0.4981-0.0078 0.1601-0.0391 0.3047-0.0938 0.4336-0.0508 0.125-0.1367 0.2265-0.2578 0.3047-0.1172 0.0742-0.2832 0.1113-0.498 0.1113h-0.7735c-0.1836 0-0.3379-0.0352-0.4629-0.1055-0.12105-0.0742-0.22262-0.1621-0.30465-0.2636-0.08203-0.1055-0.14843-0.2149-0.19922-0.3282-0.04687-0.1132-0.08398-0.2089-0.11132-0.2871l-1.7695-4.7929h-0.14063v4.8632c0 0.125-0.00781 0.2442-0.02344 0.3575-0.01562 0.1093-0.05078 0.205-0.10547 0.2871-0.05078 0.082-0.1289 0.1484-0.23437 0.1992-0.10156 0.0469-0.24219 0.0703-0.42188 0.0703-0.20312 0-0.36328-0.0234-0.48047-0.0703-0.11718-0.0508-0.20507-0.1172-0.26367-0.1992-0.05859-0.0821-0.0957-0.1778-0.11133-0.2871-0.01562-0.1133-0.02343-0.2325-0.02343-0.3575v-5.9414c0-0.16797 0.0039-0.33203 0.01172-0.49219 0.01171-0.16406 0.04492-0.30859 0.09961-0.43359 0.05468-0.12891 0.14062-0.23047 0.25781-0.30469 0.12109-0.07812 0.29101-0.11718 0.50976-0.11718h0.77344c0.19531 0 0.35352 0.03906 0.47461 0.11718 0.125 0.07422 0.22656 0.15625 0.30469 0.2461 0.08594 0.10546 0.15429 0.22656 0.20508 0.36328l1.8633 5.0508zm6.5976-5.7773c0.1563 0 0.3145 0.00585 0.4747 0.01757 0.1601 0.01172 0.3046 0.04493 0.4335 0.09961 0.129 0.05469 0.2344 0.13867 0.3165 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3165 0.24609-0.1289 0.05469-0.2734 0.08789-0.4335 0.09961-0.1602 0.01172-0.3184 0.01758-0.4747 0.01758h-1.3945v1.5938h0.7383c0.1562 0 0.3125 0.00586 0.4687 0.01758 0.1602 0.00781 0.3008 0.03906 0.4219 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4219 0.0937-0.1562 0.0078-0.3125 0.0117-0.4687 0.0117h-0.7383v1.6875h1.3945c0.1563 0 0.3145 0.0059 0.4747 0.0176 0.1601 0.0117 0.3046 0.0449 0.4335 0.0996 0.129 0.0508 0.2344 0.1328 0.3165 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.043 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996-0.3164 0.0176-0.4688 0.0176h-2.2968c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2968zm6.7149 0.03515c0.1094 0 0.2109 0.01953 0.3047 0.05859 0.0976 0.03907 0.1836 0.09376 0.2578 0.16407 0.0781 0.0664 0.1445 0.14843 0.1992 0.24609 0.0547 0.09375 0.0938 0.19531 0.1172 0.30469l1.0078 4.6757h0.1992c0.1641-0.7617 0.3321-1.539 0.5039-2.332 0.1719-0.79688 0.3438-1.5781 0.5157-2.3438 0.0351-0.14844 0.0878-0.2832 0.1582-0.4043 0.0625-0.10156 0.1484-0.19336 0.2578-0.27539 0.1133-0.08594 0.2597-0.1289 0.4394-0.1289 0.1367 0 0.2559 0.02539 0.3574 0.07617 0.1055 0.04687 0.1915 0.10937 0.2579 0.1875 0.0703 0.07422 0.1211 0.15625 0.1523 0.24609 0.0352 0.08984 0.0527 0.17774 0.0527 0.26367 0 0.04688-0.0019 0.0918-0.0058 0.13477s-0.0098 0.08008-0.0176 0.11133c-0.0078 0.03906-0.0156 0.07421-0.0234 0.10547l-1.6055 6.375c-0.0586 0.1328-0.1367 0.25-0.2344 0.3515-0.082 0.0899-0.1894 0.1719-0.3222 0.2461-0.129 0.0703-0.2911 0.1055-0.4864 0.1055h-0.1992c-0.1953 0-0.3555-0.0352-0.4805-0.1055-0.125-0.0742-0.2246-0.1562-0.2988-0.2461-0.0859-0.1015-0.1504-0.2187-0.1933-0.3515l-0.8204-3.4336h-0.1992c-0.125 0.55472-0.2597 1.1269-0.4043 1.7168-0.1406 0.5898-0.2754 1.1621-0.4043 1.7168-0.0508 0.1328-0.1191 0.25-0.2051 0.3515-0.0781 0.0899-0.1796 0.1719-0.3046 0.2461-0.1211 0.0703-0.2793 0.1055-0.4747 0.1055h-0.1992c-0.1953 0-0.3613-0.0352-0.498-0.1055-0.1328-0.0742-0.2422-0.1562-0.3281-0.2461-0.1016-0.1015-0.1817-0.2187-0.2403-0.3515l-1.582-6.375c-0.0078-0.03126-0.0156-0.06641-0.0234-0.10547-0.0079-0.03125-0.0137-0.06836-0.0176-0.11133s-0.0059-0.08789-0.0059-0.13477c0-0.08593 0.0156-0.17383 0.0469-0.26367 0.0352-0.08984 0.0859-0.17187 0.1523-0.24609 0.0703-0.07813 0.1563-0.14063 0.2579-0.1875 0.1054-0.05078 0.2265-0.07617 0.3632-0.07617 0.1797 0 0.3242 0.04296 0.4336 0.1289 0.1133 0.08203 0.2012 0.17383 0.2637 0.27539 0.0703 0.1211 0.123 0.25586 0.1582 0.4043l1.0195 4.6757h0.1992c0.0743-0.3593 0.1543-0.7363 0.2403-1.1308 0.0859-0.39845 0.1719-0.79884 0.2578-1.2012 0.0898-0.40625 0.1777-0.80664 0.2637-1.2012 0.0898-0.39844 0.1758-0.7793 0.2578-1.1426 0.0547-0.22266 0.1601-0.40625 0.3164-0.55078 0.1562-0.14844 0.3437-0.22266 0.5625-0.22266z" fill="#fff"></path><defs><filter id="new-b" x="2" y="0" width="37" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18375"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18375" result="shape"></feBlend></filter><linearGradient id="new-a" x1="36" x2="5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF6A85"></stop><stop offset="1" stop-color="#FF2264"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Rope Color Sort 3D</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Rope Color Sort 3D" srcSet="https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/zombie-match"><svg width="39" height="27" viewBox="0 0 39 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#new-b)"><path d="M5 0H25.5C31.299 0 36 4.70101 36 10.5C36 16.299 31.299 21 25.5 21H5V0Z" fill="url(#new-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF2264"></path><path d="m5 27h -2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A30131"></path><path d="m10.367 11.574h0.1406v-4.8633c0-0.125 0.0078-0.24219 0.0234-0.35156 0.0157-0.11329 0.0489-0.21094 0.0997-0.29297 0.0546-0.08203 0.1328-0.14649 0.2343-0.19336 0.1055-0.05078 0.2481-0.07617 0.4278-0.07617 0.1992 0 0.3554 0.02539 0.4687 0.07617 0.1172 0.04687 0.2051 0.11133 0.2637 0.19336s0.0957 0.17968 0.1113 0.29297c0.0156 0.10937 0.0235 0.22656 0.0235 0.35156v5.9414c0 0.1719-0.0059 0.3379-0.0176 0.4981-0.0078 0.1601-0.0391 0.3047-0.0938 0.4336-0.0508 0.125-0.1367 0.2265-0.2578 0.3047-0.1172 0.0742-0.2832 0.1113-0.498 0.1113h-0.7735c-0.1836 0-0.3379-0.0352-0.4629-0.1055-0.12105-0.0742-0.22262-0.1621-0.30465-0.2636-0.08203-0.1055-0.14843-0.2149-0.19922-0.3282-0.04687-0.1132-0.08398-0.2089-0.11132-0.2871l-1.7695-4.7929h-0.14063v4.8632c0 0.125-0.00781 0.2442-0.02344 0.3575-0.01562 0.1093-0.05078 0.205-0.10547 0.2871-0.05078 0.082-0.1289 0.1484-0.23437 0.1992-0.10156 0.0469-0.24219 0.0703-0.42188 0.0703-0.20312 0-0.36328-0.0234-0.48047-0.0703-0.11718-0.0508-0.20507-0.1172-0.26367-0.1992-0.05859-0.0821-0.0957-0.1778-0.11133-0.2871-0.01562-0.1133-0.02343-0.2325-0.02343-0.3575v-5.9414c0-0.16797 0.0039-0.33203 0.01172-0.49219 0.01171-0.16406 0.04492-0.30859 0.09961-0.43359 0.05468-0.12891 0.14062-0.23047 0.25781-0.30469 0.12109-0.07812 0.29101-0.11718 0.50976-0.11718h0.77344c0.19531 0 0.35352 0.03906 0.47461 0.11718 0.125 0.07422 0.22656 0.15625 0.30469 0.2461 0.08594 0.10546 0.15429 0.22656 0.20508 0.36328l1.8633 5.0508zm6.5976-5.7773c0.1563 0 0.3145 0.00585 0.4747 0.01757 0.1601 0.01172 0.3046 0.04493 0.4335 0.09961 0.129 0.05469 0.2344 0.13867 0.3165 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3165 0.24609-0.1289 0.05469-0.2734 0.08789-0.4335 0.09961-0.1602 0.01172-0.3184 0.01758-0.4747 0.01758h-1.3945v1.5938h0.7383c0.1562 0 0.3125 0.00586 0.4687 0.01758 0.1602 0.00781 0.3008 0.03906 0.4219 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4219 0.0937-0.1562 0.0078-0.3125 0.0117-0.4687 0.0117h-0.7383v1.6875h1.3945c0.1563 0 0.3145 0.0059 0.4747 0.0176 0.1601 0.0117 0.3046 0.0449 0.4335 0.0996 0.129 0.0508 0.2344 0.1328 0.3165 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.043 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996-0.3164 0.0176-0.4688 0.0176h-2.2968c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2968zm6.7149 0.03515c0.1094 0 0.2109 0.01953 0.3047 0.05859 0.0976 0.03907 0.1836 0.09376 0.2578 0.16407 0.0781 0.0664 0.1445 0.14843 0.1992 0.24609 0.0547 0.09375 0.0938 0.19531 0.1172 0.30469l1.0078 4.6757h0.1992c0.1641-0.7617 0.3321-1.539 0.5039-2.332 0.1719-0.79688 0.3438-1.5781 0.5157-2.3438 0.0351-0.14844 0.0878-0.2832 0.1582-0.4043 0.0625-0.10156 0.1484-0.19336 0.2578-0.27539 0.1133-0.08594 0.2597-0.1289 0.4394-0.1289 0.1367 0 0.2559 0.02539 0.3574 0.07617 0.1055 0.04687 0.1915 0.10937 0.2579 0.1875 0.0703 0.07422 0.1211 0.15625 0.1523 0.24609 0.0352 0.08984 0.0527 0.17774 0.0527 0.26367 0 0.04688-0.0019 0.0918-0.0058 0.13477s-0.0098 0.08008-0.0176 0.11133c-0.0078 0.03906-0.0156 0.07421-0.0234 0.10547l-1.6055 6.375c-0.0586 0.1328-0.1367 0.25-0.2344 0.3515-0.082 0.0899-0.1894 0.1719-0.3222 0.2461-0.129 0.0703-0.2911 0.1055-0.4864 0.1055h-0.1992c-0.1953 0-0.3555-0.0352-0.4805-0.1055-0.125-0.0742-0.2246-0.1562-0.2988-0.2461-0.0859-0.1015-0.1504-0.2187-0.1933-0.3515l-0.8204-3.4336h-0.1992c-0.125 0.55472-0.2597 1.1269-0.4043 1.7168-0.1406 0.5898-0.2754 1.1621-0.4043 1.7168-0.0508 0.1328-0.1191 0.25-0.2051 0.3515-0.0781 0.0899-0.1796 0.1719-0.3046 0.2461-0.1211 0.0703-0.2793 0.1055-0.4747 0.1055h-0.1992c-0.1953 0-0.3613-0.0352-0.498-0.1055-0.1328-0.0742-0.2422-0.1562-0.3281-0.2461-0.1016-0.1015-0.1817-0.2187-0.2403-0.3515l-1.582-6.375c-0.0078-0.03126-0.0156-0.06641-0.0234-0.10547-0.0079-0.03125-0.0137-0.06836-0.0176-0.11133s-0.0059-0.08789-0.0059-0.13477c0-0.08593 0.0156-0.17383 0.0469-0.26367 0.0352-0.08984 0.0859-0.17187 0.1523-0.24609 0.0703-0.07813 0.1563-0.14063 0.2579-0.1875 0.1054-0.05078 0.2265-0.07617 0.3632-0.07617 0.1797 0 0.3242 0.04296 0.4336 0.1289 0.1133 0.08203 0.2012 0.17383 0.2637 0.27539 0.0703 0.1211 0.123 0.25586 0.1582 0.4043l1.0195 4.6757h0.1992c0.0743-0.3593 0.1543-0.7363 0.2403-1.1308 0.0859-0.39845 0.1719-0.79884 0.2578-1.2012 0.0898-0.40625 0.1777-0.80664 0.2637-1.2012 0.0898-0.39844 0.1758-0.7793 0.2578-1.1426 0.0547-0.22266 0.1601-0.40625 0.3164-0.55078 0.1562-0.14844 0.3437-0.22266 0.5625-0.22266z" fill="#fff"></path><defs><filter id="new-b" x="2" y="0" width="37" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18375"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18375" result="shape"></feBlend></filter><linearGradient id="new-a" x1="36" x2="5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF6A85"></stop><stop offset="1" stop-color="#FF2264"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Zombie Match</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/zombie-match/20230404212303/zombie-match-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Zombie Match" srcSet="https://images.crazygames.com/zombie-match/20230404212303/zombie-match-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/zombie-match/20230404212303/zombie-match-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/zombie-match/20230404212303/zombie-match-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/zombie-match/20230404212303/zombie-match-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/zombie-match/20230404212303/zombie-match-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/zombie-match/20230404212303/zombie-match-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/zombie-match/20230404212303/zombie-match-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/water-pool-heroes-io"><svg width="39" height="27" viewBox="0 0 39 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#new-b)"><path d="M5 0H25.5C31.299 0 36 4.70101 36 10.5C36 16.299 31.299 21 25.5 21H5V0Z" fill="url(#new-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF2264"></path><path d="m5 27h -2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A30131"></path><path d="m10.367 11.574h0.1406v-4.8633c0-0.125 0.0078-0.24219 0.0234-0.35156 0.0157-0.11329 0.0489-0.21094 0.0997-0.29297 0.0546-0.08203 0.1328-0.14649 0.2343-0.19336 0.1055-0.05078 0.2481-0.07617 0.4278-0.07617 0.1992 0 0.3554 0.02539 0.4687 0.07617 0.1172 0.04687 0.2051 0.11133 0.2637 0.19336s0.0957 0.17968 0.1113 0.29297c0.0156 0.10937 0.0235 0.22656 0.0235 0.35156v5.9414c0 0.1719-0.0059 0.3379-0.0176 0.4981-0.0078 0.1601-0.0391 0.3047-0.0938 0.4336-0.0508 0.125-0.1367 0.2265-0.2578 0.3047-0.1172 0.0742-0.2832 0.1113-0.498 0.1113h-0.7735c-0.1836 0-0.3379-0.0352-0.4629-0.1055-0.12105-0.0742-0.22262-0.1621-0.30465-0.2636-0.08203-0.1055-0.14843-0.2149-0.19922-0.3282-0.04687-0.1132-0.08398-0.2089-0.11132-0.2871l-1.7695-4.7929h-0.14063v4.8632c0 0.125-0.00781 0.2442-0.02344 0.3575-0.01562 0.1093-0.05078 0.205-0.10547 0.2871-0.05078 0.082-0.1289 0.1484-0.23437 0.1992-0.10156 0.0469-0.24219 0.0703-0.42188 0.0703-0.20312 0-0.36328-0.0234-0.48047-0.0703-0.11718-0.0508-0.20507-0.1172-0.26367-0.1992-0.05859-0.0821-0.0957-0.1778-0.11133-0.2871-0.01562-0.1133-0.02343-0.2325-0.02343-0.3575v-5.9414c0-0.16797 0.0039-0.33203 0.01172-0.49219 0.01171-0.16406 0.04492-0.30859 0.09961-0.43359 0.05468-0.12891 0.14062-0.23047 0.25781-0.30469 0.12109-0.07812 0.29101-0.11718 0.50976-0.11718h0.77344c0.19531 0 0.35352 0.03906 0.47461 0.11718 0.125 0.07422 0.22656 0.15625 0.30469 0.2461 0.08594 0.10546 0.15429 0.22656 0.20508 0.36328l1.8633 5.0508zm6.5976-5.7773c0.1563 0 0.3145 0.00585 0.4747 0.01757 0.1601 0.01172 0.3046 0.04493 0.4335 0.09961 0.129 0.05469 0.2344 0.13867 0.3165 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3165 0.24609-0.1289 0.05469-0.2734 0.08789-0.4335 0.09961-0.1602 0.01172-0.3184 0.01758-0.4747 0.01758h-1.3945v1.5938h0.7383c0.1562 0 0.3125 0.00586 0.4687 0.01758 0.1602 0.00781 0.3008 0.03906 0.4219 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4219 0.0937-0.1562 0.0078-0.3125 0.0117-0.4687 0.0117h-0.7383v1.6875h1.3945c0.1563 0 0.3145 0.0059 0.4747 0.0176 0.1601 0.0117 0.3046 0.0449 0.4335 0.0996 0.129 0.0508 0.2344 0.1328 0.3165 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.043 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996-0.3164 0.0176-0.4688 0.0176h-2.2968c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2968zm6.7149 0.03515c0.1094 0 0.2109 0.01953 0.3047 0.05859 0.0976 0.03907 0.1836 0.09376 0.2578 0.16407 0.0781 0.0664 0.1445 0.14843 0.1992 0.24609 0.0547 0.09375 0.0938 0.19531 0.1172 0.30469l1.0078 4.6757h0.1992c0.1641-0.7617 0.3321-1.539 0.5039-2.332 0.1719-0.79688 0.3438-1.5781 0.5157-2.3438 0.0351-0.14844 0.0878-0.2832 0.1582-0.4043 0.0625-0.10156 0.1484-0.19336 0.2578-0.27539 0.1133-0.08594 0.2597-0.1289 0.4394-0.1289 0.1367 0 0.2559 0.02539 0.3574 0.07617 0.1055 0.04687 0.1915 0.10937 0.2579 0.1875 0.0703 0.07422 0.1211 0.15625 0.1523 0.24609 0.0352 0.08984 0.0527 0.17774 0.0527 0.26367 0 0.04688-0.0019 0.0918-0.0058 0.13477s-0.0098 0.08008-0.0176 0.11133c-0.0078 0.03906-0.0156 0.07421-0.0234 0.10547l-1.6055 6.375c-0.0586 0.1328-0.1367 0.25-0.2344 0.3515-0.082 0.0899-0.1894 0.1719-0.3222 0.2461-0.129 0.0703-0.2911 0.1055-0.4864 0.1055h-0.1992c-0.1953 0-0.3555-0.0352-0.4805-0.1055-0.125-0.0742-0.2246-0.1562-0.2988-0.2461-0.0859-0.1015-0.1504-0.2187-0.1933-0.3515l-0.8204-3.4336h-0.1992c-0.125 0.55472-0.2597 1.1269-0.4043 1.7168-0.1406 0.5898-0.2754 1.1621-0.4043 1.7168-0.0508 0.1328-0.1191 0.25-0.2051 0.3515-0.0781 0.0899-0.1796 0.1719-0.3046 0.2461-0.1211 0.0703-0.2793 0.1055-0.4747 0.1055h-0.1992c-0.1953 0-0.3613-0.0352-0.498-0.1055-0.1328-0.0742-0.2422-0.1562-0.3281-0.2461-0.1016-0.1015-0.1817-0.2187-0.2403-0.3515l-1.582-6.375c-0.0078-0.03126-0.0156-0.06641-0.0234-0.10547-0.0079-0.03125-0.0137-0.06836-0.0176-0.11133s-0.0059-0.08789-0.0059-0.13477c0-0.08593 0.0156-0.17383 0.0469-0.26367 0.0352-0.08984 0.0859-0.17187 0.1523-0.24609 0.0703-0.07813 0.1563-0.14063 0.2579-0.1875 0.1054-0.05078 0.2265-0.07617 0.3632-0.07617 0.1797 0 0.3242 0.04296 0.4336 0.1289 0.1133 0.08203 0.2012 0.17383 0.2637 0.27539 0.0703 0.1211 0.123 0.25586 0.1582 0.4043l1.0195 4.6757h0.1992c0.0743-0.3593 0.1543-0.7363 0.2403-1.1308 0.0859-0.39845 0.1719-0.79884 0.2578-1.2012 0.0898-0.40625 0.1777-0.80664 0.2637-1.2012 0.0898-0.39844 0.1758-0.7793 0.2578-1.1426 0.0547-0.22266 0.1601-0.40625 0.3164-0.55078 0.1562-0.14844 0.3437-0.22266 0.5625-0.22266z" fill="#fff"></path><defs><filter id="new-b" x="2" y="0" width="37" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18375"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18375" result="shape"></feBlend></filter><linearGradient id="new-a" x1="36" x2="5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF6A85"></stop><stop offset="1" stop-color="#FF2264"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Water Pool Heroes.io</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Water Pool Heroes.io" srcSet="https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/space-colony"><svg width="39" height="27" viewBox="0 0 39 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#new-b)"><path d="M5 0H25.5C31.299 0 36 4.70101 36 10.5C36 16.299 31.299 21 25.5 21H5V0Z" fill="url(#new-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF2264"></path><path d="m5 27h -2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A30131"></path><path d="m10.367 11.574h0.1406v-4.8633c0-0.125 0.0078-0.24219 0.0234-0.35156 0.0157-0.11329 0.0489-0.21094 0.0997-0.29297 0.0546-0.08203 0.1328-0.14649 0.2343-0.19336 0.1055-0.05078 0.2481-0.07617 0.4278-0.07617 0.1992 0 0.3554 0.02539 0.4687 0.07617 0.1172 0.04687 0.2051 0.11133 0.2637 0.19336s0.0957 0.17968 0.1113 0.29297c0.0156 0.10937 0.0235 0.22656 0.0235 0.35156v5.9414c0 0.1719-0.0059 0.3379-0.0176 0.4981-0.0078 0.1601-0.0391 0.3047-0.0938 0.4336-0.0508 0.125-0.1367 0.2265-0.2578 0.3047-0.1172 0.0742-0.2832 0.1113-0.498 0.1113h-0.7735c-0.1836 0-0.3379-0.0352-0.4629-0.1055-0.12105-0.0742-0.22262-0.1621-0.30465-0.2636-0.08203-0.1055-0.14843-0.2149-0.19922-0.3282-0.04687-0.1132-0.08398-0.2089-0.11132-0.2871l-1.7695-4.7929h-0.14063v4.8632c0 0.125-0.00781 0.2442-0.02344 0.3575-0.01562 0.1093-0.05078 0.205-0.10547 0.2871-0.05078 0.082-0.1289 0.1484-0.23437 0.1992-0.10156 0.0469-0.24219 0.0703-0.42188 0.0703-0.20312 0-0.36328-0.0234-0.48047-0.0703-0.11718-0.0508-0.20507-0.1172-0.26367-0.1992-0.05859-0.0821-0.0957-0.1778-0.11133-0.2871-0.01562-0.1133-0.02343-0.2325-0.02343-0.3575v-5.9414c0-0.16797 0.0039-0.33203 0.01172-0.49219 0.01171-0.16406 0.04492-0.30859 0.09961-0.43359 0.05468-0.12891 0.14062-0.23047 0.25781-0.30469 0.12109-0.07812 0.29101-0.11718 0.50976-0.11718h0.77344c0.19531 0 0.35352 0.03906 0.47461 0.11718 0.125 0.07422 0.22656 0.15625 0.30469 0.2461 0.08594 0.10546 0.15429 0.22656 0.20508 0.36328l1.8633 5.0508zm6.5976-5.7773c0.1563 0 0.3145 0.00585 0.4747 0.01757 0.1601 0.01172 0.3046 0.04493 0.4335 0.09961 0.129 0.05469 0.2344 0.13867 0.3165 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3165 0.24609-0.1289 0.05469-0.2734 0.08789-0.4335 0.09961-0.1602 0.01172-0.3184 0.01758-0.4747 0.01758h-1.3945v1.5938h0.7383c0.1562 0 0.3125 0.00586 0.4687 0.01758 0.1602 0.00781 0.3008 0.03906 0.4219 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4219 0.0937-0.1562 0.0078-0.3125 0.0117-0.4687 0.0117h-0.7383v1.6875h1.3945c0.1563 0 0.3145 0.0059 0.4747 0.0176 0.1601 0.0117 0.3046 0.0449 0.4335 0.0996 0.129 0.0508 0.2344 0.1328 0.3165 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.043 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996-0.3164 0.0176-0.4688 0.0176h-2.2968c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2968zm6.7149 0.03515c0.1094 0 0.2109 0.01953 0.3047 0.05859 0.0976 0.03907 0.1836 0.09376 0.2578 0.16407 0.0781 0.0664 0.1445 0.14843 0.1992 0.24609 0.0547 0.09375 0.0938 0.19531 0.1172 0.30469l1.0078 4.6757h0.1992c0.1641-0.7617 0.3321-1.539 0.5039-2.332 0.1719-0.79688 0.3438-1.5781 0.5157-2.3438 0.0351-0.14844 0.0878-0.2832 0.1582-0.4043 0.0625-0.10156 0.1484-0.19336 0.2578-0.27539 0.1133-0.08594 0.2597-0.1289 0.4394-0.1289 0.1367 0 0.2559 0.02539 0.3574 0.07617 0.1055 0.04687 0.1915 0.10937 0.2579 0.1875 0.0703 0.07422 0.1211 0.15625 0.1523 0.24609 0.0352 0.08984 0.0527 0.17774 0.0527 0.26367 0 0.04688-0.0019 0.0918-0.0058 0.13477s-0.0098 0.08008-0.0176 0.11133c-0.0078 0.03906-0.0156 0.07421-0.0234 0.10547l-1.6055 6.375c-0.0586 0.1328-0.1367 0.25-0.2344 0.3515-0.082 0.0899-0.1894 0.1719-0.3222 0.2461-0.129 0.0703-0.2911 0.1055-0.4864 0.1055h-0.1992c-0.1953 0-0.3555-0.0352-0.4805-0.1055-0.125-0.0742-0.2246-0.1562-0.2988-0.2461-0.0859-0.1015-0.1504-0.2187-0.1933-0.3515l-0.8204-3.4336h-0.1992c-0.125 0.55472-0.2597 1.1269-0.4043 1.7168-0.1406 0.5898-0.2754 1.1621-0.4043 1.7168-0.0508 0.1328-0.1191 0.25-0.2051 0.3515-0.0781 0.0899-0.1796 0.1719-0.3046 0.2461-0.1211 0.0703-0.2793 0.1055-0.4747 0.1055h-0.1992c-0.1953 0-0.3613-0.0352-0.498-0.1055-0.1328-0.0742-0.2422-0.1562-0.3281-0.2461-0.1016-0.1015-0.1817-0.2187-0.2403-0.3515l-1.582-6.375c-0.0078-0.03126-0.0156-0.06641-0.0234-0.10547-0.0079-0.03125-0.0137-0.06836-0.0176-0.11133s-0.0059-0.08789-0.0059-0.13477c0-0.08593 0.0156-0.17383 0.0469-0.26367 0.0352-0.08984 0.0859-0.17187 0.1523-0.24609 0.0703-0.07813 0.1563-0.14063 0.2579-0.1875 0.1054-0.05078 0.2265-0.07617 0.3632-0.07617 0.1797 0 0.3242 0.04296 0.4336 0.1289 0.1133 0.08203 0.2012 0.17383 0.2637 0.27539 0.0703 0.1211 0.123 0.25586 0.1582 0.4043l1.0195 4.6757h0.1992c0.0743-0.3593 0.1543-0.7363 0.2403-1.1308 0.0859-0.39845 0.1719-0.79884 0.2578-1.2012 0.0898-0.40625 0.1777-0.80664 0.2637-1.2012 0.0898-0.39844 0.1758-0.7793 0.2578-1.1426 0.0547-0.22266 0.1601-0.40625 0.3164-0.55078 0.1562-0.14844 0.3437-0.22266 0.5625-0.22266z" fill="#fff"></path><defs><filter id="new-b" x="2" y="0" width="37" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18375"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18375" result="shape"></feBlend></filter><linearGradient id="new-a" x1="36" x2="5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF6A85"></stop><stop offset="1" stop-color="#FF2264"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Space Colony</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/space-colony/20230404090627/space-colony-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Space Colony" srcSet="https://images.crazygames.com/space-colony/20230404090627/space-colony-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/space-colony/20230404090627/space-colony-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/space-colony/20230404090627/space-colony-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/space-colony/20230404090627/space-colony-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/space-colony/20230404090627/space-colony-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/space-colony/20230404090627/space-colony-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/space-colony/20230404090627/space-colony-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/evil-father"><svg width="39" height="27" viewBox="0 0 39 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#new-b)"><path d="M5 0H25.5C31.299 0 36 4.70101 36 10.5C36 16.299 31.299 21 25.5 21H5V0Z" fill="url(#new-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF2264"></path><path d="m5 27h -2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A30131"></path><path d="m10.367 11.574h0.1406v-4.8633c0-0.125 0.0078-0.24219 0.0234-0.35156 0.0157-0.11329 0.0489-0.21094 0.0997-0.29297 0.0546-0.08203 0.1328-0.14649 0.2343-0.19336 0.1055-0.05078 0.2481-0.07617 0.4278-0.07617 0.1992 0 0.3554 0.02539 0.4687 0.07617 0.1172 0.04687 0.2051 0.11133 0.2637 0.19336s0.0957 0.17968 0.1113 0.29297c0.0156 0.10937 0.0235 0.22656 0.0235 0.35156v5.9414c0 0.1719-0.0059 0.3379-0.0176 0.4981-0.0078 0.1601-0.0391 0.3047-0.0938 0.4336-0.0508 0.125-0.1367 0.2265-0.2578 0.3047-0.1172 0.0742-0.2832 0.1113-0.498 0.1113h-0.7735c-0.1836 0-0.3379-0.0352-0.4629-0.1055-0.12105-0.0742-0.22262-0.1621-0.30465-0.2636-0.08203-0.1055-0.14843-0.2149-0.19922-0.3282-0.04687-0.1132-0.08398-0.2089-0.11132-0.2871l-1.7695-4.7929h-0.14063v4.8632c0 0.125-0.00781 0.2442-0.02344 0.3575-0.01562 0.1093-0.05078 0.205-0.10547 0.2871-0.05078 0.082-0.1289 0.1484-0.23437 0.1992-0.10156 0.0469-0.24219 0.0703-0.42188 0.0703-0.20312 0-0.36328-0.0234-0.48047-0.0703-0.11718-0.0508-0.20507-0.1172-0.26367-0.1992-0.05859-0.0821-0.0957-0.1778-0.11133-0.2871-0.01562-0.1133-0.02343-0.2325-0.02343-0.3575v-5.9414c0-0.16797 0.0039-0.33203 0.01172-0.49219 0.01171-0.16406 0.04492-0.30859 0.09961-0.43359 0.05468-0.12891 0.14062-0.23047 0.25781-0.30469 0.12109-0.07812 0.29101-0.11718 0.50976-0.11718h0.77344c0.19531 0 0.35352 0.03906 0.47461 0.11718 0.125 0.07422 0.22656 0.15625 0.30469 0.2461 0.08594 0.10546 0.15429 0.22656 0.20508 0.36328l1.8633 5.0508zm6.5976-5.7773c0.1563 0 0.3145 0.00585 0.4747 0.01757 0.1601 0.01172 0.3046 0.04493 0.4335 0.09961 0.129 0.05469 0.2344 0.13867 0.3165 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3165 0.24609-0.1289 0.05469-0.2734 0.08789-0.4335 0.09961-0.1602 0.01172-0.3184 0.01758-0.4747 0.01758h-1.3945v1.5938h0.7383c0.1562 0 0.3125 0.00586 0.4687 0.01758 0.1602 0.00781 0.3008 0.03906 0.4219 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4219 0.0937-0.1562 0.0078-0.3125 0.0117-0.4687 0.0117h-0.7383v1.6875h1.3945c0.1563 0 0.3145 0.0059 0.4747 0.0176 0.1601 0.0117 0.3046 0.0449 0.4335 0.0996 0.129 0.0508 0.2344 0.1328 0.3165 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.043 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996-0.3164 0.0176-0.4688 0.0176h-2.2968c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2968zm6.7149 0.03515c0.1094 0 0.2109 0.01953 0.3047 0.05859 0.0976 0.03907 0.1836 0.09376 0.2578 0.16407 0.0781 0.0664 0.1445 0.14843 0.1992 0.24609 0.0547 0.09375 0.0938 0.19531 0.1172 0.30469l1.0078 4.6757h0.1992c0.1641-0.7617 0.3321-1.539 0.5039-2.332 0.1719-0.79688 0.3438-1.5781 0.5157-2.3438 0.0351-0.14844 0.0878-0.2832 0.1582-0.4043 0.0625-0.10156 0.1484-0.19336 0.2578-0.27539 0.1133-0.08594 0.2597-0.1289 0.4394-0.1289 0.1367 0 0.2559 0.02539 0.3574 0.07617 0.1055 0.04687 0.1915 0.10937 0.2579 0.1875 0.0703 0.07422 0.1211 0.15625 0.1523 0.24609 0.0352 0.08984 0.0527 0.17774 0.0527 0.26367 0 0.04688-0.0019 0.0918-0.0058 0.13477s-0.0098 0.08008-0.0176 0.11133c-0.0078 0.03906-0.0156 0.07421-0.0234 0.10547l-1.6055 6.375c-0.0586 0.1328-0.1367 0.25-0.2344 0.3515-0.082 0.0899-0.1894 0.1719-0.3222 0.2461-0.129 0.0703-0.2911 0.1055-0.4864 0.1055h-0.1992c-0.1953 0-0.3555-0.0352-0.4805-0.1055-0.125-0.0742-0.2246-0.1562-0.2988-0.2461-0.0859-0.1015-0.1504-0.2187-0.1933-0.3515l-0.8204-3.4336h-0.1992c-0.125 0.55472-0.2597 1.1269-0.4043 1.7168-0.1406 0.5898-0.2754 1.1621-0.4043 1.7168-0.0508 0.1328-0.1191 0.25-0.2051 0.3515-0.0781 0.0899-0.1796 0.1719-0.3046 0.2461-0.1211 0.0703-0.2793 0.1055-0.4747 0.1055h-0.1992c-0.1953 0-0.3613-0.0352-0.498-0.1055-0.1328-0.0742-0.2422-0.1562-0.3281-0.2461-0.1016-0.1015-0.1817-0.2187-0.2403-0.3515l-1.582-6.375c-0.0078-0.03126-0.0156-0.06641-0.0234-0.10547-0.0079-0.03125-0.0137-0.06836-0.0176-0.11133s-0.0059-0.08789-0.0059-0.13477c0-0.08593 0.0156-0.17383 0.0469-0.26367 0.0352-0.08984 0.0859-0.17187 0.1523-0.24609 0.0703-0.07813 0.1563-0.14063 0.2579-0.1875 0.1054-0.05078 0.2265-0.07617 0.3632-0.07617 0.1797 0 0.3242 0.04296 0.4336 0.1289 0.1133 0.08203 0.2012 0.17383 0.2637 0.27539 0.0703 0.1211 0.123 0.25586 0.1582 0.4043l1.0195 4.6757h0.1992c0.0743-0.3593 0.1543-0.7363 0.2403-1.1308 0.0859-0.39845 0.1719-0.79884 0.2578-1.2012 0.0898-0.40625 0.1777-0.80664 0.2637-1.2012 0.0898-0.39844 0.1758-0.7793 0.2578-1.1426 0.0547-0.22266 0.1601-0.40625 0.3164-0.55078 0.1562-0.14844 0.3437-0.22266 0.5625-0.22266z" fill="#fff"></path><defs><filter id="new-b" x="2" y="0" width="37" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18375"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18375" result="shape"></feBlend></filter><linearGradient id="new-a" x1="36" x2="5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF6A85"></stop><stop offset="1" stop-color="#FF2264"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Evil Father</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/evil-father/20230406185544/evil-father-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Evil Father" srcSet="https://images.crazygames.com/evil-father/20230406185544/evil-father-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/evil-father/20230406185544/evil-father-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/evil-father/20230406185544/evil-father-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/evil-father/20230406185544/evil-father-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/evil-father/20230406185544/evil-father-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/evil-father/20230406185544/evil-father-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/evil-father/20230406185544/evil-father-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/unicycle-mayhem"><svg width="39" height="27" viewBox="0 0 39 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#new-b)"><path d="M5 0H25.5C31.299 0 36 4.70101 36 10.5C36 16.299 31.299 21 25.5 21H5V0Z" fill="url(#new-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF2264"></path><path d="m5 27h -2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A30131"></path><path d="m10.367 11.574h0.1406v-4.8633c0-0.125 0.0078-0.24219 0.0234-0.35156 0.0157-0.11329 0.0489-0.21094 0.0997-0.29297 0.0546-0.08203 0.1328-0.14649 0.2343-0.19336 0.1055-0.05078 0.2481-0.07617 0.4278-0.07617 0.1992 0 0.3554 0.02539 0.4687 0.07617 0.1172 0.04687 0.2051 0.11133 0.2637 0.19336s0.0957 0.17968 0.1113 0.29297c0.0156 0.10937 0.0235 0.22656 0.0235 0.35156v5.9414c0 0.1719-0.0059 0.3379-0.0176 0.4981-0.0078 0.1601-0.0391 0.3047-0.0938 0.4336-0.0508 0.125-0.1367 0.2265-0.2578 0.3047-0.1172 0.0742-0.2832 0.1113-0.498 0.1113h-0.7735c-0.1836 0-0.3379-0.0352-0.4629-0.1055-0.12105-0.0742-0.22262-0.1621-0.30465-0.2636-0.08203-0.1055-0.14843-0.2149-0.19922-0.3282-0.04687-0.1132-0.08398-0.2089-0.11132-0.2871l-1.7695-4.7929h-0.14063v4.8632c0 0.125-0.00781 0.2442-0.02344 0.3575-0.01562 0.1093-0.05078 0.205-0.10547 0.2871-0.05078 0.082-0.1289 0.1484-0.23437 0.1992-0.10156 0.0469-0.24219 0.0703-0.42188 0.0703-0.20312 0-0.36328-0.0234-0.48047-0.0703-0.11718-0.0508-0.20507-0.1172-0.26367-0.1992-0.05859-0.0821-0.0957-0.1778-0.11133-0.2871-0.01562-0.1133-0.02343-0.2325-0.02343-0.3575v-5.9414c0-0.16797 0.0039-0.33203 0.01172-0.49219 0.01171-0.16406 0.04492-0.30859 0.09961-0.43359 0.05468-0.12891 0.14062-0.23047 0.25781-0.30469 0.12109-0.07812 0.29101-0.11718 0.50976-0.11718h0.77344c0.19531 0 0.35352 0.03906 0.47461 0.11718 0.125 0.07422 0.22656 0.15625 0.30469 0.2461 0.08594 0.10546 0.15429 0.22656 0.20508 0.36328l1.8633 5.0508zm6.5976-5.7773c0.1563 0 0.3145 0.00585 0.4747 0.01757 0.1601 0.01172 0.3046 0.04493 0.4335 0.09961 0.129 0.05469 0.2344 0.13867 0.3165 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3165 0.24609-0.1289 0.05469-0.2734 0.08789-0.4335 0.09961-0.1602 0.01172-0.3184 0.01758-0.4747 0.01758h-1.3945v1.5938h0.7383c0.1562 0 0.3125 0.00586 0.4687 0.01758 0.1602 0.00781 0.3008 0.03906 0.4219 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4219 0.0937-0.1562 0.0078-0.3125 0.0117-0.4687 0.0117h-0.7383v1.6875h1.3945c0.1563 0 0.3145 0.0059 0.4747 0.0176 0.1601 0.0117 0.3046 0.0449 0.4335 0.0996 0.129 0.0508 0.2344 0.1328 0.3165 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.043 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996-0.3164 0.0176-0.4688 0.0176h-2.2968c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2968zm6.7149 0.03515c0.1094 0 0.2109 0.01953 0.3047 0.05859 0.0976 0.03907 0.1836 0.09376 0.2578 0.16407 0.0781 0.0664 0.1445 0.14843 0.1992 0.24609 0.0547 0.09375 0.0938 0.19531 0.1172 0.30469l1.0078 4.6757h0.1992c0.1641-0.7617 0.3321-1.539 0.5039-2.332 0.1719-0.79688 0.3438-1.5781 0.5157-2.3438 0.0351-0.14844 0.0878-0.2832 0.1582-0.4043 0.0625-0.10156 0.1484-0.19336 0.2578-0.27539 0.1133-0.08594 0.2597-0.1289 0.4394-0.1289 0.1367 0 0.2559 0.02539 0.3574 0.07617 0.1055 0.04687 0.1915 0.10937 0.2579 0.1875 0.0703 0.07422 0.1211 0.15625 0.1523 0.24609 0.0352 0.08984 0.0527 0.17774 0.0527 0.26367 0 0.04688-0.0019 0.0918-0.0058 0.13477s-0.0098 0.08008-0.0176 0.11133c-0.0078 0.03906-0.0156 0.07421-0.0234 0.10547l-1.6055 6.375c-0.0586 0.1328-0.1367 0.25-0.2344 0.3515-0.082 0.0899-0.1894 0.1719-0.3222 0.2461-0.129 0.0703-0.2911 0.1055-0.4864 0.1055h-0.1992c-0.1953 0-0.3555-0.0352-0.4805-0.1055-0.125-0.0742-0.2246-0.1562-0.2988-0.2461-0.0859-0.1015-0.1504-0.2187-0.1933-0.3515l-0.8204-3.4336h-0.1992c-0.125 0.55472-0.2597 1.1269-0.4043 1.7168-0.1406 0.5898-0.2754 1.1621-0.4043 1.7168-0.0508 0.1328-0.1191 0.25-0.2051 0.3515-0.0781 0.0899-0.1796 0.1719-0.3046 0.2461-0.1211 0.0703-0.2793 0.1055-0.4747 0.1055h-0.1992c-0.1953 0-0.3613-0.0352-0.498-0.1055-0.1328-0.0742-0.2422-0.1562-0.3281-0.2461-0.1016-0.1015-0.1817-0.2187-0.2403-0.3515l-1.582-6.375c-0.0078-0.03126-0.0156-0.06641-0.0234-0.10547-0.0079-0.03125-0.0137-0.06836-0.0176-0.11133s-0.0059-0.08789-0.0059-0.13477c0-0.08593 0.0156-0.17383 0.0469-0.26367 0.0352-0.08984 0.0859-0.17187 0.1523-0.24609 0.0703-0.07813 0.1563-0.14063 0.2579-0.1875 0.1054-0.05078 0.2265-0.07617 0.3632-0.07617 0.1797 0 0.3242 0.04296 0.4336 0.1289 0.1133 0.08203 0.2012 0.17383 0.2637 0.27539 0.0703 0.1211 0.123 0.25586 0.1582 0.4043l1.0195 4.6757h0.1992c0.0743-0.3593 0.1543-0.7363 0.2403-1.1308 0.0859-0.39845 0.1719-0.79884 0.2578-1.2012 0.0898-0.40625 0.1777-0.80664 0.2637-1.2012 0.0898-0.39844 0.1758-0.7793 0.2578-1.1426 0.0547-0.22266 0.1601-0.40625 0.3164-0.55078 0.1562-0.14844 0.3437-0.22266 0.5625-0.22266z" fill="#fff"></path><defs><filter id="new-b" x="2" y="0" width="37" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18375"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18375" result="shape"></feBlend></filter><linearGradient id="new-a" x1="36" x2="5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF6A85"></stop><stop offset="1" stop-color="#FF2264"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Unicycle Mayhem</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/unicycle-mayhem/20230406062214/unicycle-mayhem-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Unicycle Mayhem" srcSet="https://images.crazygames.com/unicycle-mayhem/20230406062214/unicycle-mayhem-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/unicycle-mayhem/20230406062214/unicycle-mayhem-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/unicycle-mayhem/20230406062214/unicycle-mayhem-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/unicycle-mayhem/20230406062214/unicycle-mayhem-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/unicycle-mayhem/20230406062214/unicycle-mayhem-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/unicycle-mayhem/20230406062214/unicycle-mayhem-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/unicycle-mayhem/20230406062214/unicycle-mayhem-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li></ul><button class="arrow css-1pzb6vf" aria-label="Right arrow"></button></div></div><div class="css-1la1o8y"><div class="titleContainer css-18689kv"><h2 class="carouselTitle">.io Games</h2><a class="carouselTitleLink" href="https://www.crazygames.com/c/io">View more</a></div><div class="prime-carousel css-1nehx92"><ul class="prime-carousel-container css-lpurl3"><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/bloxdhop-io"><div class="gameThumbTitleContainer">Bloxd.io</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Bloxd.io" srcSet="https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/bloxdhop-io/cover-1671463581901.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/smash-karts"><div class="gameThumbTitleContainer">Smash Karts</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Smash Karts" srcSet="https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/smash-karts/20201119155032/smash-karts-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/rocket-bot-royale"><div class="gameThumbTitleContainer">Rocket Bot Royale</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/rocket-bot-royale/20220310095708/rocket-bot-royale-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Rocket Bot Royale" srcSet="https://images.crazygames.com/rocket-bot-royale/20220310095708/rocket-bot-royale-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/rocket-bot-royale/20220310095708/rocket-bot-royale-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/rocket-bot-royale/20220310095708/rocket-bot-royale-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/rocket-bot-royale/20220310095708/rocket-bot-royale-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/rocket-bot-royale/20220310095708/rocket-bot-royale-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/rocket-bot-royale/20220310095708/rocket-bot-royale-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/rocket-bot-royale/20220310095708/rocket-bot-royale-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/cubes-2048-io"><div class="gameThumbTitleContainer">Cubes 2048.io</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/games/cubes-2048-io/cover-1677684620911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Cubes 2048.io" srcSet="https://images.crazygames.com/games/cubes-2048-io/cover-1677684620911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/cubes-2048-io/cover-1677684620911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/cubes-2048-io/cover-1677684620911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/cubes-2048-io/cover-1677684620911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/cubes-2048-io/cover-1677684620911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/cubes-2048-io/cover-1677684620911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/cubes-2048-io/cover-1677684620911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/kirka-io"><div class="gameThumbTitleContainer">Kirka.io</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/games/kirka-io/cover-1649101040624.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Kirka.io" srcSet="https://images.crazygames.com/games/kirka-io/cover-1649101040624.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/kirka-io/cover-1649101040624.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/kirka-io/cover-1649101040624.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/kirka-io/cover-1649101040624.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/kirka-io/cover-1649101040624.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/kirka-io/cover-1649101040624.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/kirka-io/cover-1649101040624.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/shellshockersio"><svg width="67" height="27" viewBox="0 0 67 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#t-b)"><path d="M5 0H53.5C59.299 0 64 4.70101 64 10.5C64 16.299 59.299 21 53.5 21H5V0Z" fill="url(#t-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FFD702"></path><path d="m5 27h-2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A28700"></path><path d="m9.3711 5.7969c0.15625 0 0.3125 0.00585 0.46875 0.01757 0.16016 0.01172 0.30466 0.04493 0.43356 0.09961 0.1289 0.05469 0.2325 0.13867 0.3106 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19531-0.041 0.34961-0.123 0.46289-0.0781 0.10937-0.1817 0.1914-0.3106 0.24609s-0.2734 0.08984-0.43356 0.10547c-0.15625 0.01172-0.3125 0.01758-0.46875 0.01758h-0.59765v5.2032c0 0.1679-0.00586 0.332-0.01758 0.4921-0.00781 0.1602-0.03906 0.3028-0.09375 0.4278s-0.14258 0.2265-0.26367 0.3047c-0.1211 0.0742-0.29297 0.1113-0.51563 0.1113-0.22265 0-0.39453-0.0371-0.51562-0.1113-0.1211-0.0782-0.20899-0.1797-0.26367-0.3047-0.05469-0.125-0.0879-0.2676-0.09961-0.4278-0.00782-0.1601-0.01172-0.3242-0.01172-0.4921v-5.2032h-0.59766c-0.15625 0-0.31445-0.00586-0.47461-0.01758-0.15625-0.01563-0.29883-0.05078-0.42773-0.10547-0.12891-0.05469-0.23438-0.13672-0.31641-0.24609-0.07812-0.11328-0.11719-0.26758-0.11719-0.46289 0-0.19922 0.03907-0.35352 0.11719-0.46289 0.08203-0.11329 0.1875-0.19727 0.31641-0.25196 0.1289-0.05468 0.27148-0.08789 0.42773-0.09961 0.16016-0.01172 0.31836-0.01757 0.47461-0.01757h2.9766zm1.9922 2.3203c0-0.375 0.0547-0.69336 0.164-0.95508 0.1094-0.26563 0.2481-0.48633 0.4161-0.66211 0.1718-0.17578 0.3593-0.3125 0.5625-0.41016 0.207-0.10156 0.4062-0.17773 0.5976-0.22851 0.1953-0.05078 0.3711-0.08203 0.5274-0.09375 0.1562-0.01172 0.2714-0.01758 0.3457-0.01758h0.1992c0.0742 0 0.1894 0.00586 0.3457 0.01758 0.1562 0.01172 0.3301 0.04297 0.5215 0.09375s0.3886 0.12695 0.5918 0.22851c0.207 0.09766 0.3925 0.23438 0.5566 0.41016 0.168 0.17578 0.3047 0.39648 0.4102 0.66211 0.1093 0.26172 0.164 0.58008 0.164 0.95508v3.5039c0 0.3867-0.0547 0.7148-0.164 0.9844-0.1055 0.2695-0.2422 0.4941-0.4102 0.6738-0.1641 0.1797-0.3496 0.3223-0.5566 0.4277-0.2032 0.1016-0.4004 0.1778-0.5918 0.2285-0.1914 0.0508-0.3653 0.0821-0.5215 0.0938-0.1563 0.0117-0.2715 0.0176-0.3457 0.0176h-0.1992c-0.0743 0-0.1895-0.0059-0.3457-0.0176-0.1563-0.0117-0.3321-0.043-0.5274-0.0938-0.1914-0.0507-0.3906-0.1269-0.5976-0.2285-0.2032-0.1054-0.3907-0.248-0.5625-0.4277-0.168-0.1797-0.3067-0.4043-0.4161-0.6738-0.1093-0.2696-0.164-0.5977-0.164-0.9844v-3.5039zm1.9453 3.7266c0.0078 0.1445 0.041 0.2714 0.0996 0.3808 0.0508 0.0977 0.127 0.1856 0.2285 0.2637 0.1055 0.0781 0.2539 0.1172 0.4453 0.1172 0.1875 0 0.3321-0.0391 0.4336-0.1172 0.1016-0.0781 0.1778-0.166 0.2285-0.2637 0.0547-0.1094 0.0879-0.2363 0.0997-0.3808v-3.8204c-0.0118-0.14063-0.045-0.26758-0.0997-0.38086-0.0507-0.09375-0.1269-0.17969-0.2285-0.25781-0.1015-0.08204-0.2461-0.12305-0.4336-0.12305-0.1914 0-0.3398 0.04101-0.4453 0.12305-0.1015 0.07812-0.1777 0.16406-0.2285 0.25781-0.0586 0.11328-0.0918 0.24023-0.0996 0.38086v3.8204zm6.668-1.0782v1.8985c0 0.1679-0.0059 0.332-0.0176 0.4921-0.0078 0.1602-0.041 0.3028-0.0996 0.4278-0.0547 0.125-0.1426 0.2265-0.2637 0.3047-0.1211 0.0742-0.2949 0.1113-0.5215 0.1113-0.2187 0-0.3887-0.0371-0.5097-0.1113-0.1172-0.0782-0.2032-0.1797-0.2579-0.3047-0.0546-0.125-0.0878-0.2676-0.0996-0.4278-0.0078-0.1601-0.0117-0.3242-0.0117-0.4921v-5.5313c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0118-0.16015 0.045-0.30273 0.0996-0.42773 0.0547-0.125 0.1407-0.22461 0.2579-0.29883 0.121-0.07812 0.291-0.11718 0.5097-0.11718h1.9336c0.4844 0.02343 0.918 0.125 1.3008 0.30468 0.1641 0.07813 0.3223 0.17578 0.4746 0.29297 0.1563 0.11719 0.2949 0.26172 0.416 0.43359 0.125 0.16797 0.2246 0.36915 0.2988 0.60352 0.0743 0.23047 0.1114 0.49805 0.1114 0.80274 0 0.41796-0.0664 0.78515-0.1992 1.1016-0.129 0.3125-0.3184 0.57617-0.5684 0.79106-0.2461 0.2109-0.5488 0.371-0.9082 0.4804-0.3555 0.1055-0.7578 0.1582-1.207 0.1582h-0.75zm0.7968-1.3945c0.1954-0.01171 0.3711-0.05859 0.5274-0.14062 0.0664-0.03516 0.1308-0.08008 0.1933-0.13477 0.0625-0.05468 0.1192-0.12109 0.17-0.19922 0.0507-0.08203 0.0898-0.17773 0.1171-0.2871 0.0313-0.10938 0.0469-0.23438 0.0469-0.375 0-0.13282-0.0156-0.24805-0.0469-0.34571-0.0273-0.10156-0.0644-0.1875-0.1113-0.25781-0.0469-0.07422-0.0996-0.13672-0.1582-0.1875s-0.1191-0.09375-0.1816-0.12891c-0.1485-0.07422-0.3145-0.11914-0.4981-0.13476h-0.8554v2.1914h0.7968zm6.4375-2.2383c0-0.16797 0.0039-0.33203 0.0118-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773s0.1406-0.22461 0.2578-0.29883c0.1211-0.07812 0.291-0.11718 0.5097-0.11718h1.9336c0.4805 0.02343 0.9102 0.125 1.2891 0.30468 0.1602 0.07813 0.3164 0.17578 0.4687 0.29297 0.1563 0.11328 0.295 0.25586 0.4161 0.42774 0.1211 0.16796 0.2187 0.36718 0.2929 0.59765 0.0743 0.23047 0.1114 0.49805 0.1114 0.80274 0 0.0625-0.0059 0.14648-0.0176 0.25195-0.0117 0.10156-0.0371 0.21484-0.0762 0.33984-0.039 0.1211-0.0918 0.24805-0.1582 0.38086s-0.1543 0.25977-0.2637 0.38086c-0.1093 0.1211-0.2441 0.23242-0.4043 0.33399-0.1562 0.10154-0.3418 0.18364-0.5566 0.24604 0.1367 0.0547 0.2754 0.127 0.416 0.2168 0.1406 0.086 0.2676 0.1973 0.3809 0.334 0.1133 0.1368 0.2051 0.3008 0.2754 0.4922 0.0742 0.1914 0.1113 0.4141 0.1113 0.668v0.832c0 0.0469 0.0117 0.086 0.0352 0.1172 0.0234 0.0313 0.0468 0.0586 0.0703 0.082 0.0937 0.0938 0.1484 0.1758 0.164 0.2461 0.0157 0.0664 0.0235 0.1211 0.0235 0.1641 0 0.1367-0.0274 0.2519-0.0821 0.3457-0.0547 0.0937-0.1269 0.1699-0.2168 0.2285-0.0859 0.0586-0.1855 0.0996-0.2988 0.1231-0.1094 0.0273-0.2227 0.041-0.3398 0.041-0.1289 0-0.2598-0.0196-0.3926-0.0586-0.1328-0.043-0.2539-0.1035-0.3633-0.1817-0.1094-0.0781-0.1992-0.1757-0.2695-0.2929-0.0664-0.1172-0.0996-0.252-0.0996-0.4043v-1.2422c0-0.1719-0.0118-0.3301-0.0352-0.4746-0.0234-0.1446-0.0684-0.2696-0.1348-0.375-0.0664-0.1055-0.1582-0.1875-0.2753-0.2461-0.1172-0.0586-0.2696-0.0879-0.4571-0.0879h-0.6562v1.957c0 0.1719-0.0059 0.3399-0.0176 0.5039-0.0078 0.1641-0.0391 0.3106-0.0938 0.4395-0.0546 0.125-0.1425 0.2265-0.2636 0.3047-0.1211 0.0742-0.293 0.1113-0.5157 0.1113-0.2187 0-0.3886-0.0371-0.5097-0.1113-0.1172-0.0782-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2754-0.0996-0.4395-0.0079-0.164-0.0118-0.332-0.0118-0.5039v-5.5078zm2.5664 2.2383c0.1954-0.00781 0.3711-0.05468 0.5274-0.14062 0.0664-0.03516 0.1308-0.08008 0.1933-0.13477 0.0625-0.05468 0.1192-0.12304 0.17-0.20508 0.0508-0.08203 0.0898-0.17773 0.1172-0.2871 0.0312-0.10938 0.0468-0.23633 0.0468-0.38086 0-0.12891-0.0156-0.24219-0.0468-0.33985-0.0274-0.10156-0.0645-0.18945-0.1114-0.26367-0.0468-0.07422-0.1015-0.13672-0.164-0.1875-0.0586-0.05078-0.1192-0.0918-0.1817-0.12305-0.1484-0.07421-0.3164-0.11718-0.5039-0.1289h-0.8437v2.1914h0.7968zm5.6016 1.0898h1.8633l-0.8672-3.1406h-0.1289l-0.8672 3.1406zm3.6797 0.5743c0.0078 0.2656 0.0176 0.5371 0.0293 0.8144 0.0117 0.2774 0.0176 0.5449 0.0176 0.8027v0.1758c0 0.1485-0.0059 0.293-0.0176 0.4336-0.0078 0.1367-0.0371 0.2617-0.0879 0.375-0.0508 0.1094-0.1309 0.1973-0.2402 0.2637-0.1094 0.0664-0.2637 0.0996-0.4629 0.0996-0.2031 0-0.3594-0.0332-0.4688-0.0996-0.1093-0.0664-0.1914-0.1543-0.2461-0.2637-0.0508-0.1094-0.082-0.2344-0.0937-0.375-0.0078-0.1406-0.0117-0.2851-0.0117-0.4336v-0.8203h-2.3438v0.8203c0 0.1485-0.0058 0.293-0.0176 0.4336-0.0078 0.1406-0.039 0.2656-0.0937 0.375-0.0508 0.1094-0.1309 0.1973-0.2403 0.2637-0.1093 0.0664-0.2656 0.0996-0.4687 0.0996s-0.3594-0.0332-0.4687-0.0996c-0.1094-0.0664-0.1895-0.1543-0.2403-0.2637-0.0508-0.1133-0.0801-0.2383-0.0879-0.375-0.0078-0.1406-0.0117-0.2851-0.0117-0.4336v-0.1758-0.3867c0.0039-0.1367 0.0078-0.2754 0.0117-0.416s0.0078-0.2793 0.0117-0.416c0.0039-0.1406 0.0079-0.2734 0.0118-0.3984 0.1953-0.6797 0.4004-1.3672 0.6152-2.0625 0.2148-0.69922 0.4199-1.3906 0.6152-2.0742 0.0391-0.14453 0.086-0.28321 0.1407-0.41602 0.0546-0.13672 0.1269-0.2539 0.2168-0.35156 0.0898-0.10156 0.205-0.18164 0.3457-0.24024 0.1406-0.0625 0.3203-0.09374 0.539-0.09374h0.586c0.2148 0 0.3925 0.03124 0.5332 0.09374 0.1445 0.0586 0.2617 0.13868 0.3515 0.24024 0.0899 0.09766 0.1602 0.21484 0.211 0.35156 0.0546 0.13281 0.1035 0.27149 0.1464 0.41602l1.2188 4.1368zm4.8516-5.2383c0.1562 0 0.3125 0.00585 0.4687 0.01757 0.1602 0.01172 0.3047 0.04493 0.4336 0.09961 0.1289 0.05469 0.2324 0.13867 0.3105 0.25196 0.0821 0.10937 0.1231 0.26367 0.1231 0.46289 0 0.19531-0.041 0.34961-0.1231 0.46289-0.0781 0.10937-0.1816 0.1914-0.3105 0.24609s-0.2734 0.08984-0.4336 0.10547c-0.1562 0.01172-0.3125 0.01758-0.4687 0.01758h-0.5977v5.2032c0 0.1679-0.0059 0.332-0.0176 0.4921-0.0078 0.1602-0.039 0.3028-0.0937 0.4278s-0.1426 0.2265-0.2637 0.3047c-0.1211 0.0742-0.293 0.1113-0.5156 0.1113-0.2227 0-0.3946-0.0371-0.5157-0.1113-0.121-0.0782-0.2089-0.1797-0.2636-0.3047s-0.0879-0.2676-0.0996-0.4278c-0.0078-0.1601-0.0118-0.3242-0.0118-0.4921v-5.2032h-0.5976c-0.1563 0-0.3145-0.00586-0.4746-0.01758-0.1563-0.01563-0.2988-0.05078-0.4278-0.10547-0.1289-0.05469-0.2343-0.13672-0.3164-0.24609-0.0781-0.11328-0.1171-0.26758-0.1171-0.46289 0-0.19922 0.039-0.35352 0.1171-0.46289 0.0821-0.11329 0.1875-0.19727 0.3164-0.25196 0.129-0.05468 0.2715-0.08789 0.4278-0.09961 0.1601-0.01172 0.3183-0.01757 0.4746-0.01757h2.9766zm5.3789 0c0.1562 0 0.3144 0.00585 0.4746 0.01757 0.1601 0.01172 0.3047 0.04493 0.4336 0.09961 0.1289 0.05469 0.2343 0.13867 0.3164 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3164 0.24609s-0.2735 0.08789-0.4336 0.09961c-0.1602 0.01172-0.3184 0.01758-0.4746 0.01758h-1.3946v1.5938h0.7383c0.1563 0 0.3125 0.00586 0.4688 0.01758 0.1601 0.00781 0.3007 0.03906 0.4218 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4218 0.0937-0.1563 0.0078-0.3125 0.0117-0.4688 0.0117h-0.7383v1.6875h1.3946c0.1562 0 0.3144 0.0059 0.4746 0.0176 0.1601 0.0117 0.3047 0.0449 0.4336 0.0996 0.1289 0.0508 0.2343 0.1328 0.3164 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.0429 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996c-0.1601 0.0117-0.3164 0.0176-0.4687 0.0176h-2.2969c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2969zm5.1562 0c0.3555 0 0.6856 0.04492 0.9902 0.13476 0.3086 0.08984 0.5762 0.22461 0.8028 0.4043 0.2305 0.17578 0.4101 0.39648 0.539 0.66211 0.1329 0.26562 0.1993 0.57617 0.1993 0.93164v3.6328c0 0.3047-0.0332 0.5742-0.0996 0.8086-0.0665 0.2305-0.1543 0.4316-0.2637 0.6035-0.1055 0.168-0.2266 0.3125-0.3633 0.4336-0.1367 0.1172-0.2754 0.2129-0.416 0.2871-0.336 0.1797-0.7168 0.2813-1.1426 0.3047h-1.9453c-0.2227 0-0.3945-0.0371-0.5156-0.1113-0.1211-0.0782-0.209-0.1797-0.2637-0.3047-0.0547-0.1289-0.0879-0.2735-0.0996-0.4336-0.0078-0.1602-0.0117-0.3262-0.0117-0.4981v-5.5195c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773s0.1426-0.22461 0.2637-0.29883c0.1211-0.07812 0.2929-0.11718 0.5156-0.11718h1.6992zm-0.8086 1.3711v5.4375h0.7617c0.168-0.0078 0.3184-0.0469 0.4512-0.1172 0.0547-0.0274 0.1094-0.0645 0.1641-0.1113 0.0547-0.0469 0.1035-0.1016 0.1465-0.1641 0.0429-0.0664 0.0761-0.1445 0.0996-0.2344 0.0273-0.0898 0.041-0.1933 0.041-0.3105v-3.4571c0-0.12891-0.0137-0.24219-0.041-0.33985-0.0235-0.10156-0.0567-0.18945-0.0996-0.26367-0.043-0.07422-0.0918-0.13672-0.1465-0.1875s-0.1094-0.0918-0.1641-0.12304c-0.1328-0.07422-0.2832-0.11719-0.4512-0.12891h-0.7617z" fill="#312E2A"></path><defs><filter id="t-b" x="2" y="0" width="65" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18363"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18363" result="shape"></feBlend></filter><linearGradient id="t-a" x1="5" x2="64" y1="21" y2="21" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FFD600"></stop><stop offset="1" stop-color="#FFFA76"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Shell Shockers</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/shellshockersio/20230203070909/shellshockersio-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Shell Shockers" srcSet="https://images.crazygames.com/shellshockersio/20230203070909/shellshockersio-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/shellshockersio/20230203070909/shellshockersio-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/shellshockersio/20230203070909/shellshockersio-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/shellshockersio/20230203070909/shellshockersio-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/shellshockersio/20230203070909/shellshockersio-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/shellshockersio/20230203070909/shellshockersio-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/shellshockersio/20230203070909/shellshockersio-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/evowarsio"><div class="gameThumbTitleContainer">EvoWars.io</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/evowarsio/cover-1586449813403.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="EvoWars.io" srcSet="https://images.crazygames.com/games/evowarsio/cover-1586449813403.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/evowarsio/cover-1586449813403.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/evowarsio/cover-1586449813403.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/evowarsio/cover-1586449813403.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/evowarsio/cover-1586449813403.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/evowarsio/cover-1586449813403.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/evowarsio/cover-1586449813403.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/gulper-io"><div class="gameThumbTitleContainer">Gulper.io</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/gulper-io/20210208131756/gulper-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Gulper.io" srcSet="https://images.crazygames.com/gulper-io/20210208131756/gulper-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/gulper-io/20210208131756/gulper-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/gulper-io/20210208131756/gulper-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/gulper-io/20210208131756/gulper-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/gulper-io/20210208131756/gulper-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/gulper-io/20210208131756/gulper-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/gulper-io/20210208131756/gulper-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/snake-io"><div class="gameThumbTitleContainer">Snake.io</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/snake-io/20220928123850/snake-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Snake.io" srcSet="https://images.crazygames.com/snake-io/20220928123850/snake-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/snake-io/20220928123850/snake-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/snake-io/20220928123850/snake-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/snake-io/20220928123850/snake-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/snake-io/20220928123850/snake-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/snake-io/20220928123850/snake-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/snake-io/20220928123850/snake-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/deadshot-io"><svg width="34" height="27" viewBox="0 0 34 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#hot-b)"><path d="M5 0H20.5C26.299 0 31 4.70101 31 10.5C31 16.299 26.299 21 20.5 21H5V0Z" fill="url(#hot-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF7A00"></path><path d="m5 27h-2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#B05500"></path><path d="m5.8555 7.1445c0-0.16797 0.00781-0.33203 0.02344-0.49219 0.01562-0.16015 0.05273-0.30273 0.11132-0.42773 0.0625-0.12891 0.15235-0.23242 0.26954-0.31055 0.11718-0.07812 0.27929-0.11718 0.48632-0.11718 0.20313 0 0.36329 0.03906 0.48047 0.11718 0.1211 0.07813 0.21094 0.18164 0.26953 0.31055 0.0625 0.125 0.10157 0.26758 0.11719 0.42773 0.01563 0.16016 0.02344 0.32422 0.02344 0.49219v1.8398h1.6055v-1.8398c0-0.16797 0.00781-0.33203 0.02343-0.49219 0.01563-0.16015 0.05274-0.30273 0.11133-0.42773 0.0625-0.12891 0.15235-0.23242 0.26953-0.31055 0.11719-0.07812 0.2793-0.11718 0.48632-0.11718 0.2031 0 0.3633 0.03906 0.4805 0.11718 0.1211 0.07813 0.2109 0.18164 0.2695 0.31055 0.0625 0.125 0.1016 0.26758 0.1172 0.42773 0.0156 0.16016 0.0234 0.32422 0.0234 0.49219v5.5078c0 0.1719-0.0078 0.3379-0.0234 0.4981-0.0156 0.1601-0.0547 0.3047-0.1172 0.4336-0.0586 0.125-0.1484 0.2265-0.2695 0.3047-0.1172 0.0742-0.2774 0.1113-0.4805 0.1113-0.20702 0-0.36913-0.0371-0.48632-0.1113-0.11718-0.0782-0.20703-0.1797-0.26953-0.3047-0.05859-0.1289-0.0957-0.2735-0.11133-0.4336-0.01562-0.1602-0.02343-0.3262-0.02343-0.4981v-1.9453h-1.6055v1.9453c0 0.1719-0.00781 0.3379-0.02344 0.4981-0.01562 0.1601-0.05469 0.3047-0.11719 0.4336-0.05859 0.125-0.14843 0.2265-0.26953 0.3047-0.11718 0.0742-0.27734 0.1113-0.48047 0.1113-0.20703 0-0.36914-0.0371-0.48632-0.1113-0.11719-0.0782-0.20704-0.1797-0.26954-0.3047-0.05859-0.1289-0.0957-0.2735-0.11132-0.4336-0.01563-0.1602-0.02344-0.3262-0.02344-0.4981v-5.5078zm6.5859 0.97266c0-0.375 0.0547-0.69336 0.1641-0.95508 0.1093-0.26563 0.248-0.48633 0.416-0.66211 0.1719-0.17578 0.3594-0.3125 0.5625-0.41016 0.207-0.10156 0.4062-0.17773 0.5976-0.22851 0.1954-0.05078 0.3711-0.08203 0.5274-0.09375 0.1562-0.01172 0.2715-0.01758 0.3457-0.01758h0.1992c0.0742 0 0.1895 0.00586 0.3457 0.01758 0.1563 0.01172 0.3301 0.04297 0.5215 0.09375s0.3887 0.12695 0.5918 0.22851c0.207 0.09766 0.3926 0.23438 0.5566 0.41016 0.168 0.17578 0.3047 0.39648 0.4102 0.66211 0.1094 0.26172 0.1641 0.58008 0.1641 0.95508v3.5039c0 0.3867-0.0547 0.7148-0.1641 0.9844-0.1055 0.2695-0.2422 0.4941-0.4102 0.6738-0.164 0.1797-0.3496 0.3223-0.5566 0.4277-0.2031 0.1016-0.4004 0.1778-0.5918 0.2285-0.1914 0.0508-0.3652 0.0821-0.5215 0.0938-0.1562 0.0117-0.2715 0.0176-0.3457 0.0176h-0.1992c-0.0742 0-0.1895-0.0059-0.3457-0.0176-0.1563-0.0117-0.332-0.043-0.5274-0.0938-0.1914-0.0507-0.3906-0.1269-0.5976-0.2285-0.2031-0.1054-0.3906-0.248-0.5625-0.4277-0.168-0.1797-0.3067-0.4043-0.416-0.6738-0.1094-0.2696-0.1641-0.5977-0.1641-0.9844v-3.5039zm1.9453 3.7266c0.0078 0.1445 0.041 0.2714 0.0996 0.3808 0.0508 0.0977 0.127 0.1856 0.2285 0.2637 0.1055 0.0781 0.254 0.1172 0.4454 0.1172 0.1875 0 0.332-0.0391 0.4336-0.1172 0.1015-0.0781 0.1777-0.166 0.2285-0.2637 0.0547-0.1094 0.0879-0.2363 0.0996-0.3808v-3.8204c-0.0117-0.14063-0.0449-0.26758-0.0996-0.38086-0.0508-0.09375-0.127-0.17969-0.2285-0.25781-0.1016-0.08204-0.2461-0.12305-0.4336-0.12305-0.1914 0-0.3399 0.04101-0.4454 0.12305-0.1015 0.07812-0.1777 0.16406-0.2285 0.25781-0.0586 0.11328-0.0918 0.24023-0.0996 0.38086v3.8204zm8.4258-6.0469c0.1563 0 0.3125 0.00585 0.4687 0.01757 0.1602 0.01172 0.3047 0.04493 0.4336 0.09961 0.129 0.05469 0.2325 0.13867 0.3106 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19531-0.041 0.34961-0.123 0.46289-0.0781 0.10937-0.1816 0.1914-0.3106 0.24609-0.1289 0.05469-0.2734 0.08984-0.4336 0.10547-0.1562 0.01172-0.3124 0.01758-0.4687 0.01758h-0.5977v5.2032c0 0.1679-0.0058 0.332-0.0175 0.4921-0.0078 0.1602-0.0391 0.3028-0.0938 0.4278s-0.1426 0.2265-0.2637 0.3047c-0.121 0.0742-0.2929 0.1113-0.5156 0.1113-0.2226 0-0.3945-0.0371-0.5156-0.1113-0.1211-0.0782-0.209-0.1797-0.2637-0.3047s-0.0879-0.2676-0.0996-0.4278c-0.0078-0.1601-0.0117-0.3242-0.0117-0.4921v-5.2032h-0.5977c-0.1562 0-0.3144-0.00586-0.4746-0.01758-0.1562-0.01563-0.2988-0.05078-0.4277-0.10547s-0.2344-0.13672-0.3164-0.24609c-0.0781-0.11328-0.1172-0.26758-0.1172-0.46289 0-0.19922 0.0391-0.35352 0.1172-0.46289 0.082-0.11329 0.1875-0.19727 0.3164-0.25196 0.1289-0.05468 0.2715-0.08789 0.4277-0.09961 0.1602-0.01172 0.3184-0.01757 0.4746-0.01757h2.9766z" fill="#fff"></path><defs><filter id="hot-b" x="2" y="0" width="32" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18385"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18385" result="shape"></feBlend></filter><linearGradient id="hot-a" x1="5" x2="31" y1="21" y2="21" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF7A00"></stop><stop offset="1" stop-color="#FF3D00"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">DEADSHOT.io</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/deadshot-io/20221006150442/deadshot-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="DEADSHOT.io" srcSet="https://images.crazygames.com/deadshot-io/20221006150442/deadshot-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/deadshot-io/20221006150442/deadshot-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/deadshot-io/20221006150442/deadshot-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/deadshot-io/20221006150442/deadshot-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/deadshot-io/20221006150442/deadshot-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/deadshot-io/20221006150442/deadshot-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/deadshot-io/20221006150442/deadshot-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li></ul><button class="arrow css-1pzb6vf" aria-label="Right arrow"></button></div></div><div class="css-1la1o8y"><div class="titleContainer css-18689kv"><h2 class="carouselTitle">Casual Games</h2><a class="carouselTitleLink" href="https://www.crazygames.com/c/casual">View more</a></div><div class="prime-carousel css-1nehx92"><ul class="prime-carousel-container css-lpurl3"><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/crazy-roll-3d"><div class="gameThumbTitleContainer">Crazy Roll 3D</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Crazy Roll 3D" srcSet="https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/crazy-roll-3d/cover-1663149965269.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/tiny-fishing"><svg width="34" height="27" viewBox="0 0 34 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#hot-b)"><path d="M5 0H20.5C26.299 0 31 4.70101 31 10.5C31 16.299 26.299 21 20.5 21H5V0Z" fill="url(#hot-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF7A00"></path><path d="m5 27h-2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#B05500"></path><path d="m5.8555 7.1445c0-0.16797 0.00781-0.33203 0.02344-0.49219 0.01562-0.16015 0.05273-0.30273 0.11132-0.42773 0.0625-0.12891 0.15235-0.23242 0.26954-0.31055 0.11718-0.07812 0.27929-0.11718 0.48632-0.11718 0.20313 0 0.36329 0.03906 0.48047 0.11718 0.1211 0.07813 0.21094 0.18164 0.26953 0.31055 0.0625 0.125 0.10157 0.26758 0.11719 0.42773 0.01563 0.16016 0.02344 0.32422 0.02344 0.49219v1.8398h1.6055v-1.8398c0-0.16797 0.00781-0.33203 0.02343-0.49219 0.01563-0.16015 0.05274-0.30273 0.11133-0.42773 0.0625-0.12891 0.15235-0.23242 0.26953-0.31055 0.11719-0.07812 0.2793-0.11718 0.48632-0.11718 0.2031 0 0.3633 0.03906 0.4805 0.11718 0.1211 0.07813 0.2109 0.18164 0.2695 0.31055 0.0625 0.125 0.1016 0.26758 0.1172 0.42773 0.0156 0.16016 0.0234 0.32422 0.0234 0.49219v5.5078c0 0.1719-0.0078 0.3379-0.0234 0.4981-0.0156 0.1601-0.0547 0.3047-0.1172 0.4336-0.0586 0.125-0.1484 0.2265-0.2695 0.3047-0.1172 0.0742-0.2774 0.1113-0.4805 0.1113-0.20702 0-0.36913-0.0371-0.48632-0.1113-0.11718-0.0782-0.20703-0.1797-0.26953-0.3047-0.05859-0.1289-0.0957-0.2735-0.11133-0.4336-0.01562-0.1602-0.02343-0.3262-0.02343-0.4981v-1.9453h-1.6055v1.9453c0 0.1719-0.00781 0.3379-0.02344 0.4981-0.01562 0.1601-0.05469 0.3047-0.11719 0.4336-0.05859 0.125-0.14843 0.2265-0.26953 0.3047-0.11718 0.0742-0.27734 0.1113-0.48047 0.1113-0.20703 0-0.36914-0.0371-0.48632-0.1113-0.11719-0.0782-0.20704-0.1797-0.26954-0.3047-0.05859-0.1289-0.0957-0.2735-0.11132-0.4336-0.01563-0.1602-0.02344-0.3262-0.02344-0.4981v-5.5078zm6.5859 0.97266c0-0.375 0.0547-0.69336 0.1641-0.95508 0.1093-0.26563 0.248-0.48633 0.416-0.66211 0.1719-0.17578 0.3594-0.3125 0.5625-0.41016 0.207-0.10156 0.4062-0.17773 0.5976-0.22851 0.1954-0.05078 0.3711-0.08203 0.5274-0.09375 0.1562-0.01172 0.2715-0.01758 0.3457-0.01758h0.1992c0.0742 0 0.1895 0.00586 0.3457 0.01758 0.1563 0.01172 0.3301 0.04297 0.5215 0.09375s0.3887 0.12695 0.5918 0.22851c0.207 0.09766 0.3926 0.23438 0.5566 0.41016 0.168 0.17578 0.3047 0.39648 0.4102 0.66211 0.1094 0.26172 0.1641 0.58008 0.1641 0.95508v3.5039c0 0.3867-0.0547 0.7148-0.1641 0.9844-0.1055 0.2695-0.2422 0.4941-0.4102 0.6738-0.164 0.1797-0.3496 0.3223-0.5566 0.4277-0.2031 0.1016-0.4004 0.1778-0.5918 0.2285-0.1914 0.0508-0.3652 0.0821-0.5215 0.0938-0.1562 0.0117-0.2715 0.0176-0.3457 0.0176h-0.1992c-0.0742 0-0.1895-0.0059-0.3457-0.0176-0.1563-0.0117-0.332-0.043-0.5274-0.0938-0.1914-0.0507-0.3906-0.1269-0.5976-0.2285-0.2031-0.1054-0.3906-0.248-0.5625-0.4277-0.168-0.1797-0.3067-0.4043-0.416-0.6738-0.1094-0.2696-0.1641-0.5977-0.1641-0.9844v-3.5039zm1.9453 3.7266c0.0078 0.1445 0.041 0.2714 0.0996 0.3808 0.0508 0.0977 0.127 0.1856 0.2285 0.2637 0.1055 0.0781 0.254 0.1172 0.4454 0.1172 0.1875 0 0.332-0.0391 0.4336-0.1172 0.1015-0.0781 0.1777-0.166 0.2285-0.2637 0.0547-0.1094 0.0879-0.2363 0.0996-0.3808v-3.8204c-0.0117-0.14063-0.0449-0.26758-0.0996-0.38086-0.0508-0.09375-0.127-0.17969-0.2285-0.25781-0.1016-0.08204-0.2461-0.12305-0.4336-0.12305-0.1914 0-0.3399 0.04101-0.4454 0.12305-0.1015 0.07812-0.1777 0.16406-0.2285 0.25781-0.0586 0.11328-0.0918 0.24023-0.0996 0.38086v3.8204zm8.4258-6.0469c0.1563 0 0.3125 0.00585 0.4687 0.01757 0.1602 0.01172 0.3047 0.04493 0.4336 0.09961 0.129 0.05469 0.2325 0.13867 0.3106 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19531-0.041 0.34961-0.123 0.46289-0.0781 0.10937-0.1816 0.1914-0.3106 0.24609-0.1289 0.05469-0.2734 0.08984-0.4336 0.10547-0.1562 0.01172-0.3124 0.01758-0.4687 0.01758h-0.5977v5.2032c0 0.1679-0.0058 0.332-0.0175 0.4921-0.0078 0.1602-0.0391 0.3028-0.0938 0.4278s-0.1426 0.2265-0.2637 0.3047c-0.121 0.0742-0.2929 0.1113-0.5156 0.1113-0.2226 0-0.3945-0.0371-0.5156-0.1113-0.1211-0.0782-0.209-0.1797-0.2637-0.3047s-0.0879-0.2676-0.0996-0.4278c-0.0078-0.1601-0.0117-0.3242-0.0117-0.4921v-5.2032h-0.5977c-0.1562 0-0.3144-0.00586-0.4746-0.01758-0.1562-0.01563-0.2988-0.05078-0.4277-0.10547s-0.2344-0.13672-0.3164-0.24609c-0.0781-0.11328-0.1172-0.26758-0.1172-0.46289 0-0.19922 0.0391-0.35352 0.1172-0.46289 0.082-0.11329 0.1875-0.19727 0.3164-0.25196 0.1289-0.05468 0.2715-0.08789 0.4277-0.09961 0.1602-0.01172 0.3184-0.01757 0.4746-0.01757h2.9766z" fill="#fff"></path><defs><filter id="hot-b" x="2" y="0" width="32" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18385"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18385" result="shape"></feBlend></filter><linearGradient id="hot-a" x1="5" x2="31" y1="21" y2="21" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF7A00"></stop><stop offset="1" stop-color="#FF3D00"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Tiny Fishing</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Tiny Fishing" srcSet="https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/tiny-fishing/cover-1680026294037.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/helix-jump"><div class="gameThumbTitleContainer">Helix Jump</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/helix-jump/20220519091317/helix-jump-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Helix Jump" srcSet="https://images.crazygames.com/helix-jump/20220519091317/helix-jump-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/helix-jump/20220519091317/helix-jump-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/helix-jump/20220519091317/helix-jump-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/helix-jump/20220519091317/helix-jump-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/helix-jump/20220519091317/helix-jump-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/helix-jump/20220519091317/helix-jump-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/helix-jump/20220519091317/helix-jump-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/shape-shooter-3"><div class="gameThumbTitleContainer">Shape Shooter 3</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/shape-shooter-3/20230315163335/shape-shooter-3-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Shape Shooter 3" srcSet="https://images.crazygames.com/shape-shooter-3/20230315163335/shape-shooter-3-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/shape-shooter-3/20230315163335/shape-shooter-3-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/shape-shooter-3/20230315163335/shape-shooter-3-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/shape-shooter-3/20230315163335/shape-shooter-3-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/shape-shooter-3/20230315163335/shape-shooter-3-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/shape-shooter-3/20230315163335/shape-shooter-3-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/shape-shooter-3/20230315163335/shape-shooter-3-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/bouncy-motors"><div class="gameThumbTitleContainer">Bouncy Motors</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/bouncy-motors/20230220162342/bouncy-motors-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Bouncy Motors" srcSet="https://images.crazygames.com/bouncy-motors/20230220162342/bouncy-motors-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/bouncy-motors/20230220162342/bouncy-motors-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/bouncy-motors/20230220162342/bouncy-motors-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/bouncy-motors/20230220162342/bouncy-motors-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/bouncy-motors/20230220162342/bouncy-motors-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/bouncy-motors/20230220162342/bouncy-motors-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/bouncy-motors/20230220162342/bouncy-motors-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/jet-rush"><div class="gameThumbTitleContainer">Jet Rush</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/games/jet-rush/cover-1663772569110.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Jet Rush" srcSet="https://images.crazygames.com/games/jet-rush/cover-1663772569110.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/jet-rush/cover-1663772569110.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/jet-rush/cover-1663772569110.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/jet-rush/cover-1663772569110.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/jet-rush/cover-1663772569110.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/jet-rush/cover-1663772569110.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/jet-rush/cover-1663772569110.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/my-mart"><div class="gameThumbTitleContainer">My Mart</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/my-mart/20230322115548/my-mart-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="My Mart" srcSet="https://images.crazygames.com/my-mart/20230322115548/my-mart-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/my-mart/20230322115548/my-mart-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/my-mart/20230322115548/my-mart-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/my-mart/20230322115548/my-mart-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/my-mart/20230322115548/my-mart-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/my-mart/20230322115548/my-mart-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/my-mart/20230322115548/my-mart-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/tall-io"><svg width="60" height="27" viewBox="0 0 60 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#up-b)"><path d="M5 0H46.5C52.299 0 57 4.70101 57 10.5C57 16.299 52.299 21 46.5 21H5V0Z" fill="url(#up-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#27A569"></path><path d="M5 27L3 27C1.34315 27 -3.59416e-07 25.6569 -2.14569e-07 24C-6.97221e-08 22.3431 1.34315 21 3 21L5 21L5 27Z" fill="#006D39"></path><path d="M5.83203 7.13281C5.83203 6.96484 5.83984 6.80078 5.85547 6.64062C5.875 6.48047 5.91602 6.33789 5.97852 6.21289C6.04492 6.08789 6.14258 5.98828 6.27148 5.91406C6.40039 5.83594 6.57812 5.79688 6.80469 5.79688C7.03125 5.79688 7.20898 5.83594 7.33789 5.91406C7.4707 5.98828 7.56836 6.08789 7.63086 6.21289C7.69727 6.33789 7.73828 6.48047 7.75391 6.64062C7.76953 6.80078 7.77734 6.96484 7.77734 7.13281V11.75C7.78906 11.9219 7.82422 12.0742 7.88281 12.207C7.90625 12.2656 7.9375 12.3223 7.97656 12.377C8.01562 12.4316 8.06055 12.4805 8.11133 12.5234C8.16602 12.5664 8.22852 12.6016 8.29883 12.6289C8.37305 12.6523 8.45703 12.6641 8.55078 12.6641C8.64453 12.6641 8.72852 12.6523 8.80273 12.6289C8.87695 12.6016 8.93945 12.5664 8.99023 12.5234C9.04492 12.4805 9.0918 12.4316 9.13086 12.377C9.16992 12.3223 9.20117 12.2656 9.22461 12.207C9.2832 12.0742 9.31641 11.9219 9.32422 11.75V7.13281C9.32422 6.96484 9.33203 6.80078 9.34766 6.64062C9.36328 6.48047 9.40234 6.33789 9.46484 6.21289C9.53125 6.08789 9.62891 5.98828 9.75781 5.91406C9.88672 5.83594 10.0664 5.79688 10.2969 5.79688C10.5234 5.79688 10.7012 5.83594 10.8301 5.91406C10.959 5.98828 11.0547 6.08789 11.1172 6.21289C11.1836 6.33789 11.2246 6.48047 11.2402 6.64062C11.2598 6.80078 11.2695 6.96484 11.2695 7.13281V11.5977C11.2695 12.0039 11.2031 12.3594 11.0703 12.6641C10.9414 12.9688 10.7559 13.2246 10.5137 13.4316C10.2754 13.6348 9.98828 13.7891 9.65234 13.8945C9.32031 13.9961 8.95312 14.0469 8.55078 14.0469C8.14453 14.0469 7.77539 13.9941 7.44336 13.8887C7.11133 13.7793 6.82422 13.6211 6.58203 13.4141C6.34375 13.207 6.1582 12.9512 6.02539 12.6465C5.89648 12.3418 5.83203 11.9922 5.83203 11.5977V7.13281ZM14.6914 10.7656V12.6641C14.6914 12.832 14.6855 12.9961 14.6738 13.1562C14.666 13.3164 14.6328 13.459 14.5742 13.584C14.5195 13.709 14.4316 13.8105 14.3105 13.8887C14.1895 13.9629 14.0156 14 13.7891 14C13.5703 14 13.4004 13.9629 13.2793 13.8887C13.1621 13.8105 13.0762 13.709 13.0215 13.584C12.9668 13.459 12.9336 13.3164 12.9219 13.1562C12.9141 12.9961 12.9102 12.832 12.9102 12.6641V7.13281C12.9102 6.96484 12.9141 6.80078 12.9219 6.64062C12.9336 6.48047 12.9668 6.33789 13.0215 6.21289C13.0762 6.08789 13.1621 5.98828 13.2793 5.91406C13.4004 5.83594 13.5703 5.79688 13.7891 5.79688H15.7227C16.207 5.82031 16.6406 5.92188 17.0234 6.10156C17.1875 6.17969 17.3457 6.27734 17.498 6.39453C17.6543 6.51172 17.793 6.65625 17.9141 6.82812C18.0391 6.99609 18.1387 7.19727 18.2129 7.43164C18.2871 7.66211 18.3242 7.92969 18.3242 8.23438C18.3242 8.65234 18.2578 9.01953 18.125 9.33594C17.9961 9.64844 17.8066 9.91211 17.5566 10.127C17.3105 10.3379 17.0078 10.498 16.6484 10.6074C16.293 10.7129 15.8906 10.7656 15.4414 10.7656H14.6914ZM15.4883 9.37109C15.6836 9.35938 15.8594 9.3125 16.0156 9.23047C16.082 9.19531 16.1465 9.15039 16.209 9.0957C16.2715 9.04102 16.3281 8.97461 16.3789 8.89648C16.4297 8.81445 16.4688 8.71875 16.4961 8.60938C16.5273 8.5 16.543 8.375 16.543 8.23438C16.543 8.10156 16.5273 7.98633 16.4961 7.88867C16.4688 7.78711 16.4316 7.70117 16.3848 7.63086C16.3379 7.55664 16.2852 7.49414 16.2266 7.44336C16.168 7.39258 16.1074 7.34961 16.0449 7.31445C15.8965 7.24023 15.7305 7.19531 15.5469 7.17969H14.6914V9.37109H15.4883ZM21.793 5.79688C22.1484 5.79688 22.4785 5.8418 22.7832 5.93164C23.0918 6.02148 23.3594 6.15625 23.5859 6.33594C23.8164 6.51172 23.9961 6.73242 24.125 6.99805C24.2578 7.26367 24.3242 7.57422 24.3242 7.92969V11.5625C24.3242 11.8672 24.291 12.1367 24.2246 12.3711C24.1582 12.6016 24.0703 12.8027 23.9609 12.9746C23.8555 13.1426 23.7344 13.2871 23.5977 13.4082C23.4609 13.5254 23.3223 13.6211 23.1816 13.6953C22.8457 13.875 22.4648 13.9766 22.0391 14H20.0938C19.8711 14 19.6992 13.9629 19.5781 13.8887C19.457 13.8105 19.3691 13.709 19.3145 13.584C19.2598 13.4551 19.2266 13.3105 19.2148 13.1504C19.207 12.9902 19.2031 12.8242 19.2031 12.6523V7.13281C19.2031 6.96484 19.207 6.80078 19.2148 6.64062C19.2266 6.48047 19.2598 6.33789 19.3145 6.21289C19.3691 6.08789 19.457 5.98828 19.5781 5.91406C19.6992 5.83594 19.8711 5.79688 20.0938 5.79688H21.793ZM20.9844 7.16797V12.6055H21.7461C21.9141 12.5977 22.0645 12.5586 22.1973 12.4883C22.252 12.4609 22.3066 12.4238 22.3613 12.377C22.416 12.3301 22.4648 12.2754 22.5078 12.2129C22.5508 12.1465 22.584 12.0684 22.6074 11.9785C22.6348 11.8887 22.6484 11.7852 22.6484 11.668V8.21094C22.6484 8.08203 22.6348 7.96875 22.6074 7.87109C22.584 7.76953 22.5508 7.68164 22.5078 7.60742C22.4648 7.5332 22.416 7.4707 22.3613 7.41992C22.3066 7.36914 22.252 7.32812 22.1973 7.29688C22.0645 7.22266 21.9141 7.17969 21.7461 7.16797H20.9844ZM27.1367 10.4609H29L28.1328 7.32031H28.0039L27.1367 10.4609ZM30.8164 11.0352C30.8242 11.3008 30.834 11.5723 30.8457 11.8496C30.8574 12.127 30.8633 12.3945 30.8633 12.6523V12.8281C30.8633 12.9766 30.8574 13.1211 30.8457 13.2617C30.8379 13.3984 30.8086 13.5234 30.7578 13.6367C30.707 13.7461 30.627 13.834 30.5176 13.9004C30.4082 13.9668 30.2539 14 30.0547 14C29.8516 14 29.6953 13.9668 29.5859 13.9004C29.4766 13.834 29.3945 13.7461 29.3398 13.6367C29.2891 13.5273 29.2578 13.4023 29.2461 13.2617C29.2383 13.1211 29.2344 12.9766 29.2344 12.8281V12.0078H26.8906V12.8281C26.8906 12.9766 26.8848 13.1211 26.873 13.2617C26.8652 13.4023 26.834 13.5273 26.7793 13.6367C26.7285 13.7461 26.6484 13.834 26.5391 13.9004C26.4297 13.9668 26.2734 14 26.0703 14C25.8672 14 25.7109 13.9668 25.6016 13.9004C25.4922 13.834 25.4121 13.7461 25.3613 13.6367C25.3105 13.5234 25.2812 13.3984 25.2734 13.2617C25.2656 13.1211 25.2617 12.9766 25.2617 12.8281V12.6523C25.2617 12.5312 25.2617 12.4023 25.2617 12.2656C25.2656 12.1289 25.2695 11.9902 25.2734 11.8496C25.2773 11.709 25.2812 11.5703 25.2852 11.4336C25.2891 11.293 25.293 11.1602 25.2969 11.0352C25.4922 10.3555 25.6973 9.66797 25.9121 8.97266C26.127 8.27344 26.332 7.58203 26.5273 6.89844C26.5664 6.75391 26.6133 6.61523 26.668 6.48242C26.7227 6.3457 26.7949 6.22852 26.8848 6.13086C26.9746 6.0293 27.0898 5.94922 27.2305 5.89062C27.3711 5.82812 27.5508 5.79688 27.7695 5.79688H28.3555C28.5703 5.79688 28.748 5.82812 28.8887 5.89062C29.0332 5.94922 29.1504 6.0293 29.2402 6.13086C29.3301 6.22852 29.4004 6.3457 29.4512 6.48242C29.5059 6.61523 29.5547 6.75391 29.5977 6.89844L30.8164 11.0352ZM35.668 5.79688C35.8242 5.79688 35.9805 5.80273 36.1367 5.81445C36.2969 5.82617 36.4414 5.85938 36.5703 5.91406C36.6992 5.96875 36.8027 6.05273 36.8809 6.16602C36.9629 6.27539 37.0039 6.42969 37.0039 6.62891C37.0039 6.82422 36.9629 6.97852 36.8809 7.0918C36.8027 7.20117 36.6992 7.2832 36.5703 7.33789C36.4414 7.39258 36.2969 7.42773 36.1367 7.44336C35.9805 7.45508 35.8242 7.46094 35.668 7.46094H35.0703V12.6641C35.0703 12.832 35.0645 12.9961 35.0527 13.1562C35.0449 13.3164 35.0137 13.459 34.959 13.584C34.9043 13.709 34.8164 13.8105 34.6953 13.8887C34.5742 13.9629 34.4023 14 34.1797 14C33.957 14 33.7852 13.9629 33.6641 13.8887C33.543 13.8105 33.4551 13.709 33.4004 13.584C33.3457 13.459 33.3125 13.3164 33.3008 13.1562C33.293 12.9961 33.2891 12.832 33.2891 12.6641V7.46094H32.6914C32.5352 7.46094 32.377 7.45508 32.2168 7.44336C32.0605 7.42773 31.918 7.39258 31.7891 7.33789C31.6602 7.2832 31.5547 7.20117 31.4727 7.0918C31.3945 6.97852 31.3555 6.82422 31.3555 6.62891C31.3555 6.42969 31.3945 6.27539 31.4727 6.16602C31.5547 6.05273 31.6602 5.96875 31.7891 5.91406C31.918 5.85938 32.0605 5.82617 32.2168 5.81445C32.377 5.80273 32.5352 5.79688 32.6914 5.79688H35.668ZM41.0469 5.79688C41.2031 5.79688 41.3613 5.80273 41.5215 5.81445C41.6816 5.82617 41.8262 5.85938 41.9551 5.91406C42.084 5.96875 42.1895 6.05273 42.2715 6.16602C42.3535 6.27539 42.3945 6.42969 42.3945 6.62891C42.3945 6.82812 42.3535 6.98438 42.2715 7.09766C42.1895 7.20703 42.084 7.28906 41.9551 7.34375C41.8262 7.39844 41.6816 7.43164 41.5215 7.44336C41.3613 7.45508 41.2031 7.46094 41.0469 7.46094H39.6523V9.05469H40.3906C40.5469 9.05469 40.7031 9.06055 40.8594 9.07227C41.0195 9.08008 41.1602 9.11133 41.2812 9.16602C41.4062 9.2168 41.5078 9.29688 41.5859 9.40625C41.6641 9.51172 41.7031 9.66016 41.7031 9.85156C41.7031 10.0469 41.6641 10.1973 41.5859 10.3027C41.5078 10.4082 41.4062 10.4883 41.2812 10.543C41.1602 10.5938 41.0195 10.625 40.8594 10.6367C40.7031 10.6445 40.5469 10.6484 40.3906 10.6484H39.6523V12.3359H41.0469C41.2031 12.3359 41.3613 12.3418 41.5215 12.3535C41.6816 12.3652 41.8262 12.3984 41.9551 12.4531C42.084 12.5039 42.1895 12.5859 42.2715 12.6992C42.3535 12.8086 42.3945 12.9609 42.3945 13.1562C42.3945 13.3594 42.3516 13.5176 42.2656 13.6309C42.1836 13.7441 42.0781 13.8281 41.9492 13.8828C41.8203 13.9375 41.6758 13.9707 41.5156 13.9824C41.3555 13.9941 41.1992 14 41.0469 14H38.75C38.5312 14 38.3613 13.9609 38.2402 13.8828C38.123 13.8047 38.0371 13.7031 37.9824 13.5781C37.9277 13.4492 37.8945 13.3047 37.8828 13.1445C37.875 12.9844 37.8711 12.8203 37.8711 12.6523V7.14453C37.8711 6.97656 37.875 6.8125 37.8828 6.65234C37.8945 6.49219 37.9277 6.34961 37.9824 6.22461C38.0371 6.0957 38.123 5.99219 38.2402 5.91406C38.3613 5.83594 38.5312 5.79688 38.75 5.79688H41.0469ZM46.2031 5.79688C46.5586 5.79688 46.8887 5.8418 47.1934 5.93164C47.502 6.02148 47.7695 6.15625 47.9961 6.33594C48.2266 6.51172 48.4062 6.73242 48.5352 6.99805C48.668 7.26367 48.7344 7.57422 48.7344 7.92969V11.5625C48.7344 11.8672 48.7012 12.1367 48.6348 12.3711C48.5684 12.6016 48.4805 12.8027 48.3711 12.9746C48.2656 13.1426 48.1445 13.2871 48.0078 13.4082C47.8711 13.5254 47.7324 13.6211 47.5918 13.6953C47.2559 13.875 46.875 13.9766 46.4492 14H44.5039C44.2812 14 44.1094 13.9629 43.9883 13.8887C43.8672 13.8105 43.7793 13.709 43.7246 13.584C43.6699 13.4551 43.6367 13.3105 43.625 13.1504C43.6172 12.9902 43.6133 12.8242 43.6133 12.6523V7.13281C43.6133 6.96484 43.6172 6.80078 43.625 6.64062C43.6367 6.48047 43.6699 6.33789 43.7246 6.21289C43.7793 6.08789 43.8672 5.98828 43.9883 5.91406C44.1094 5.83594 44.2812 5.79688 44.5039 5.79688H46.2031ZM45.3945 7.16797V12.6055H46.1562C46.3242 12.5977 46.4746 12.5586 46.6074 12.4883C46.6621 12.4609 46.7168 12.4238 46.7715 12.377C46.8262 12.3301 46.875 12.2754 46.918 12.2129C46.9609 12.1465 46.9941 12.0684 47.0176 11.9785C47.0449 11.8887 47.0586 11.7852 47.0586 11.668V8.21094C47.0586 8.08203 47.0449 7.96875 47.0176 7.87109C46.9941 7.76953 46.9609 7.68164 46.918 7.60742C46.875 7.5332 46.8262 7.4707 46.7715 7.41992C46.7168 7.36914 46.6621 7.32812 46.6074 7.29688C46.4746 7.22266 46.3242 7.17969 46.1562 7.16797H45.3945Z" fill="white"></path><defs><filter id="up-b" x="2" y="0" width="58" height="27" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_347_18380"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_347_18380" result="shape"></feBlend></filter><linearGradient id="up-a" x1="5" y1="21" x2="57" y2="21" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#26A568"></stop><stop offset="1" stop-color="#44C2A4"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Tall.io</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/tall-io/20230313131845/tall-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Tall.io" srcSet="https://images.crazygames.com/tall-io/20230313131845/tall-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/tall-io/20230313131845/tall-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/tall-io/20230313131845/tall-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/tall-io/20230313131845/tall-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/tall-io/20230313131845/tall-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/tall-io/20230313131845/tall-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/tall-io/20230313131845/tall-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/drift-boss"><div class="gameThumbTitleContainer">Drift Boss</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/drift-boss/cover-1626884625264.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Drift Boss" srcSet="https://images.crazygames.com/games/drift-boss/cover-1626884625264.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/drift-boss/cover-1626884625264.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/drift-boss/cover-1626884625264.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/drift-boss/cover-1626884625264.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/drift-boss/cover-1626884625264.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/drift-boss/cover-1626884625264.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/drift-boss/cover-1626884625264.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/water-pool-heroes-io"><svg width="39" height="27" viewBox="0 0 39 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#new-b)"><path d="M5 0H25.5C31.299 0 36 4.70101 36 10.5C36 16.299 31.299 21 25.5 21H5V0Z" fill="url(#new-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF2264"></path><path d="m5 27h -2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A30131"></path><path d="m10.367 11.574h0.1406v-4.8633c0-0.125 0.0078-0.24219 0.0234-0.35156 0.0157-0.11329 0.0489-0.21094 0.0997-0.29297 0.0546-0.08203 0.1328-0.14649 0.2343-0.19336 0.1055-0.05078 0.2481-0.07617 0.4278-0.07617 0.1992 0 0.3554 0.02539 0.4687 0.07617 0.1172 0.04687 0.2051 0.11133 0.2637 0.19336s0.0957 0.17968 0.1113 0.29297c0.0156 0.10937 0.0235 0.22656 0.0235 0.35156v5.9414c0 0.1719-0.0059 0.3379-0.0176 0.4981-0.0078 0.1601-0.0391 0.3047-0.0938 0.4336-0.0508 0.125-0.1367 0.2265-0.2578 0.3047-0.1172 0.0742-0.2832 0.1113-0.498 0.1113h-0.7735c-0.1836 0-0.3379-0.0352-0.4629-0.1055-0.12105-0.0742-0.22262-0.1621-0.30465-0.2636-0.08203-0.1055-0.14843-0.2149-0.19922-0.3282-0.04687-0.1132-0.08398-0.2089-0.11132-0.2871l-1.7695-4.7929h-0.14063v4.8632c0 0.125-0.00781 0.2442-0.02344 0.3575-0.01562 0.1093-0.05078 0.205-0.10547 0.2871-0.05078 0.082-0.1289 0.1484-0.23437 0.1992-0.10156 0.0469-0.24219 0.0703-0.42188 0.0703-0.20312 0-0.36328-0.0234-0.48047-0.0703-0.11718-0.0508-0.20507-0.1172-0.26367-0.1992-0.05859-0.0821-0.0957-0.1778-0.11133-0.2871-0.01562-0.1133-0.02343-0.2325-0.02343-0.3575v-5.9414c0-0.16797 0.0039-0.33203 0.01172-0.49219 0.01171-0.16406 0.04492-0.30859 0.09961-0.43359 0.05468-0.12891 0.14062-0.23047 0.25781-0.30469 0.12109-0.07812 0.29101-0.11718 0.50976-0.11718h0.77344c0.19531 0 0.35352 0.03906 0.47461 0.11718 0.125 0.07422 0.22656 0.15625 0.30469 0.2461 0.08594 0.10546 0.15429 0.22656 0.20508 0.36328l1.8633 5.0508zm6.5976-5.7773c0.1563 0 0.3145 0.00585 0.4747 0.01757 0.1601 0.01172 0.3046 0.04493 0.4335 0.09961 0.129 0.05469 0.2344 0.13867 0.3165 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3165 0.24609-0.1289 0.05469-0.2734 0.08789-0.4335 0.09961-0.1602 0.01172-0.3184 0.01758-0.4747 0.01758h-1.3945v1.5938h0.7383c0.1562 0 0.3125 0.00586 0.4687 0.01758 0.1602 0.00781 0.3008 0.03906 0.4219 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4219 0.0937-0.1562 0.0078-0.3125 0.0117-0.4687 0.0117h-0.7383v1.6875h1.3945c0.1563 0 0.3145 0.0059 0.4747 0.0176 0.1601 0.0117 0.3046 0.0449 0.4335 0.0996 0.129 0.0508 0.2344 0.1328 0.3165 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.043 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996-0.3164 0.0176-0.4688 0.0176h-2.2968c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2968zm6.7149 0.03515c0.1094 0 0.2109 0.01953 0.3047 0.05859 0.0976 0.03907 0.1836 0.09376 0.2578 0.16407 0.0781 0.0664 0.1445 0.14843 0.1992 0.24609 0.0547 0.09375 0.0938 0.19531 0.1172 0.30469l1.0078 4.6757h0.1992c0.1641-0.7617 0.3321-1.539 0.5039-2.332 0.1719-0.79688 0.3438-1.5781 0.5157-2.3438 0.0351-0.14844 0.0878-0.2832 0.1582-0.4043 0.0625-0.10156 0.1484-0.19336 0.2578-0.27539 0.1133-0.08594 0.2597-0.1289 0.4394-0.1289 0.1367 0 0.2559 0.02539 0.3574 0.07617 0.1055 0.04687 0.1915 0.10937 0.2579 0.1875 0.0703 0.07422 0.1211 0.15625 0.1523 0.24609 0.0352 0.08984 0.0527 0.17774 0.0527 0.26367 0 0.04688-0.0019 0.0918-0.0058 0.13477s-0.0098 0.08008-0.0176 0.11133c-0.0078 0.03906-0.0156 0.07421-0.0234 0.10547l-1.6055 6.375c-0.0586 0.1328-0.1367 0.25-0.2344 0.3515-0.082 0.0899-0.1894 0.1719-0.3222 0.2461-0.129 0.0703-0.2911 0.1055-0.4864 0.1055h-0.1992c-0.1953 0-0.3555-0.0352-0.4805-0.1055-0.125-0.0742-0.2246-0.1562-0.2988-0.2461-0.0859-0.1015-0.1504-0.2187-0.1933-0.3515l-0.8204-3.4336h-0.1992c-0.125 0.55472-0.2597 1.1269-0.4043 1.7168-0.1406 0.5898-0.2754 1.1621-0.4043 1.7168-0.0508 0.1328-0.1191 0.25-0.2051 0.3515-0.0781 0.0899-0.1796 0.1719-0.3046 0.2461-0.1211 0.0703-0.2793 0.1055-0.4747 0.1055h-0.1992c-0.1953 0-0.3613-0.0352-0.498-0.1055-0.1328-0.0742-0.2422-0.1562-0.3281-0.2461-0.1016-0.1015-0.1817-0.2187-0.2403-0.3515l-1.582-6.375c-0.0078-0.03126-0.0156-0.06641-0.0234-0.10547-0.0079-0.03125-0.0137-0.06836-0.0176-0.11133s-0.0059-0.08789-0.0059-0.13477c0-0.08593 0.0156-0.17383 0.0469-0.26367 0.0352-0.08984 0.0859-0.17187 0.1523-0.24609 0.0703-0.07813 0.1563-0.14063 0.2579-0.1875 0.1054-0.05078 0.2265-0.07617 0.3632-0.07617 0.1797 0 0.3242 0.04296 0.4336 0.1289 0.1133 0.08203 0.2012 0.17383 0.2637 0.27539 0.0703 0.1211 0.123 0.25586 0.1582 0.4043l1.0195 4.6757h0.1992c0.0743-0.3593 0.1543-0.7363 0.2403-1.1308 0.0859-0.39845 0.1719-0.79884 0.2578-1.2012 0.0898-0.40625 0.1777-0.80664 0.2637-1.2012 0.0898-0.39844 0.1758-0.7793 0.2578-1.1426 0.0547-0.22266 0.1601-0.40625 0.3164-0.55078 0.1562-0.14844 0.3437-0.22266 0.5625-0.22266z" fill="#fff"></path><defs><filter id="new-b" x="2" y="0" width="37" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18375"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18375" result="shape"></feBlend></filter><linearGradient id="new-a" x1="36" x2="5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF6A85"></stop><stop offset="1" stop-color="#FF2264"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Water Pool Heroes.io</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Water Pool Heroes.io" srcSet="https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/water-pool-heroes-io/20230403193445/water-pool-heroes-io-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li></ul><button class="arrow css-1pzb6vf" aria-label="Right arrow"></button></div></div><div class="css-1la1o8y"><div class="titleContainer css-18689kv"><h2 class="carouselTitle">Puzzle Games</h2><a class="carouselTitleLink" href="https://www.crazygames.com/c/puzzle">View more</a></div><div class="prime-carousel css-1nehx92"><ul class="prime-carousel-container css-lpurl3"><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/cups---water-sort-puzzle"><div class="gameThumbTitleContainer">Cups - Water Sort Puzzle</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/cups---water-sort-puzzle/20221212114329/cups---water-sort-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Cups - Water Sort Puzzle" srcSet="https://images.crazygames.com/cups---water-sort-puzzle/20221212114329/cups---water-sort-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/cups---water-sort-puzzle/20221212114329/cups---water-sort-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/cups---water-sort-puzzle/20221212114329/cups---water-sort-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/cups---water-sort-puzzle/20221212114329/cups---water-sort-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/cups---water-sort-puzzle/20221212114329/cups---water-sort-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/cups---water-sort-puzzle/20221212114329/cups---water-sort-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/cups---water-sort-puzzle/20221212114329/cups---water-sort-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/drop-merge-the-numbers"><div class="gameThumbTitleContainer">Drop & Merge the Numbers</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/drop-merge-the-numbers/20220909075354/drop-merge-the-numbers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Drop & Merge the Numbers" srcSet="https://images.crazygames.com/drop-merge-the-numbers/20220909075354/drop-merge-the-numbers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/drop-merge-the-numbers/20220909075354/drop-merge-the-numbers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/drop-merge-the-numbers/20220909075354/drop-merge-the-numbers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/drop-merge-the-numbers/20220909075354/drop-merge-the-numbers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/drop-merge-the-numbers/20220909075354/drop-merge-the-numbers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/drop-merge-the-numbers/20220909075354/drop-merge-the-numbers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/drop-merge-the-numbers/20220909075354/drop-merge-the-numbers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/unfold-escape-room-puzzle"><svg width="34" height="27" viewBox="0 0 34 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#hot-b)"><path d="M5 0H20.5C26.299 0 31 4.70101 31 10.5C31 16.299 26.299 21 20.5 21H5V0Z" fill="url(#hot-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF7A00"></path><path d="m5 27h-2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#B05500"></path><path d="m5.8555 7.1445c0-0.16797 0.00781-0.33203 0.02344-0.49219 0.01562-0.16015 0.05273-0.30273 0.11132-0.42773 0.0625-0.12891 0.15235-0.23242 0.26954-0.31055 0.11718-0.07812 0.27929-0.11718 0.48632-0.11718 0.20313 0 0.36329 0.03906 0.48047 0.11718 0.1211 0.07813 0.21094 0.18164 0.26953 0.31055 0.0625 0.125 0.10157 0.26758 0.11719 0.42773 0.01563 0.16016 0.02344 0.32422 0.02344 0.49219v1.8398h1.6055v-1.8398c0-0.16797 0.00781-0.33203 0.02343-0.49219 0.01563-0.16015 0.05274-0.30273 0.11133-0.42773 0.0625-0.12891 0.15235-0.23242 0.26953-0.31055 0.11719-0.07812 0.2793-0.11718 0.48632-0.11718 0.2031 0 0.3633 0.03906 0.4805 0.11718 0.1211 0.07813 0.2109 0.18164 0.2695 0.31055 0.0625 0.125 0.1016 0.26758 0.1172 0.42773 0.0156 0.16016 0.0234 0.32422 0.0234 0.49219v5.5078c0 0.1719-0.0078 0.3379-0.0234 0.4981-0.0156 0.1601-0.0547 0.3047-0.1172 0.4336-0.0586 0.125-0.1484 0.2265-0.2695 0.3047-0.1172 0.0742-0.2774 0.1113-0.4805 0.1113-0.20702 0-0.36913-0.0371-0.48632-0.1113-0.11718-0.0782-0.20703-0.1797-0.26953-0.3047-0.05859-0.1289-0.0957-0.2735-0.11133-0.4336-0.01562-0.1602-0.02343-0.3262-0.02343-0.4981v-1.9453h-1.6055v1.9453c0 0.1719-0.00781 0.3379-0.02344 0.4981-0.01562 0.1601-0.05469 0.3047-0.11719 0.4336-0.05859 0.125-0.14843 0.2265-0.26953 0.3047-0.11718 0.0742-0.27734 0.1113-0.48047 0.1113-0.20703 0-0.36914-0.0371-0.48632-0.1113-0.11719-0.0782-0.20704-0.1797-0.26954-0.3047-0.05859-0.1289-0.0957-0.2735-0.11132-0.4336-0.01563-0.1602-0.02344-0.3262-0.02344-0.4981v-5.5078zm6.5859 0.97266c0-0.375 0.0547-0.69336 0.1641-0.95508 0.1093-0.26563 0.248-0.48633 0.416-0.66211 0.1719-0.17578 0.3594-0.3125 0.5625-0.41016 0.207-0.10156 0.4062-0.17773 0.5976-0.22851 0.1954-0.05078 0.3711-0.08203 0.5274-0.09375 0.1562-0.01172 0.2715-0.01758 0.3457-0.01758h0.1992c0.0742 0 0.1895 0.00586 0.3457 0.01758 0.1563 0.01172 0.3301 0.04297 0.5215 0.09375s0.3887 0.12695 0.5918 0.22851c0.207 0.09766 0.3926 0.23438 0.5566 0.41016 0.168 0.17578 0.3047 0.39648 0.4102 0.66211 0.1094 0.26172 0.1641 0.58008 0.1641 0.95508v3.5039c0 0.3867-0.0547 0.7148-0.1641 0.9844-0.1055 0.2695-0.2422 0.4941-0.4102 0.6738-0.164 0.1797-0.3496 0.3223-0.5566 0.4277-0.2031 0.1016-0.4004 0.1778-0.5918 0.2285-0.1914 0.0508-0.3652 0.0821-0.5215 0.0938-0.1562 0.0117-0.2715 0.0176-0.3457 0.0176h-0.1992c-0.0742 0-0.1895-0.0059-0.3457-0.0176-0.1563-0.0117-0.332-0.043-0.5274-0.0938-0.1914-0.0507-0.3906-0.1269-0.5976-0.2285-0.2031-0.1054-0.3906-0.248-0.5625-0.4277-0.168-0.1797-0.3067-0.4043-0.416-0.6738-0.1094-0.2696-0.1641-0.5977-0.1641-0.9844v-3.5039zm1.9453 3.7266c0.0078 0.1445 0.041 0.2714 0.0996 0.3808 0.0508 0.0977 0.127 0.1856 0.2285 0.2637 0.1055 0.0781 0.254 0.1172 0.4454 0.1172 0.1875 0 0.332-0.0391 0.4336-0.1172 0.1015-0.0781 0.1777-0.166 0.2285-0.2637 0.0547-0.1094 0.0879-0.2363 0.0996-0.3808v-3.8204c-0.0117-0.14063-0.0449-0.26758-0.0996-0.38086-0.0508-0.09375-0.127-0.17969-0.2285-0.25781-0.1016-0.08204-0.2461-0.12305-0.4336-0.12305-0.1914 0-0.3399 0.04101-0.4454 0.12305-0.1015 0.07812-0.1777 0.16406-0.2285 0.25781-0.0586 0.11328-0.0918 0.24023-0.0996 0.38086v3.8204zm8.4258-6.0469c0.1563 0 0.3125 0.00585 0.4687 0.01757 0.1602 0.01172 0.3047 0.04493 0.4336 0.09961 0.129 0.05469 0.2325 0.13867 0.3106 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19531-0.041 0.34961-0.123 0.46289-0.0781 0.10937-0.1816 0.1914-0.3106 0.24609-0.1289 0.05469-0.2734 0.08984-0.4336 0.10547-0.1562 0.01172-0.3124 0.01758-0.4687 0.01758h-0.5977v5.2032c0 0.1679-0.0058 0.332-0.0175 0.4921-0.0078 0.1602-0.0391 0.3028-0.0938 0.4278s-0.1426 0.2265-0.2637 0.3047c-0.121 0.0742-0.2929 0.1113-0.5156 0.1113-0.2226 0-0.3945-0.0371-0.5156-0.1113-0.1211-0.0782-0.209-0.1797-0.2637-0.3047s-0.0879-0.2676-0.0996-0.4278c-0.0078-0.1601-0.0117-0.3242-0.0117-0.4921v-5.2032h-0.5977c-0.1562 0-0.3144-0.00586-0.4746-0.01758-0.1562-0.01563-0.2988-0.05078-0.4277-0.10547s-0.2344-0.13672-0.3164-0.24609c-0.0781-0.11328-0.1172-0.26758-0.1172-0.46289 0-0.19922 0.0391-0.35352 0.1172-0.46289 0.082-0.11329 0.1875-0.19727 0.3164-0.25196 0.1289-0.05468 0.2715-0.08789 0.4277-0.09961 0.1602-0.01172 0.3184-0.01757 0.4746-0.01757h2.9766z" fill="#fff"></path><defs><filter id="hot-b" x="2" y="0" width="32" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18385"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18385" result="shape"></feBlend></filter><linearGradient id="hot-a" x1="5" x2="31" y1="21" y2="21" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF7A00"></stop><stop offset="1" stop-color="#FF3D00"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Unfold Escape Room Puzzle</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/unfold-escape-room-puzzle/20230210191153/unfold-escape-room-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Unfold Escape Room Puzzle" srcSet="https://images.crazygames.com/unfold-escape-room-puzzle/20230210191153/unfold-escape-room-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/unfold-escape-room-puzzle/20230210191153/unfold-escape-room-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/unfold-escape-room-puzzle/20230210191153/unfold-escape-room-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/unfold-escape-room-puzzle/20230210191153/unfold-escape-room-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/unfold-escape-room-puzzle/20230210191153/unfold-escape-room-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/unfold-escape-room-puzzle/20230210191153/unfold-escape-room-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/unfold-escape-room-puzzle/20230210191153/unfold-escape-room-puzzle-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/impossibe-date"><div class="gameThumbTitleContainer">Impossible Date</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/impossibe-date/20230324180658/impossibe-date-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Impossible Date" srcSet="https://images.crazygames.com/impossibe-date/20230324180658/impossibe-date-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/impossibe-date/20230324180658/impossibe-date-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/impossibe-date/20230324180658/impossibe-date-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/impossibe-date/20230324180658/impossibe-date-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/impossibe-date/20230324180658/impossibe-date-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/impossibe-date/20230324180658/impossibe-date-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/impossibe-date/20230324180658/impossibe-date-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/chessformer"><div class="gameThumbTitleContainer">Chessformer</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/chessformer/20210809112741/chessformer-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Chessformer" srcSet="https://images.crazygames.com/chessformer/20210809112741/chessformer-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/chessformer/20210809112741/chessformer-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/chessformer/20210809112741/chessformer-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/chessformer/20210809112741/chessformer-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/chessformer/20210809112741/chessformer-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/chessformer/20210809112741/chessformer-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/chessformer/20210809112741/chessformer-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/tower-swap"><div class="gameThumbTitleContainer">Tower Swap</div><img class="GameThumbImage" loading="eager" src="https://images.crazygames.com/tower-swap/20210524090135/tower-swap-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="auto" alt="Tower Swap" srcSet="https://images.crazygames.com/tower-swap/20210524090135/tower-swap-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/tower-swap/20210524090135/tower-swap-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/tower-swap/20210524090135/tower-swap-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/tower-swap/20210524090135/tower-swap-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/tower-swap/20210524090135/tower-swap-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/tower-swap/20210524090135/tower-swap-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/tower-swap/20210524090135/tower-swap-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/rope-color-sort-3d"><svg width="39" height="27" viewBox="0 0 39 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#new-b)"><path d="M5 0H25.5C31.299 0 36 4.70101 36 10.5C36 16.299 31.299 21 25.5 21H5V0Z" fill="url(#new-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF2264"></path><path d="m5 27h -2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A30131"></path><path d="m10.367 11.574h0.1406v-4.8633c0-0.125 0.0078-0.24219 0.0234-0.35156 0.0157-0.11329 0.0489-0.21094 0.0997-0.29297 0.0546-0.08203 0.1328-0.14649 0.2343-0.19336 0.1055-0.05078 0.2481-0.07617 0.4278-0.07617 0.1992 0 0.3554 0.02539 0.4687 0.07617 0.1172 0.04687 0.2051 0.11133 0.2637 0.19336s0.0957 0.17968 0.1113 0.29297c0.0156 0.10937 0.0235 0.22656 0.0235 0.35156v5.9414c0 0.1719-0.0059 0.3379-0.0176 0.4981-0.0078 0.1601-0.0391 0.3047-0.0938 0.4336-0.0508 0.125-0.1367 0.2265-0.2578 0.3047-0.1172 0.0742-0.2832 0.1113-0.498 0.1113h-0.7735c-0.1836 0-0.3379-0.0352-0.4629-0.1055-0.12105-0.0742-0.22262-0.1621-0.30465-0.2636-0.08203-0.1055-0.14843-0.2149-0.19922-0.3282-0.04687-0.1132-0.08398-0.2089-0.11132-0.2871l-1.7695-4.7929h-0.14063v4.8632c0 0.125-0.00781 0.2442-0.02344 0.3575-0.01562 0.1093-0.05078 0.205-0.10547 0.2871-0.05078 0.082-0.1289 0.1484-0.23437 0.1992-0.10156 0.0469-0.24219 0.0703-0.42188 0.0703-0.20312 0-0.36328-0.0234-0.48047-0.0703-0.11718-0.0508-0.20507-0.1172-0.26367-0.1992-0.05859-0.0821-0.0957-0.1778-0.11133-0.2871-0.01562-0.1133-0.02343-0.2325-0.02343-0.3575v-5.9414c0-0.16797 0.0039-0.33203 0.01172-0.49219 0.01171-0.16406 0.04492-0.30859 0.09961-0.43359 0.05468-0.12891 0.14062-0.23047 0.25781-0.30469 0.12109-0.07812 0.29101-0.11718 0.50976-0.11718h0.77344c0.19531 0 0.35352 0.03906 0.47461 0.11718 0.125 0.07422 0.22656 0.15625 0.30469 0.2461 0.08594 0.10546 0.15429 0.22656 0.20508 0.36328l1.8633 5.0508zm6.5976-5.7773c0.1563 0 0.3145 0.00585 0.4747 0.01757 0.1601 0.01172 0.3046 0.04493 0.4335 0.09961 0.129 0.05469 0.2344 0.13867 0.3165 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3165 0.24609-0.1289 0.05469-0.2734 0.08789-0.4335 0.09961-0.1602 0.01172-0.3184 0.01758-0.4747 0.01758h-1.3945v1.5938h0.7383c0.1562 0 0.3125 0.00586 0.4687 0.01758 0.1602 0.00781 0.3008 0.03906 0.4219 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4219 0.0937-0.1562 0.0078-0.3125 0.0117-0.4687 0.0117h-0.7383v1.6875h1.3945c0.1563 0 0.3145 0.0059 0.4747 0.0176 0.1601 0.0117 0.3046 0.0449 0.4335 0.0996 0.129 0.0508 0.2344 0.1328 0.3165 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.043 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996-0.3164 0.0176-0.4688 0.0176h-2.2968c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2968zm6.7149 0.03515c0.1094 0 0.2109 0.01953 0.3047 0.05859 0.0976 0.03907 0.1836 0.09376 0.2578 0.16407 0.0781 0.0664 0.1445 0.14843 0.1992 0.24609 0.0547 0.09375 0.0938 0.19531 0.1172 0.30469l1.0078 4.6757h0.1992c0.1641-0.7617 0.3321-1.539 0.5039-2.332 0.1719-0.79688 0.3438-1.5781 0.5157-2.3438 0.0351-0.14844 0.0878-0.2832 0.1582-0.4043 0.0625-0.10156 0.1484-0.19336 0.2578-0.27539 0.1133-0.08594 0.2597-0.1289 0.4394-0.1289 0.1367 0 0.2559 0.02539 0.3574 0.07617 0.1055 0.04687 0.1915 0.10937 0.2579 0.1875 0.0703 0.07422 0.1211 0.15625 0.1523 0.24609 0.0352 0.08984 0.0527 0.17774 0.0527 0.26367 0 0.04688-0.0019 0.0918-0.0058 0.13477s-0.0098 0.08008-0.0176 0.11133c-0.0078 0.03906-0.0156 0.07421-0.0234 0.10547l-1.6055 6.375c-0.0586 0.1328-0.1367 0.25-0.2344 0.3515-0.082 0.0899-0.1894 0.1719-0.3222 0.2461-0.129 0.0703-0.2911 0.1055-0.4864 0.1055h-0.1992c-0.1953 0-0.3555-0.0352-0.4805-0.1055-0.125-0.0742-0.2246-0.1562-0.2988-0.2461-0.0859-0.1015-0.1504-0.2187-0.1933-0.3515l-0.8204-3.4336h-0.1992c-0.125 0.55472-0.2597 1.1269-0.4043 1.7168-0.1406 0.5898-0.2754 1.1621-0.4043 1.7168-0.0508 0.1328-0.1191 0.25-0.2051 0.3515-0.0781 0.0899-0.1796 0.1719-0.3046 0.2461-0.1211 0.0703-0.2793 0.1055-0.4747 0.1055h-0.1992c-0.1953 0-0.3613-0.0352-0.498-0.1055-0.1328-0.0742-0.2422-0.1562-0.3281-0.2461-0.1016-0.1015-0.1817-0.2187-0.2403-0.3515l-1.582-6.375c-0.0078-0.03126-0.0156-0.06641-0.0234-0.10547-0.0079-0.03125-0.0137-0.06836-0.0176-0.11133s-0.0059-0.08789-0.0059-0.13477c0-0.08593 0.0156-0.17383 0.0469-0.26367 0.0352-0.08984 0.0859-0.17187 0.1523-0.24609 0.0703-0.07813 0.1563-0.14063 0.2579-0.1875 0.1054-0.05078 0.2265-0.07617 0.3632-0.07617 0.1797 0 0.3242 0.04296 0.4336 0.1289 0.1133 0.08203 0.2012 0.17383 0.2637 0.27539 0.0703 0.1211 0.123 0.25586 0.1582 0.4043l1.0195 4.6757h0.1992c0.0743-0.3593 0.1543-0.7363 0.2403-1.1308 0.0859-0.39845 0.1719-0.79884 0.2578-1.2012 0.0898-0.40625 0.1777-0.80664 0.2637-1.2012 0.0898-0.39844 0.1758-0.7793 0.2578-1.1426 0.0547-0.22266 0.1601-0.40625 0.3164-0.55078 0.1562-0.14844 0.3437-0.22266 0.5625-0.22266z" fill="#fff"></path><defs><filter id="new-b" x="2" y="0" width="37" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18375"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18375" result="shape"></feBlend></filter><linearGradient id="new-a" x1="36" x2="5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF6A85"></stop><stop offset="1" stop-color="#FF2264"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Rope Color Sort 3D</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Rope Color Sort 3D" srcSet="https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/rope-color-sort-3d/20230405164311/rope-color-sort-3d-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/inca-cubes-2048"><div class="gameThumbTitleContainer">Inca Cubes 2048</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Inca Cubes 2048" srcSet="https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/inca-cubes-2048/cover-1680024941220.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/trivia-crack"><div class="gameThumbTitleContainer">Trivia Crack</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/trivia-crack/20230313103519/trivia-crack-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Trivia Crack" srcSet="https://images.crazygames.com/trivia-crack/20230313103519/trivia-crack-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/trivia-crack/20230313103519/trivia-crack-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/trivia-crack/20230313103519/trivia-crack-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/trivia-crack/20230313103519/trivia-crack-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/trivia-crack/20230313103519/trivia-crack-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/trivia-crack/20230313103519/trivia-crack-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/trivia-crack/20230313103519/trivia-crack-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/tentrix"><div class="gameThumbTitleContainer">TenTrix</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/tentrix.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="TenTrix" srcSet="https://images.crazygames.com/tentrix.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/tentrix.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/tentrix.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/tentrix.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/tentrix.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/tentrix.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/tentrix.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li></ul><button class="arrow css-1pzb6vf" aria-label="Right arrow"></button></div></div><div class="css-1la1o8y"><div class="titleContainer css-18689kv"><h2 class="carouselTitle">Action Games</h2><a class="carouselTitleLink" href="https://www.crazygames.com/c/action">View more</a></div><div class="prime-carousel css-1nehx92"><ul class="prime-carousel-container css-lpurl3"><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/sandbox-city---cars-zombies-ragdolls"><svg width="60" height="27" viewBox="0 0 60 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#up-b)"><path d="M5 0H46.5C52.299 0 57 4.70101 57 10.5C57 16.299 52.299 21 46.5 21H5V0Z" fill="url(#up-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#27A569"></path><path d="M5 27L3 27C1.34315 27 -3.59416e-07 25.6569 -2.14569e-07 24C-6.97221e-08 22.3431 1.34315 21 3 21L5 21L5 27Z" fill="#006D39"></path><path d="M5.83203 7.13281C5.83203 6.96484 5.83984 6.80078 5.85547 6.64062C5.875 6.48047 5.91602 6.33789 5.97852 6.21289C6.04492 6.08789 6.14258 5.98828 6.27148 5.91406C6.40039 5.83594 6.57812 5.79688 6.80469 5.79688C7.03125 5.79688 7.20898 5.83594 7.33789 5.91406C7.4707 5.98828 7.56836 6.08789 7.63086 6.21289C7.69727 6.33789 7.73828 6.48047 7.75391 6.64062C7.76953 6.80078 7.77734 6.96484 7.77734 7.13281V11.75C7.78906 11.9219 7.82422 12.0742 7.88281 12.207C7.90625 12.2656 7.9375 12.3223 7.97656 12.377C8.01562 12.4316 8.06055 12.4805 8.11133 12.5234C8.16602 12.5664 8.22852 12.6016 8.29883 12.6289C8.37305 12.6523 8.45703 12.6641 8.55078 12.6641C8.64453 12.6641 8.72852 12.6523 8.80273 12.6289C8.87695 12.6016 8.93945 12.5664 8.99023 12.5234C9.04492 12.4805 9.0918 12.4316 9.13086 12.377C9.16992 12.3223 9.20117 12.2656 9.22461 12.207C9.2832 12.0742 9.31641 11.9219 9.32422 11.75V7.13281C9.32422 6.96484 9.33203 6.80078 9.34766 6.64062C9.36328 6.48047 9.40234 6.33789 9.46484 6.21289C9.53125 6.08789 9.62891 5.98828 9.75781 5.91406C9.88672 5.83594 10.0664 5.79688 10.2969 5.79688C10.5234 5.79688 10.7012 5.83594 10.8301 5.91406C10.959 5.98828 11.0547 6.08789 11.1172 6.21289C11.1836 6.33789 11.2246 6.48047 11.2402 6.64062C11.2598 6.80078 11.2695 6.96484 11.2695 7.13281V11.5977C11.2695 12.0039 11.2031 12.3594 11.0703 12.6641C10.9414 12.9688 10.7559 13.2246 10.5137 13.4316C10.2754 13.6348 9.98828 13.7891 9.65234 13.8945C9.32031 13.9961 8.95312 14.0469 8.55078 14.0469C8.14453 14.0469 7.77539 13.9941 7.44336 13.8887C7.11133 13.7793 6.82422 13.6211 6.58203 13.4141C6.34375 13.207 6.1582 12.9512 6.02539 12.6465C5.89648 12.3418 5.83203 11.9922 5.83203 11.5977V7.13281ZM14.6914 10.7656V12.6641C14.6914 12.832 14.6855 12.9961 14.6738 13.1562C14.666 13.3164 14.6328 13.459 14.5742 13.584C14.5195 13.709 14.4316 13.8105 14.3105 13.8887C14.1895 13.9629 14.0156 14 13.7891 14C13.5703 14 13.4004 13.9629 13.2793 13.8887C13.1621 13.8105 13.0762 13.709 13.0215 13.584C12.9668 13.459 12.9336 13.3164 12.9219 13.1562C12.9141 12.9961 12.9102 12.832 12.9102 12.6641V7.13281C12.9102 6.96484 12.9141 6.80078 12.9219 6.64062C12.9336 6.48047 12.9668 6.33789 13.0215 6.21289C13.0762 6.08789 13.1621 5.98828 13.2793 5.91406C13.4004 5.83594 13.5703 5.79688 13.7891 5.79688H15.7227C16.207 5.82031 16.6406 5.92188 17.0234 6.10156C17.1875 6.17969 17.3457 6.27734 17.498 6.39453C17.6543 6.51172 17.793 6.65625 17.9141 6.82812C18.0391 6.99609 18.1387 7.19727 18.2129 7.43164C18.2871 7.66211 18.3242 7.92969 18.3242 8.23438C18.3242 8.65234 18.2578 9.01953 18.125 9.33594C17.9961 9.64844 17.8066 9.91211 17.5566 10.127C17.3105 10.3379 17.0078 10.498 16.6484 10.6074C16.293 10.7129 15.8906 10.7656 15.4414 10.7656H14.6914ZM15.4883 9.37109C15.6836 9.35938 15.8594 9.3125 16.0156 9.23047C16.082 9.19531 16.1465 9.15039 16.209 9.0957C16.2715 9.04102 16.3281 8.97461 16.3789 8.89648C16.4297 8.81445 16.4688 8.71875 16.4961 8.60938C16.5273 8.5 16.543 8.375 16.543 8.23438C16.543 8.10156 16.5273 7.98633 16.4961 7.88867C16.4688 7.78711 16.4316 7.70117 16.3848 7.63086C16.3379 7.55664 16.2852 7.49414 16.2266 7.44336C16.168 7.39258 16.1074 7.34961 16.0449 7.31445C15.8965 7.24023 15.7305 7.19531 15.5469 7.17969H14.6914V9.37109H15.4883ZM21.793 5.79688C22.1484 5.79688 22.4785 5.8418 22.7832 5.93164C23.0918 6.02148 23.3594 6.15625 23.5859 6.33594C23.8164 6.51172 23.9961 6.73242 24.125 6.99805C24.2578 7.26367 24.3242 7.57422 24.3242 7.92969V11.5625C24.3242 11.8672 24.291 12.1367 24.2246 12.3711C24.1582 12.6016 24.0703 12.8027 23.9609 12.9746C23.8555 13.1426 23.7344 13.2871 23.5977 13.4082C23.4609 13.5254 23.3223 13.6211 23.1816 13.6953C22.8457 13.875 22.4648 13.9766 22.0391 14H20.0938C19.8711 14 19.6992 13.9629 19.5781 13.8887C19.457 13.8105 19.3691 13.709 19.3145 13.584C19.2598 13.4551 19.2266 13.3105 19.2148 13.1504C19.207 12.9902 19.2031 12.8242 19.2031 12.6523V7.13281C19.2031 6.96484 19.207 6.80078 19.2148 6.64062C19.2266 6.48047 19.2598 6.33789 19.3145 6.21289C19.3691 6.08789 19.457 5.98828 19.5781 5.91406C19.6992 5.83594 19.8711 5.79688 20.0938 5.79688H21.793ZM20.9844 7.16797V12.6055H21.7461C21.9141 12.5977 22.0645 12.5586 22.1973 12.4883C22.252 12.4609 22.3066 12.4238 22.3613 12.377C22.416 12.3301 22.4648 12.2754 22.5078 12.2129C22.5508 12.1465 22.584 12.0684 22.6074 11.9785C22.6348 11.8887 22.6484 11.7852 22.6484 11.668V8.21094C22.6484 8.08203 22.6348 7.96875 22.6074 7.87109C22.584 7.76953 22.5508 7.68164 22.5078 7.60742C22.4648 7.5332 22.416 7.4707 22.3613 7.41992C22.3066 7.36914 22.252 7.32812 22.1973 7.29688C22.0645 7.22266 21.9141 7.17969 21.7461 7.16797H20.9844ZM27.1367 10.4609H29L28.1328 7.32031H28.0039L27.1367 10.4609ZM30.8164 11.0352C30.8242 11.3008 30.834 11.5723 30.8457 11.8496C30.8574 12.127 30.8633 12.3945 30.8633 12.6523V12.8281C30.8633 12.9766 30.8574 13.1211 30.8457 13.2617C30.8379 13.3984 30.8086 13.5234 30.7578 13.6367C30.707 13.7461 30.627 13.834 30.5176 13.9004C30.4082 13.9668 30.2539 14 30.0547 14C29.8516 14 29.6953 13.9668 29.5859 13.9004C29.4766 13.834 29.3945 13.7461 29.3398 13.6367C29.2891 13.5273 29.2578 13.4023 29.2461 13.2617C29.2383 13.1211 29.2344 12.9766 29.2344 12.8281V12.0078H26.8906V12.8281C26.8906 12.9766 26.8848 13.1211 26.873 13.2617C26.8652 13.4023 26.834 13.5273 26.7793 13.6367C26.7285 13.7461 26.6484 13.834 26.5391 13.9004C26.4297 13.9668 26.2734 14 26.0703 14C25.8672 14 25.7109 13.9668 25.6016 13.9004C25.4922 13.834 25.4121 13.7461 25.3613 13.6367C25.3105 13.5234 25.2812 13.3984 25.2734 13.2617C25.2656 13.1211 25.2617 12.9766 25.2617 12.8281V12.6523C25.2617 12.5312 25.2617 12.4023 25.2617 12.2656C25.2656 12.1289 25.2695 11.9902 25.2734 11.8496C25.2773 11.709 25.2812 11.5703 25.2852 11.4336C25.2891 11.293 25.293 11.1602 25.2969 11.0352C25.4922 10.3555 25.6973 9.66797 25.9121 8.97266C26.127 8.27344 26.332 7.58203 26.5273 6.89844C26.5664 6.75391 26.6133 6.61523 26.668 6.48242C26.7227 6.3457 26.7949 6.22852 26.8848 6.13086C26.9746 6.0293 27.0898 5.94922 27.2305 5.89062C27.3711 5.82812 27.5508 5.79688 27.7695 5.79688H28.3555C28.5703 5.79688 28.748 5.82812 28.8887 5.89062C29.0332 5.94922 29.1504 6.0293 29.2402 6.13086C29.3301 6.22852 29.4004 6.3457 29.4512 6.48242C29.5059 6.61523 29.5547 6.75391 29.5977 6.89844L30.8164 11.0352ZM35.668 5.79688C35.8242 5.79688 35.9805 5.80273 36.1367 5.81445C36.2969 5.82617 36.4414 5.85938 36.5703 5.91406C36.6992 5.96875 36.8027 6.05273 36.8809 6.16602C36.9629 6.27539 37.0039 6.42969 37.0039 6.62891C37.0039 6.82422 36.9629 6.97852 36.8809 7.0918C36.8027 7.20117 36.6992 7.2832 36.5703 7.33789C36.4414 7.39258 36.2969 7.42773 36.1367 7.44336C35.9805 7.45508 35.8242 7.46094 35.668 7.46094H35.0703V12.6641C35.0703 12.832 35.0645 12.9961 35.0527 13.1562C35.0449 13.3164 35.0137 13.459 34.959 13.584C34.9043 13.709 34.8164 13.8105 34.6953 13.8887C34.5742 13.9629 34.4023 14 34.1797 14C33.957 14 33.7852 13.9629 33.6641 13.8887C33.543 13.8105 33.4551 13.709 33.4004 13.584C33.3457 13.459 33.3125 13.3164 33.3008 13.1562C33.293 12.9961 33.2891 12.832 33.2891 12.6641V7.46094H32.6914C32.5352 7.46094 32.377 7.45508 32.2168 7.44336C32.0605 7.42773 31.918 7.39258 31.7891 7.33789C31.6602 7.2832 31.5547 7.20117 31.4727 7.0918C31.3945 6.97852 31.3555 6.82422 31.3555 6.62891C31.3555 6.42969 31.3945 6.27539 31.4727 6.16602C31.5547 6.05273 31.6602 5.96875 31.7891 5.91406C31.918 5.85938 32.0605 5.82617 32.2168 5.81445C32.377 5.80273 32.5352 5.79688 32.6914 5.79688H35.668ZM41.0469 5.79688C41.2031 5.79688 41.3613 5.80273 41.5215 5.81445C41.6816 5.82617 41.8262 5.85938 41.9551 5.91406C42.084 5.96875 42.1895 6.05273 42.2715 6.16602C42.3535 6.27539 42.3945 6.42969 42.3945 6.62891C42.3945 6.82812 42.3535 6.98438 42.2715 7.09766C42.1895 7.20703 42.084 7.28906 41.9551 7.34375C41.8262 7.39844 41.6816 7.43164 41.5215 7.44336C41.3613 7.45508 41.2031 7.46094 41.0469 7.46094H39.6523V9.05469H40.3906C40.5469 9.05469 40.7031 9.06055 40.8594 9.07227C41.0195 9.08008 41.1602 9.11133 41.2812 9.16602C41.4062 9.2168 41.5078 9.29688 41.5859 9.40625C41.6641 9.51172 41.7031 9.66016 41.7031 9.85156C41.7031 10.0469 41.6641 10.1973 41.5859 10.3027C41.5078 10.4082 41.4062 10.4883 41.2812 10.543C41.1602 10.5938 41.0195 10.625 40.8594 10.6367C40.7031 10.6445 40.5469 10.6484 40.3906 10.6484H39.6523V12.3359H41.0469C41.2031 12.3359 41.3613 12.3418 41.5215 12.3535C41.6816 12.3652 41.8262 12.3984 41.9551 12.4531C42.084 12.5039 42.1895 12.5859 42.2715 12.6992C42.3535 12.8086 42.3945 12.9609 42.3945 13.1562C42.3945 13.3594 42.3516 13.5176 42.2656 13.6309C42.1836 13.7441 42.0781 13.8281 41.9492 13.8828C41.8203 13.9375 41.6758 13.9707 41.5156 13.9824C41.3555 13.9941 41.1992 14 41.0469 14H38.75C38.5312 14 38.3613 13.9609 38.2402 13.8828C38.123 13.8047 38.0371 13.7031 37.9824 13.5781C37.9277 13.4492 37.8945 13.3047 37.8828 13.1445C37.875 12.9844 37.8711 12.8203 37.8711 12.6523V7.14453C37.8711 6.97656 37.875 6.8125 37.8828 6.65234C37.8945 6.49219 37.9277 6.34961 37.9824 6.22461C38.0371 6.0957 38.123 5.99219 38.2402 5.91406C38.3613 5.83594 38.5312 5.79688 38.75 5.79688H41.0469ZM46.2031 5.79688C46.5586 5.79688 46.8887 5.8418 47.1934 5.93164C47.502 6.02148 47.7695 6.15625 47.9961 6.33594C48.2266 6.51172 48.4062 6.73242 48.5352 6.99805C48.668 7.26367 48.7344 7.57422 48.7344 7.92969V11.5625C48.7344 11.8672 48.7012 12.1367 48.6348 12.3711C48.5684 12.6016 48.4805 12.8027 48.3711 12.9746C48.2656 13.1426 48.1445 13.2871 48.0078 13.4082C47.8711 13.5254 47.7324 13.6211 47.5918 13.6953C47.2559 13.875 46.875 13.9766 46.4492 14H44.5039C44.2812 14 44.1094 13.9629 43.9883 13.8887C43.8672 13.8105 43.7793 13.709 43.7246 13.584C43.6699 13.4551 43.6367 13.3105 43.625 13.1504C43.6172 12.9902 43.6133 12.8242 43.6133 12.6523V7.13281C43.6133 6.96484 43.6172 6.80078 43.625 6.64062C43.6367 6.48047 43.6699 6.33789 43.7246 6.21289C43.7793 6.08789 43.8672 5.98828 43.9883 5.91406C44.1094 5.83594 44.2812 5.79688 44.5039 5.79688H46.2031ZM45.3945 7.16797V12.6055H46.1562C46.3242 12.5977 46.4746 12.5586 46.6074 12.4883C46.6621 12.4609 46.7168 12.4238 46.7715 12.377C46.8262 12.3301 46.875 12.2754 46.918 12.2129C46.9609 12.1465 46.9941 12.0684 47.0176 11.9785C47.0449 11.8887 47.0586 11.7852 47.0586 11.668V8.21094C47.0586 8.08203 47.0449 7.96875 47.0176 7.87109C46.9941 7.76953 46.9609 7.68164 46.918 7.60742C46.875 7.5332 46.8262 7.4707 46.7715 7.41992C46.7168 7.36914 46.6621 7.32812 46.6074 7.29688C46.4746 7.22266 46.3242 7.17969 46.1562 7.16797H45.3945Z" fill="white"></path><defs><filter id="up-b" x="2" y="0" width="58" height="27" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_347_18380"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_347_18380" result="shape"></feBlend></filter><linearGradient id="up-a" x1="5" y1="21" x2="57" y2="21" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#26A568"></stop><stop offset="1" stop-color="#44C2A4"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Sandbox City - Cars, Zombies, Ragdolls!</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/sandbox-city---cars-zombies-ragdolls/20220406181144/sandbox-city---cars-zombies-ragdolls-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Sandbox City - Cars, Zombies, Ragdolls!" srcSet="https://images.crazygames.com/sandbox-city---cars-zombies-ragdolls/20220406181144/sandbox-city---cars-zombies-ragdolls-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/sandbox-city---cars-zombies-ragdolls/20220406181144/sandbox-city---cars-zombies-ragdolls-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/sandbox-city---cars-zombies-ragdolls/20220406181144/sandbox-city---cars-zombies-ragdolls-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/sandbox-city---cars-zombies-ragdolls/20220406181144/sandbox-city---cars-zombies-ragdolls-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/sandbox-city---cars-zombies-ragdolls/20220406181144/sandbox-city---cars-zombies-ragdolls-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/sandbox-city---cars-zombies-ragdolls/20220406181144/sandbox-city---cars-zombies-ragdolls-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/sandbox-city---cars-zombies-ragdolls/20220406181144/sandbox-city---cars-zombies-ragdolls-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/stickman-supreme-duelist-2"><div class="gameThumbTitleContainer">Stickman Battle Fight Warriors</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/stickman-supreme-duelist-2/20230314082715/stickman-supreme-duelist-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Stickman Battle Fight Warriors" srcSet="https://images.crazygames.com/stickman-supreme-duelist-2/20230314082715/stickman-supreme-duelist-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/stickman-supreme-duelist-2/20230314082715/stickman-supreme-duelist-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/stickman-supreme-duelist-2/20230314082715/stickman-supreme-duelist-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/stickman-supreme-duelist-2/20230314082715/stickman-supreme-duelist-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/stickman-supreme-duelist-2/20230314082715/stickman-supreme-duelist-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/stickman-supreme-duelist-2/20230314082715/stickman-supreme-duelist-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/stickman-supreme-duelist-2/20230314082715/stickman-supreme-duelist-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/house-of-hazards"><div class="gameThumbTitleContainer">House of Hazards</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/house-of-hazards/20200910082214/house-of-hazards-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="House of Hazards" srcSet="https://images.crazygames.com/house-of-hazards/20200910082214/house-of-hazards-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/house-of-hazards/20200910082214/house-of-hazards-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/house-of-hazards/20200910082214/house-of-hazards-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/house-of-hazards/20200910082214/house-of-hazards-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/house-of-hazards/20200910082214/house-of-hazards-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/house-of-hazards/20200910082214/house-of-hazards-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/house-of-hazards/20200910082214/house-of-hazards-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/puppet-fighter-2-player"><div class="gameThumbTitleContainer">Puppet Fighter 2 Player</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/puppet-fighter-2-player/20221123094627/puppet-fighter-2-player-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Puppet Fighter 2 Player" srcSet="https://images.crazygames.com/puppet-fighter-2-player/20221123094627/puppet-fighter-2-player-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/puppet-fighter-2-player/20221123094627/puppet-fighter-2-player-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/puppet-fighter-2-player/20221123094627/puppet-fighter-2-player-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/puppet-fighter-2-player/20221123094627/puppet-fighter-2-player-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/puppet-fighter-2-player/20221123094627/puppet-fighter-2-player-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/puppet-fighter-2-player/20221123094627/puppet-fighter-2-player-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/puppet-fighter-2-player/20221123094627/puppet-fighter-2-player-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/slasher"><div class="gameThumbTitleContainer">Slasher</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/slasher/20230227082242/slasher-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Slasher" srcSet="https://images.crazygames.com/slasher/20230227082242/slasher-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/slasher/20230227082242/slasher-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/slasher/20230227082242/slasher-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/slasher/20230227082242/slasher-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/slasher/20230227082242/slasher-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/slasher/20230227082242/slasher-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/slasher/20230227082242/slasher-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/spiderdoll"><div class="gameThumbTitleContainer">SpiderDoll</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/spiderdoll/20210203164846/spiderdoll-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="SpiderDoll" srcSet="https://images.crazygames.com/spiderdoll/20210203164846/spiderdoll-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/spiderdoll/20210203164846/spiderdoll-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/spiderdoll/20210203164846/spiderdoll-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/spiderdoll/20210203164846/spiderdoll-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/spiderdoll/20210203164846/spiderdoll-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/spiderdoll/20210203164846/spiderdoll-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/spiderdoll/20210203164846/spiderdoll-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/getaway-shootout"><div class="gameThumbTitleContainer">Getaway Shootout</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/getaway-shootout/cover-1585549923267.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Getaway Shootout" srcSet="https://images.crazygames.com/games/getaway-shootout/cover-1585549923267.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/getaway-shootout/cover-1585549923267.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/getaway-shootout/cover-1585549923267.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/getaway-shootout/cover-1585549923267.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/getaway-shootout/cover-1585549923267.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/getaway-shootout/cover-1585549923267.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/getaway-shootout/cover-1585549923267.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/stickman-parkour-2---lucky-block"><div class="gameThumbTitleContainer">Stickman Parkour 2: Lucky Block</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/stickman-parkour-2---lucky-block/20230113075844/stickman-parkour-2---lucky-block-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Stickman Parkour 2: Lucky Block" srcSet="https://images.crazygames.com/stickman-parkour-2---lucky-block/20230113075844/stickman-parkour-2---lucky-block-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/stickman-parkour-2---lucky-block/20230113075844/stickman-parkour-2---lucky-block-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/stickman-parkour-2---lucky-block/20230113075844/stickman-parkour-2---lucky-block-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/stickman-parkour-2---lucky-block/20230113075844/stickman-parkour-2---lucky-block-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/stickman-parkour-2---lucky-block/20230113075844/stickman-parkour-2---lucky-block-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/stickman-parkour-2---lucky-block/20230113075844/stickman-parkour-2---lucky-block-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/stickman-parkour-2---lucky-block/20230113075844/stickman-parkour-2---lucky-block-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/slash-royal"><div class="gameThumbTitleContainer">Slash Royal</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/slash-royal/cover-1655221266157.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Slash Royal" srcSet="https://images.crazygames.com/games/slash-royal/cover-1655221266157.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/slash-royal/cover-1655221266157.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/slash-royal/cover-1655221266157.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/slash-royal/cover-1655221266157.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/slash-royal/cover-1655221266157.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/slash-royal/cover-1655221266157.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/slash-royal/cover-1655221266157.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/ninja-hands"><div class="gameThumbTitleContainer">Ninja Hands</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/ninja-hands/20220609113103/ninja-hands-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Ninja Hands" srcSet="https://images.crazygames.com/ninja-hands/20220609113103/ninja-hands-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/ninja-hands/20220609113103/ninja-hands-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/ninja-hands/20220609113103/ninja-hands-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/ninja-hands/20220609113103/ninja-hands-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/ninja-hands/20220609113103/ninja-hands-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/ninja-hands/20220609113103/ninja-hands-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/ninja-hands/20220609113103/ninja-hands-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li></ul><button class="arrow css-1pzb6vf" aria-label="Right arrow"></button></div></div><div class="css-1la1o8y"><div class="titleContainer css-18689kv"><h2 class="carouselTitle">Driving Games</h2><a class="carouselTitleLink" href="https://www.crazygames.com/c/driving">View more</a></div><div class="prime-carousel css-1nehx92"><ul class="prime-carousel-container css-lpurl3"><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/highway-racer-2"><svg width="67" height="27" viewBox="0 0 67 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#t-b)"><path d="M5 0H53.5C59.299 0 64 4.70101 64 10.5C64 16.299 59.299 21 53.5 21H5V0Z" fill="url(#t-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FFD702"></path><path d="m5 27h-2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A28700"></path><path d="m9.3711 5.7969c0.15625 0 0.3125 0.00585 0.46875 0.01757 0.16016 0.01172 0.30466 0.04493 0.43356 0.09961 0.1289 0.05469 0.2325 0.13867 0.3106 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19531-0.041 0.34961-0.123 0.46289-0.0781 0.10937-0.1817 0.1914-0.3106 0.24609s-0.2734 0.08984-0.43356 0.10547c-0.15625 0.01172-0.3125 0.01758-0.46875 0.01758h-0.59765v5.2032c0 0.1679-0.00586 0.332-0.01758 0.4921-0.00781 0.1602-0.03906 0.3028-0.09375 0.4278s-0.14258 0.2265-0.26367 0.3047c-0.1211 0.0742-0.29297 0.1113-0.51563 0.1113-0.22265 0-0.39453-0.0371-0.51562-0.1113-0.1211-0.0782-0.20899-0.1797-0.26367-0.3047-0.05469-0.125-0.0879-0.2676-0.09961-0.4278-0.00782-0.1601-0.01172-0.3242-0.01172-0.4921v-5.2032h-0.59766c-0.15625 0-0.31445-0.00586-0.47461-0.01758-0.15625-0.01563-0.29883-0.05078-0.42773-0.10547-0.12891-0.05469-0.23438-0.13672-0.31641-0.24609-0.07812-0.11328-0.11719-0.26758-0.11719-0.46289 0-0.19922 0.03907-0.35352 0.11719-0.46289 0.08203-0.11329 0.1875-0.19727 0.31641-0.25196 0.1289-0.05468 0.27148-0.08789 0.42773-0.09961 0.16016-0.01172 0.31836-0.01757 0.47461-0.01757h2.9766zm1.9922 2.3203c0-0.375 0.0547-0.69336 0.164-0.95508 0.1094-0.26563 0.2481-0.48633 0.4161-0.66211 0.1718-0.17578 0.3593-0.3125 0.5625-0.41016 0.207-0.10156 0.4062-0.17773 0.5976-0.22851 0.1953-0.05078 0.3711-0.08203 0.5274-0.09375 0.1562-0.01172 0.2714-0.01758 0.3457-0.01758h0.1992c0.0742 0 0.1894 0.00586 0.3457 0.01758 0.1562 0.01172 0.3301 0.04297 0.5215 0.09375s0.3886 0.12695 0.5918 0.22851c0.207 0.09766 0.3925 0.23438 0.5566 0.41016 0.168 0.17578 0.3047 0.39648 0.4102 0.66211 0.1093 0.26172 0.164 0.58008 0.164 0.95508v3.5039c0 0.3867-0.0547 0.7148-0.164 0.9844-0.1055 0.2695-0.2422 0.4941-0.4102 0.6738-0.1641 0.1797-0.3496 0.3223-0.5566 0.4277-0.2032 0.1016-0.4004 0.1778-0.5918 0.2285-0.1914 0.0508-0.3653 0.0821-0.5215 0.0938-0.1563 0.0117-0.2715 0.0176-0.3457 0.0176h-0.1992c-0.0743 0-0.1895-0.0059-0.3457-0.0176-0.1563-0.0117-0.3321-0.043-0.5274-0.0938-0.1914-0.0507-0.3906-0.1269-0.5976-0.2285-0.2032-0.1054-0.3907-0.248-0.5625-0.4277-0.168-0.1797-0.3067-0.4043-0.4161-0.6738-0.1093-0.2696-0.164-0.5977-0.164-0.9844v-3.5039zm1.9453 3.7266c0.0078 0.1445 0.041 0.2714 0.0996 0.3808 0.0508 0.0977 0.127 0.1856 0.2285 0.2637 0.1055 0.0781 0.2539 0.1172 0.4453 0.1172 0.1875 0 0.3321-0.0391 0.4336-0.1172 0.1016-0.0781 0.1778-0.166 0.2285-0.2637 0.0547-0.1094 0.0879-0.2363 0.0997-0.3808v-3.8204c-0.0118-0.14063-0.045-0.26758-0.0997-0.38086-0.0507-0.09375-0.1269-0.17969-0.2285-0.25781-0.1015-0.08204-0.2461-0.12305-0.4336-0.12305-0.1914 0-0.3398 0.04101-0.4453 0.12305-0.1015 0.07812-0.1777 0.16406-0.2285 0.25781-0.0586 0.11328-0.0918 0.24023-0.0996 0.38086v3.8204zm6.668-1.0782v1.8985c0 0.1679-0.0059 0.332-0.0176 0.4921-0.0078 0.1602-0.041 0.3028-0.0996 0.4278-0.0547 0.125-0.1426 0.2265-0.2637 0.3047-0.1211 0.0742-0.2949 0.1113-0.5215 0.1113-0.2187 0-0.3887-0.0371-0.5097-0.1113-0.1172-0.0782-0.2032-0.1797-0.2579-0.3047-0.0546-0.125-0.0878-0.2676-0.0996-0.4278-0.0078-0.1601-0.0117-0.3242-0.0117-0.4921v-5.5313c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0118-0.16015 0.045-0.30273 0.0996-0.42773 0.0547-0.125 0.1407-0.22461 0.2579-0.29883 0.121-0.07812 0.291-0.11718 0.5097-0.11718h1.9336c0.4844 0.02343 0.918 0.125 1.3008 0.30468 0.1641 0.07813 0.3223 0.17578 0.4746 0.29297 0.1563 0.11719 0.2949 0.26172 0.416 0.43359 0.125 0.16797 0.2246 0.36915 0.2988 0.60352 0.0743 0.23047 0.1114 0.49805 0.1114 0.80274 0 0.41796-0.0664 0.78515-0.1992 1.1016-0.129 0.3125-0.3184 0.57617-0.5684 0.79106-0.2461 0.2109-0.5488 0.371-0.9082 0.4804-0.3555 0.1055-0.7578 0.1582-1.207 0.1582h-0.75zm0.7968-1.3945c0.1954-0.01171 0.3711-0.05859 0.5274-0.14062 0.0664-0.03516 0.1308-0.08008 0.1933-0.13477 0.0625-0.05468 0.1192-0.12109 0.17-0.19922 0.0507-0.08203 0.0898-0.17773 0.1171-0.2871 0.0313-0.10938 0.0469-0.23438 0.0469-0.375 0-0.13282-0.0156-0.24805-0.0469-0.34571-0.0273-0.10156-0.0644-0.1875-0.1113-0.25781-0.0469-0.07422-0.0996-0.13672-0.1582-0.1875s-0.1191-0.09375-0.1816-0.12891c-0.1485-0.07422-0.3145-0.11914-0.4981-0.13476h-0.8554v2.1914h0.7968zm6.4375-2.2383c0-0.16797 0.0039-0.33203 0.0118-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773s0.1406-0.22461 0.2578-0.29883c0.1211-0.07812 0.291-0.11718 0.5097-0.11718h1.9336c0.4805 0.02343 0.9102 0.125 1.2891 0.30468 0.1602 0.07813 0.3164 0.17578 0.4687 0.29297 0.1563 0.11328 0.295 0.25586 0.4161 0.42774 0.1211 0.16796 0.2187 0.36718 0.2929 0.59765 0.0743 0.23047 0.1114 0.49805 0.1114 0.80274 0 0.0625-0.0059 0.14648-0.0176 0.25195-0.0117 0.10156-0.0371 0.21484-0.0762 0.33984-0.039 0.1211-0.0918 0.24805-0.1582 0.38086s-0.1543 0.25977-0.2637 0.38086c-0.1093 0.1211-0.2441 0.23242-0.4043 0.33399-0.1562 0.10154-0.3418 0.18364-0.5566 0.24604 0.1367 0.0547 0.2754 0.127 0.416 0.2168 0.1406 0.086 0.2676 0.1973 0.3809 0.334 0.1133 0.1368 0.2051 0.3008 0.2754 0.4922 0.0742 0.1914 0.1113 0.4141 0.1113 0.668v0.832c0 0.0469 0.0117 0.086 0.0352 0.1172 0.0234 0.0313 0.0468 0.0586 0.0703 0.082 0.0937 0.0938 0.1484 0.1758 0.164 0.2461 0.0157 0.0664 0.0235 0.1211 0.0235 0.1641 0 0.1367-0.0274 0.2519-0.0821 0.3457-0.0547 0.0937-0.1269 0.1699-0.2168 0.2285-0.0859 0.0586-0.1855 0.0996-0.2988 0.1231-0.1094 0.0273-0.2227 0.041-0.3398 0.041-0.1289 0-0.2598-0.0196-0.3926-0.0586-0.1328-0.043-0.2539-0.1035-0.3633-0.1817-0.1094-0.0781-0.1992-0.1757-0.2695-0.2929-0.0664-0.1172-0.0996-0.252-0.0996-0.4043v-1.2422c0-0.1719-0.0118-0.3301-0.0352-0.4746-0.0234-0.1446-0.0684-0.2696-0.1348-0.375-0.0664-0.1055-0.1582-0.1875-0.2753-0.2461-0.1172-0.0586-0.2696-0.0879-0.4571-0.0879h-0.6562v1.957c0 0.1719-0.0059 0.3399-0.0176 0.5039-0.0078 0.1641-0.0391 0.3106-0.0938 0.4395-0.0546 0.125-0.1425 0.2265-0.2636 0.3047-0.1211 0.0742-0.293 0.1113-0.5157 0.1113-0.2187 0-0.3886-0.0371-0.5097-0.1113-0.1172-0.0782-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2754-0.0996-0.4395-0.0079-0.164-0.0118-0.332-0.0118-0.5039v-5.5078zm2.5664 2.2383c0.1954-0.00781 0.3711-0.05468 0.5274-0.14062 0.0664-0.03516 0.1308-0.08008 0.1933-0.13477 0.0625-0.05468 0.1192-0.12304 0.17-0.20508 0.0508-0.08203 0.0898-0.17773 0.1172-0.2871 0.0312-0.10938 0.0468-0.23633 0.0468-0.38086 0-0.12891-0.0156-0.24219-0.0468-0.33985-0.0274-0.10156-0.0645-0.18945-0.1114-0.26367-0.0468-0.07422-0.1015-0.13672-0.164-0.1875-0.0586-0.05078-0.1192-0.0918-0.1817-0.12305-0.1484-0.07421-0.3164-0.11718-0.5039-0.1289h-0.8437v2.1914h0.7968zm5.6016 1.0898h1.8633l-0.8672-3.1406h-0.1289l-0.8672 3.1406zm3.6797 0.5743c0.0078 0.2656 0.0176 0.5371 0.0293 0.8144 0.0117 0.2774 0.0176 0.5449 0.0176 0.8027v0.1758c0 0.1485-0.0059 0.293-0.0176 0.4336-0.0078 0.1367-0.0371 0.2617-0.0879 0.375-0.0508 0.1094-0.1309 0.1973-0.2402 0.2637-0.1094 0.0664-0.2637 0.0996-0.4629 0.0996-0.2031 0-0.3594-0.0332-0.4688-0.0996-0.1093-0.0664-0.1914-0.1543-0.2461-0.2637-0.0508-0.1094-0.082-0.2344-0.0937-0.375-0.0078-0.1406-0.0117-0.2851-0.0117-0.4336v-0.8203h-2.3438v0.8203c0 0.1485-0.0058 0.293-0.0176 0.4336-0.0078 0.1406-0.039 0.2656-0.0937 0.375-0.0508 0.1094-0.1309 0.1973-0.2403 0.2637-0.1093 0.0664-0.2656 0.0996-0.4687 0.0996s-0.3594-0.0332-0.4687-0.0996c-0.1094-0.0664-0.1895-0.1543-0.2403-0.2637-0.0508-0.1133-0.0801-0.2383-0.0879-0.375-0.0078-0.1406-0.0117-0.2851-0.0117-0.4336v-0.1758-0.3867c0.0039-0.1367 0.0078-0.2754 0.0117-0.416s0.0078-0.2793 0.0117-0.416c0.0039-0.1406 0.0079-0.2734 0.0118-0.3984 0.1953-0.6797 0.4004-1.3672 0.6152-2.0625 0.2148-0.69922 0.4199-1.3906 0.6152-2.0742 0.0391-0.14453 0.086-0.28321 0.1407-0.41602 0.0546-0.13672 0.1269-0.2539 0.2168-0.35156 0.0898-0.10156 0.205-0.18164 0.3457-0.24024 0.1406-0.0625 0.3203-0.09374 0.539-0.09374h0.586c0.2148 0 0.3925 0.03124 0.5332 0.09374 0.1445 0.0586 0.2617 0.13868 0.3515 0.24024 0.0899 0.09766 0.1602 0.21484 0.211 0.35156 0.0546 0.13281 0.1035 0.27149 0.1464 0.41602l1.2188 4.1368zm4.8516-5.2383c0.1562 0 0.3125 0.00585 0.4687 0.01757 0.1602 0.01172 0.3047 0.04493 0.4336 0.09961 0.1289 0.05469 0.2324 0.13867 0.3105 0.25196 0.0821 0.10937 0.1231 0.26367 0.1231 0.46289 0 0.19531-0.041 0.34961-0.1231 0.46289-0.0781 0.10937-0.1816 0.1914-0.3105 0.24609s-0.2734 0.08984-0.4336 0.10547c-0.1562 0.01172-0.3125 0.01758-0.4687 0.01758h-0.5977v5.2032c0 0.1679-0.0059 0.332-0.0176 0.4921-0.0078 0.1602-0.039 0.3028-0.0937 0.4278s-0.1426 0.2265-0.2637 0.3047c-0.1211 0.0742-0.293 0.1113-0.5156 0.1113-0.2227 0-0.3946-0.0371-0.5157-0.1113-0.121-0.0782-0.2089-0.1797-0.2636-0.3047s-0.0879-0.2676-0.0996-0.4278c-0.0078-0.1601-0.0118-0.3242-0.0118-0.4921v-5.2032h-0.5976c-0.1563 0-0.3145-0.00586-0.4746-0.01758-0.1563-0.01563-0.2988-0.05078-0.4278-0.10547-0.1289-0.05469-0.2343-0.13672-0.3164-0.24609-0.0781-0.11328-0.1171-0.26758-0.1171-0.46289 0-0.19922 0.039-0.35352 0.1171-0.46289 0.0821-0.11329 0.1875-0.19727 0.3164-0.25196 0.129-0.05468 0.2715-0.08789 0.4278-0.09961 0.1601-0.01172 0.3183-0.01757 0.4746-0.01757h2.9766zm5.3789 0c0.1562 0 0.3144 0.00585 0.4746 0.01757 0.1601 0.01172 0.3047 0.04493 0.4336 0.09961 0.1289 0.05469 0.2343 0.13867 0.3164 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3164 0.24609s-0.2735 0.08789-0.4336 0.09961c-0.1602 0.01172-0.3184 0.01758-0.4746 0.01758h-1.3946v1.5938h0.7383c0.1563 0 0.3125 0.00586 0.4688 0.01758 0.1601 0.00781 0.3007 0.03906 0.4218 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4218 0.0937-0.1563 0.0078-0.3125 0.0117-0.4688 0.0117h-0.7383v1.6875h1.3946c0.1562 0 0.3144 0.0059 0.4746 0.0176 0.1601 0.0117 0.3047 0.0449 0.4336 0.0996 0.1289 0.0508 0.2343 0.1328 0.3164 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.0429 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996c-0.1601 0.0117-0.3164 0.0176-0.4687 0.0176h-2.2969c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2969zm5.1562 0c0.3555 0 0.6856 0.04492 0.9902 0.13476 0.3086 0.08984 0.5762 0.22461 0.8028 0.4043 0.2305 0.17578 0.4101 0.39648 0.539 0.66211 0.1329 0.26562 0.1993 0.57617 0.1993 0.93164v3.6328c0 0.3047-0.0332 0.5742-0.0996 0.8086-0.0665 0.2305-0.1543 0.4316-0.2637 0.6035-0.1055 0.168-0.2266 0.3125-0.3633 0.4336-0.1367 0.1172-0.2754 0.2129-0.416 0.2871-0.336 0.1797-0.7168 0.2813-1.1426 0.3047h-1.9453c-0.2227 0-0.3945-0.0371-0.5156-0.1113-0.1211-0.0782-0.209-0.1797-0.2637-0.3047-0.0547-0.1289-0.0879-0.2735-0.0996-0.4336-0.0078-0.1602-0.0117-0.3262-0.0117-0.4981v-5.5195c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773s0.1426-0.22461 0.2637-0.29883c0.1211-0.07812 0.2929-0.11718 0.5156-0.11718h1.6992zm-0.8086 1.3711v5.4375h0.7617c0.168-0.0078 0.3184-0.0469 0.4512-0.1172 0.0547-0.0274 0.1094-0.0645 0.1641-0.1113 0.0547-0.0469 0.1035-0.1016 0.1465-0.1641 0.0429-0.0664 0.0761-0.1445 0.0996-0.2344 0.0273-0.0898 0.041-0.1933 0.041-0.3105v-3.4571c0-0.12891-0.0137-0.24219-0.041-0.33985-0.0235-0.10156-0.0567-0.18945-0.0996-0.26367-0.043-0.07422-0.0918-0.13672-0.1465-0.1875s-0.1094-0.0918-0.1641-0.12304c-0.1328-0.07422-0.2832-0.11719-0.4512-0.12891h-0.7617z" fill="#312E2A"></path><defs><filter id="t-b" x="2" y="0" width="65" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18363"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18363" result="shape"></feBlend></filter><linearGradient id="t-a" x1="5" x2="64" y1="21" y2="21" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FFD600"></stop><stop offset="1" stop-color="#FFFA76"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Highway Racer 2</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/highway-racer-2/cover-1678723517371.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Highway Racer 2" srcSet="https://images.crazygames.com/games/highway-racer-2/cover-1678723517371.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/highway-racer-2/cover-1678723517371.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/highway-racer-2/cover-1678723517371.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/highway-racer-2/cover-1678723517371.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/highway-racer-2/cover-1678723517371.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/highway-racer-2/cover-1678723517371.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/highway-racer-2/cover-1678723517371.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/moto-x3m"><div class="gameThumbTitleContainer">Moto X3M</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/moto-x3m/cover-1586173923704.jpeg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Moto X3M" srcSet="https://images.crazygames.com/games/moto-x3m/cover-1586173923704.jpeg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/moto-x3m/cover-1586173923704.jpeg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/moto-x3m/cover-1586173923704.jpeg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/moto-x3m/cover-1586173923704.jpeg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/moto-x3m/cover-1586173923704.jpeg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/moto-x3m/cover-1586173923704.jpeg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/moto-x3m/cover-1586173923704.jpeg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/highway-racer"><div class="gameThumbTitleContainer">Highway Racer</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/highway-racer/cover-1655194175251.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Highway Racer" srcSet="https://images.crazygames.com/games/highway-racer/cover-1655194175251.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/highway-racer/cover-1655194175251.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/highway-racer/cover-1655194175251.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/highway-racer/cover-1655194175251.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/highway-racer/cover-1655194175251.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/highway-racer/cover-1655194175251.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/highway-racer/cover-1655194175251.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/supertrucks-offroad-racing"><div class="gameThumbTitleContainer">SuperTrucks Offroad Racing</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/supertrucks-offroad-racing/20230127220746/supertrucks-offroad-racing-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="SuperTrucks Offroad Racing" srcSet="https://images.crazygames.com/supertrucks-offroad-racing/20230127220746/supertrucks-offroad-racing-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/supertrucks-offroad-racing/20230127220746/supertrucks-offroad-racing-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/supertrucks-offroad-racing/20230127220746/supertrucks-offroad-racing-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/supertrucks-offroad-racing/20230127220746/supertrucks-offroad-racing-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/supertrucks-offroad-racing/20230127220746/supertrucks-offroad-racing-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/supertrucks-offroad-racing/20230127220746/supertrucks-offroad-racing-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/supertrucks-offroad-racing/20230127220746/supertrucks-offroad-racing-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/crazy-drift"><svg width="67" height="27" viewBox="0 0 67 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#t-b)"><path d="M5 0H53.5C59.299 0 64 4.70101 64 10.5C64 16.299 59.299 21 53.5 21H5V0Z" fill="url(#t-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FFD702"></path><path d="m5 27h-2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A28700"></path><path d="m9.3711 5.7969c0.15625 0 0.3125 0.00585 0.46875 0.01757 0.16016 0.01172 0.30466 0.04493 0.43356 0.09961 0.1289 0.05469 0.2325 0.13867 0.3106 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19531-0.041 0.34961-0.123 0.46289-0.0781 0.10937-0.1817 0.1914-0.3106 0.24609s-0.2734 0.08984-0.43356 0.10547c-0.15625 0.01172-0.3125 0.01758-0.46875 0.01758h-0.59765v5.2032c0 0.1679-0.00586 0.332-0.01758 0.4921-0.00781 0.1602-0.03906 0.3028-0.09375 0.4278s-0.14258 0.2265-0.26367 0.3047c-0.1211 0.0742-0.29297 0.1113-0.51563 0.1113-0.22265 0-0.39453-0.0371-0.51562-0.1113-0.1211-0.0782-0.20899-0.1797-0.26367-0.3047-0.05469-0.125-0.0879-0.2676-0.09961-0.4278-0.00782-0.1601-0.01172-0.3242-0.01172-0.4921v-5.2032h-0.59766c-0.15625 0-0.31445-0.00586-0.47461-0.01758-0.15625-0.01563-0.29883-0.05078-0.42773-0.10547-0.12891-0.05469-0.23438-0.13672-0.31641-0.24609-0.07812-0.11328-0.11719-0.26758-0.11719-0.46289 0-0.19922 0.03907-0.35352 0.11719-0.46289 0.08203-0.11329 0.1875-0.19727 0.31641-0.25196 0.1289-0.05468 0.27148-0.08789 0.42773-0.09961 0.16016-0.01172 0.31836-0.01757 0.47461-0.01757h2.9766zm1.9922 2.3203c0-0.375 0.0547-0.69336 0.164-0.95508 0.1094-0.26563 0.2481-0.48633 0.4161-0.66211 0.1718-0.17578 0.3593-0.3125 0.5625-0.41016 0.207-0.10156 0.4062-0.17773 0.5976-0.22851 0.1953-0.05078 0.3711-0.08203 0.5274-0.09375 0.1562-0.01172 0.2714-0.01758 0.3457-0.01758h0.1992c0.0742 0 0.1894 0.00586 0.3457 0.01758 0.1562 0.01172 0.3301 0.04297 0.5215 0.09375s0.3886 0.12695 0.5918 0.22851c0.207 0.09766 0.3925 0.23438 0.5566 0.41016 0.168 0.17578 0.3047 0.39648 0.4102 0.66211 0.1093 0.26172 0.164 0.58008 0.164 0.95508v3.5039c0 0.3867-0.0547 0.7148-0.164 0.9844-0.1055 0.2695-0.2422 0.4941-0.4102 0.6738-0.1641 0.1797-0.3496 0.3223-0.5566 0.4277-0.2032 0.1016-0.4004 0.1778-0.5918 0.2285-0.1914 0.0508-0.3653 0.0821-0.5215 0.0938-0.1563 0.0117-0.2715 0.0176-0.3457 0.0176h-0.1992c-0.0743 0-0.1895-0.0059-0.3457-0.0176-0.1563-0.0117-0.3321-0.043-0.5274-0.0938-0.1914-0.0507-0.3906-0.1269-0.5976-0.2285-0.2032-0.1054-0.3907-0.248-0.5625-0.4277-0.168-0.1797-0.3067-0.4043-0.4161-0.6738-0.1093-0.2696-0.164-0.5977-0.164-0.9844v-3.5039zm1.9453 3.7266c0.0078 0.1445 0.041 0.2714 0.0996 0.3808 0.0508 0.0977 0.127 0.1856 0.2285 0.2637 0.1055 0.0781 0.2539 0.1172 0.4453 0.1172 0.1875 0 0.3321-0.0391 0.4336-0.1172 0.1016-0.0781 0.1778-0.166 0.2285-0.2637 0.0547-0.1094 0.0879-0.2363 0.0997-0.3808v-3.8204c-0.0118-0.14063-0.045-0.26758-0.0997-0.38086-0.0507-0.09375-0.1269-0.17969-0.2285-0.25781-0.1015-0.08204-0.2461-0.12305-0.4336-0.12305-0.1914 0-0.3398 0.04101-0.4453 0.12305-0.1015 0.07812-0.1777 0.16406-0.2285 0.25781-0.0586 0.11328-0.0918 0.24023-0.0996 0.38086v3.8204zm6.668-1.0782v1.8985c0 0.1679-0.0059 0.332-0.0176 0.4921-0.0078 0.1602-0.041 0.3028-0.0996 0.4278-0.0547 0.125-0.1426 0.2265-0.2637 0.3047-0.1211 0.0742-0.2949 0.1113-0.5215 0.1113-0.2187 0-0.3887-0.0371-0.5097-0.1113-0.1172-0.0782-0.2032-0.1797-0.2579-0.3047-0.0546-0.125-0.0878-0.2676-0.0996-0.4278-0.0078-0.1601-0.0117-0.3242-0.0117-0.4921v-5.5313c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0118-0.16015 0.045-0.30273 0.0996-0.42773 0.0547-0.125 0.1407-0.22461 0.2579-0.29883 0.121-0.07812 0.291-0.11718 0.5097-0.11718h1.9336c0.4844 0.02343 0.918 0.125 1.3008 0.30468 0.1641 0.07813 0.3223 0.17578 0.4746 0.29297 0.1563 0.11719 0.2949 0.26172 0.416 0.43359 0.125 0.16797 0.2246 0.36915 0.2988 0.60352 0.0743 0.23047 0.1114 0.49805 0.1114 0.80274 0 0.41796-0.0664 0.78515-0.1992 1.1016-0.129 0.3125-0.3184 0.57617-0.5684 0.79106-0.2461 0.2109-0.5488 0.371-0.9082 0.4804-0.3555 0.1055-0.7578 0.1582-1.207 0.1582h-0.75zm0.7968-1.3945c0.1954-0.01171 0.3711-0.05859 0.5274-0.14062 0.0664-0.03516 0.1308-0.08008 0.1933-0.13477 0.0625-0.05468 0.1192-0.12109 0.17-0.19922 0.0507-0.08203 0.0898-0.17773 0.1171-0.2871 0.0313-0.10938 0.0469-0.23438 0.0469-0.375 0-0.13282-0.0156-0.24805-0.0469-0.34571-0.0273-0.10156-0.0644-0.1875-0.1113-0.25781-0.0469-0.07422-0.0996-0.13672-0.1582-0.1875s-0.1191-0.09375-0.1816-0.12891c-0.1485-0.07422-0.3145-0.11914-0.4981-0.13476h-0.8554v2.1914h0.7968zm6.4375-2.2383c0-0.16797 0.0039-0.33203 0.0118-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773s0.1406-0.22461 0.2578-0.29883c0.1211-0.07812 0.291-0.11718 0.5097-0.11718h1.9336c0.4805 0.02343 0.9102 0.125 1.2891 0.30468 0.1602 0.07813 0.3164 0.17578 0.4687 0.29297 0.1563 0.11328 0.295 0.25586 0.4161 0.42774 0.1211 0.16796 0.2187 0.36718 0.2929 0.59765 0.0743 0.23047 0.1114 0.49805 0.1114 0.80274 0 0.0625-0.0059 0.14648-0.0176 0.25195-0.0117 0.10156-0.0371 0.21484-0.0762 0.33984-0.039 0.1211-0.0918 0.24805-0.1582 0.38086s-0.1543 0.25977-0.2637 0.38086c-0.1093 0.1211-0.2441 0.23242-0.4043 0.33399-0.1562 0.10154-0.3418 0.18364-0.5566 0.24604 0.1367 0.0547 0.2754 0.127 0.416 0.2168 0.1406 0.086 0.2676 0.1973 0.3809 0.334 0.1133 0.1368 0.2051 0.3008 0.2754 0.4922 0.0742 0.1914 0.1113 0.4141 0.1113 0.668v0.832c0 0.0469 0.0117 0.086 0.0352 0.1172 0.0234 0.0313 0.0468 0.0586 0.0703 0.082 0.0937 0.0938 0.1484 0.1758 0.164 0.2461 0.0157 0.0664 0.0235 0.1211 0.0235 0.1641 0 0.1367-0.0274 0.2519-0.0821 0.3457-0.0547 0.0937-0.1269 0.1699-0.2168 0.2285-0.0859 0.0586-0.1855 0.0996-0.2988 0.1231-0.1094 0.0273-0.2227 0.041-0.3398 0.041-0.1289 0-0.2598-0.0196-0.3926-0.0586-0.1328-0.043-0.2539-0.1035-0.3633-0.1817-0.1094-0.0781-0.1992-0.1757-0.2695-0.2929-0.0664-0.1172-0.0996-0.252-0.0996-0.4043v-1.2422c0-0.1719-0.0118-0.3301-0.0352-0.4746-0.0234-0.1446-0.0684-0.2696-0.1348-0.375-0.0664-0.1055-0.1582-0.1875-0.2753-0.2461-0.1172-0.0586-0.2696-0.0879-0.4571-0.0879h-0.6562v1.957c0 0.1719-0.0059 0.3399-0.0176 0.5039-0.0078 0.1641-0.0391 0.3106-0.0938 0.4395-0.0546 0.125-0.1425 0.2265-0.2636 0.3047-0.1211 0.0742-0.293 0.1113-0.5157 0.1113-0.2187 0-0.3886-0.0371-0.5097-0.1113-0.1172-0.0782-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2754-0.0996-0.4395-0.0079-0.164-0.0118-0.332-0.0118-0.5039v-5.5078zm2.5664 2.2383c0.1954-0.00781 0.3711-0.05468 0.5274-0.14062 0.0664-0.03516 0.1308-0.08008 0.1933-0.13477 0.0625-0.05468 0.1192-0.12304 0.17-0.20508 0.0508-0.08203 0.0898-0.17773 0.1172-0.2871 0.0312-0.10938 0.0468-0.23633 0.0468-0.38086 0-0.12891-0.0156-0.24219-0.0468-0.33985-0.0274-0.10156-0.0645-0.18945-0.1114-0.26367-0.0468-0.07422-0.1015-0.13672-0.164-0.1875-0.0586-0.05078-0.1192-0.0918-0.1817-0.12305-0.1484-0.07421-0.3164-0.11718-0.5039-0.1289h-0.8437v2.1914h0.7968zm5.6016 1.0898h1.8633l-0.8672-3.1406h-0.1289l-0.8672 3.1406zm3.6797 0.5743c0.0078 0.2656 0.0176 0.5371 0.0293 0.8144 0.0117 0.2774 0.0176 0.5449 0.0176 0.8027v0.1758c0 0.1485-0.0059 0.293-0.0176 0.4336-0.0078 0.1367-0.0371 0.2617-0.0879 0.375-0.0508 0.1094-0.1309 0.1973-0.2402 0.2637-0.1094 0.0664-0.2637 0.0996-0.4629 0.0996-0.2031 0-0.3594-0.0332-0.4688-0.0996-0.1093-0.0664-0.1914-0.1543-0.2461-0.2637-0.0508-0.1094-0.082-0.2344-0.0937-0.375-0.0078-0.1406-0.0117-0.2851-0.0117-0.4336v-0.8203h-2.3438v0.8203c0 0.1485-0.0058 0.293-0.0176 0.4336-0.0078 0.1406-0.039 0.2656-0.0937 0.375-0.0508 0.1094-0.1309 0.1973-0.2403 0.2637-0.1093 0.0664-0.2656 0.0996-0.4687 0.0996s-0.3594-0.0332-0.4687-0.0996c-0.1094-0.0664-0.1895-0.1543-0.2403-0.2637-0.0508-0.1133-0.0801-0.2383-0.0879-0.375-0.0078-0.1406-0.0117-0.2851-0.0117-0.4336v-0.1758-0.3867c0.0039-0.1367 0.0078-0.2754 0.0117-0.416s0.0078-0.2793 0.0117-0.416c0.0039-0.1406 0.0079-0.2734 0.0118-0.3984 0.1953-0.6797 0.4004-1.3672 0.6152-2.0625 0.2148-0.69922 0.4199-1.3906 0.6152-2.0742 0.0391-0.14453 0.086-0.28321 0.1407-0.41602 0.0546-0.13672 0.1269-0.2539 0.2168-0.35156 0.0898-0.10156 0.205-0.18164 0.3457-0.24024 0.1406-0.0625 0.3203-0.09374 0.539-0.09374h0.586c0.2148 0 0.3925 0.03124 0.5332 0.09374 0.1445 0.0586 0.2617 0.13868 0.3515 0.24024 0.0899 0.09766 0.1602 0.21484 0.211 0.35156 0.0546 0.13281 0.1035 0.27149 0.1464 0.41602l1.2188 4.1368zm4.8516-5.2383c0.1562 0 0.3125 0.00585 0.4687 0.01757 0.1602 0.01172 0.3047 0.04493 0.4336 0.09961 0.1289 0.05469 0.2324 0.13867 0.3105 0.25196 0.0821 0.10937 0.1231 0.26367 0.1231 0.46289 0 0.19531-0.041 0.34961-0.1231 0.46289-0.0781 0.10937-0.1816 0.1914-0.3105 0.24609s-0.2734 0.08984-0.4336 0.10547c-0.1562 0.01172-0.3125 0.01758-0.4687 0.01758h-0.5977v5.2032c0 0.1679-0.0059 0.332-0.0176 0.4921-0.0078 0.1602-0.039 0.3028-0.0937 0.4278s-0.1426 0.2265-0.2637 0.3047c-0.1211 0.0742-0.293 0.1113-0.5156 0.1113-0.2227 0-0.3946-0.0371-0.5157-0.1113-0.121-0.0782-0.2089-0.1797-0.2636-0.3047s-0.0879-0.2676-0.0996-0.4278c-0.0078-0.1601-0.0118-0.3242-0.0118-0.4921v-5.2032h-0.5976c-0.1563 0-0.3145-0.00586-0.4746-0.01758-0.1563-0.01563-0.2988-0.05078-0.4278-0.10547-0.1289-0.05469-0.2343-0.13672-0.3164-0.24609-0.0781-0.11328-0.1171-0.26758-0.1171-0.46289 0-0.19922 0.039-0.35352 0.1171-0.46289 0.0821-0.11329 0.1875-0.19727 0.3164-0.25196 0.129-0.05468 0.2715-0.08789 0.4278-0.09961 0.1601-0.01172 0.3183-0.01757 0.4746-0.01757h2.9766zm5.3789 0c0.1562 0 0.3144 0.00585 0.4746 0.01757 0.1601 0.01172 0.3047 0.04493 0.4336 0.09961 0.1289 0.05469 0.2343 0.13867 0.3164 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3164 0.24609s-0.2735 0.08789-0.4336 0.09961c-0.1602 0.01172-0.3184 0.01758-0.4746 0.01758h-1.3946v1.5938h0.7383c0.1563 0 0.3125 0.00586 0.4688 0.01758 0.1601 0.00781 0.3007 0.03906 0.4218 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4218 0.0937-0.1563 0.0078-0.3125 0.0117-0.4688 0.0117h-0.7383v1.6875h1.3946c0.1562 0 0.3144 0.0059 0.4746 0.0176 0.1601 0.0117 0.3047 0.0449 0.4336 0.0996 0.1289 0.0508 0.2343 0.1328 0.3164 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.0429 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996c-0.1601 0.0117-0.3164 0.0176-0.4687 0.0176h-2.2969c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2969zm5.1562 0c0.3555 0 0.6856 0.04492 0.9902 0.13476 0.3086 0.08984 0.5762 0.22461 0.8028 0.4043 0.2305 0.17578 0.4101 0.39648 0.539 0.66211 0.1329 0.26562 0.1993 0.57617 0.1993 0.93164v3.6328c0 0.3047-0.0332 0.5742-0.0996 0.8086-0.0665 0.2305-0.1543 0.4316-0.2637 0.6035-0.1055 0.168-0.2266 0.3125-0.3633 0.4336-0.1367 0.1172-0.2754 0.2129-0.416 0.2871-0.336 0.1797-0.7168 0.2813-1.1426 0.3047h-1.9453c-0.2227 0-0.3945-0.0371-0.5156-0.1113-0.1211-0.0782-0.209-0.1797-0.2637-0.3047-0.0547-0.1289-0.0879-0.2735-0.0996-0.4336-0.0078-0.1602-0.0117-0.3262-0.0117-0.4981v-5.5195c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773s0.1426-0.22461 0.2637-0.29883c0.1211-0.07812 0.2929-0.11718 0.5156-0.11718h1.6992zm-0.8086 1.3711v5.4375h0.7617c0.168-0.0078 0.3184-0.0469 0.4512-0.1172 0.0547-0.0274 0.1094-0.0645 0.1641-0.1113 0.0547-0.0469 0.1035-0.1016 0.1465-0.1641 0.0429-0.0664 0.0761-0.1445 0.0996-0.2344 0.0273-0.0898 0.041-0.1933 0.041-0.3105v-3.4571c0-0.12891-0.0137-0.24219-0.041-0.33985-0.0235-0.10156-0.0567-0.18945-0.0996-0.26367-0.043-0.07422-0.0918-0.13672-0.1465-0.1875s-0.1094-0.0918-0.1641-0.12304c-0.1328-0.07422-0.2832-0.11719-0.4512-0.12891h-0.7617z" fill="#312E2A"></path><defs><filter id="t-b" x="2" y="0" width="65" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18363"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18363" result="shape"></feBlend></filter><linearGradient id="t-a" x1="5" x2="64" y1="21" y2="21" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FFD600"></stop><stop offset="1" stop-color="#FFFA76"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Crazy Drift</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/crazy-drift/cover-1655409764442.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Crazy Drift" srcSet="https://images.crazygames.com/games/crazy-drift/cover-1655409764442.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/crazy-drift/cover-1655409764442.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/crazy-drift/cover-1655409764442.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/crazy-drift/cover-1655409764442.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/crazy-drift/cover-1655409764442.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/crazy-drift/cover-1655409764442.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/crazy-drift/cover-1655409764442.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/ramp-car-jumping"><div class="gameThumbTitleContainer">Ramp Car Jumping</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/ramp-car-jumping/20230308122223/ramp-car-jumping-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Ramp Car Jumping" srcSet="https://images.crazygames.com/ramp-car-jumping/20230308122223/ramp-car-jumping-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/ramp-car-jumping/20230308122223/ramp-car-jumping-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/ramp-car-jumping/20230308122223/ramp-car-jumping-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/ramp-car-jumping/20230308122223/ramp-car-jumping-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/ramp-car-jumping/20230308122223/ramp-car-jumping-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/ramp-car-jumping/20230308122223/ramp-car-jumping-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/ramp-car-jumping/20230308122223/ramp-car-jumping-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/drift-hunters"><svg width="67" height="27" viewBox="0 0 67 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#t-b)"><path d="M5 0H53.5C59.299 0 64 4.70101 64 10.5C64 16.299 59.299 21 53.5 21H5V0Z" fill="url(#t-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FFD702"></path><path d="m5 27h-2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#A28700"></path><path d="m9.3711 5.7969c0.15625 0 0.3125 0.00585 0.46875 0.01757 0.16016 0.01172 0.30466 0.04493 0.43356 0.09961 0.1289 0.05469 0.2325 0.13867 0.3106 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19531-0.041 0.34961-0.123 0.46289-0.0781 0.10937-0.1817 0.1914-0.3106 0.24609s-0.2734 0.08984-0.43356 0.10547c-0.15625 0.01172-0.3125 0.01758-0.46875 0.01758h-0.59765v5.2032c0 0.1679-0.00586 0.332-0.01758 0.4921-0.00781 0.1602-0.03906 0.3028-0.09375 0.4278s-0.14258 0.2265-0.26367 0.3047c-0.1211 0.0742-0.29297 0.1113-0.51563 0.1113-0.22265 0-0.39453-0.0371-0.51562-0.1113-0.1211-0.0782-0.20899-0.1797-0.26367-0.3047-0.05469-0.125-0.0879-0.2676-0.09961-0.4278-0.00782-0.1601-0.01172-0.3242-0.01172-0.4921v-5.2032h-0.59766c-0.15625 0-0.31445-0.00586-0.47461-0.01758-0.15625-0.01563-0.29883-0.05078-0.42773-0.10547-0.12891-0.05469-0.23438-0.13672-0.31641-0.24609-0.07812-0.11328-0.11719-0.26758-0.11719-0.46289 0-0.19922 0.03907-0.35352 0.11719-0.46289 0.08203-0.11329 0.1875-0.19727 0.31641-0.25196 0.1289-0.05468 0.27148-0.08789 0.42773-0.09961 0.16016-0.01172 0.31836-0.01757 0.47461-0.01757h2.9766zm1.9922 2.3203c0-0.375 0.0547-0.69336 0.164-0.95508 0.1094-0.26563 0.2481-0.48633 0.4161-0.66211 0.1718-0.17578 0.3593-0.3125 0.5625-0.41016 0.207-0.10156 0.4062-0.17773 0.5976-0.22851 0.1953-0.05078 0.3711-0.08203 0.5274-0.09375 0.1562-0.01172 0.2714-0.01758 0.3457-0.01758h0.1992c0.0742 0 0.1894 0.00586 0.3457 0.01758 0.1562 0.01172 0.3301 0.04297 0.5215 0.09375s0.3886 0.12695 0.5918 0.22851c0.207 0.09766 0.3925 0.23438 0.5566 0.41016 0.168 0.17578 0.3047 0.39648 0.4102 0.66211 0.1093 0.26172 0.164 0.58008 0.164 0.95508v3.5039c0 0.3867-0.0547 0.7148-0.164 0.9844-0.1055 0.2695-0.2422 0.4941-0.4102 0.6738-0.1641 0.1797-0.3496 0.3223-0.5566 0.4277-0.2032 0.1016-0.4004 0.1778-0.5918 0.2285-0.1914 0.0508-0.3653 0.0821-0.5215 0.0938-0.1563 0.0117-0.2715 0.0176-0.3457 0.0176h-0.1992c-0.0743 0-0.1895-0.0059-0.3457-0.0176-0.1563-0.0117-0.3321-0.043-0.5274-0.0938-0.1914-0.0507-0.3906-0.1269-0.5976-0.2285-0.2032-0.1054-0.3907-0.248-0.5625-0.4277-0.168-0.1797-0.3067-0.4043-0.4161-0.6738-0.1093-0.2696-0.164-0.5977-0.164-0.9844v-3.5039zm1.9453 3.7266c0.0078 0.1445 0.041 0.2714 0.0996 0.3808 0.0508 0.0977 0.127 0.1856 0.2285 0.2637 0.1055 0.0781 0.2539 0.1172 0.4453 0.1172 0.1875 0 0.3321-0.0391 0.4336-0.1172 0.1016-0.0781 0.1778-0.166 0.2285-0.2637 0.0547-0.1094 0.0879-0.2363 0.0997-0.3808v-3.8204c-0.0118-0.14063-0.045-0.26758-0.0997-0.38086-0.0507-0.09375-0.1269-0.17969-0.2285-0.25781-0.1015-0.08204-0.2461-0.12305-0.4336-0.12305-0.1914 0-0.3398 0.04101-0.4453 0.12305-0.1015 0.07812-0.1777 0.16406-0.2285 0.25781-0.0586 0.11328-0.0918 0.24023-0.0996 0.38086v3.8204zm6.668-1.0782v1.8985c0 0.1679-0.0059 0.332-0.0176 0.4921-0.0078 0.1602-0.041 0.3028-0.0996 0.4278-0.0547 0.125-0.1426 0.2265-0.2637 0.3047-0.1211 0.0742-0.2949 0.1113-0.5215 0.1113-0.2187 0-0.3887-0.0371-0.5097-0.1113-0.1172-0.0782-0.2032-0.1797-0.2579-0.3047-0.0546-0.125-0.0878-0.2676-0.0996-0.4278-0.0078-0.1601-0.0117-0.3242-0.0117-0.4921v-5.5313c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0118-0.16015 0.045-0.30273 0.0996-0.42773 0.0547-0.125 0.1407-0.22461 0.2579-0.29883 0.121-0.07812 0.291-0.11718 0.5097-0.11718h1.9336c0.4844 0.02343 0.918 0.125 1.3008 0.30468 0.1641 0.07813 0.3223 0.17578 0.4746 0.29297 0.1563 0.11719 0.2949 0.26172 0.416 0.43359 0.125 0.16797 0.2246 0.36915 0.2988 0.60352 0.0743 0.23047 0.1114 0.49805 0.1114 0.80274 0 0.41796-0.0664 0.78515-0.1992 1.1016-0.129 0.3125-0.3184 0.57617-0.5684 0.79106-0.2461 0.2109-0.5488 0.371-0.9082 0.4804-0.3555 0.1055-0.7578 0.1582-1.207 0.1582h-0.75zm0.7968-1.3945c0.1954-0.01171 0.3711-0.05859 0.5274-0.14062 0.0664-0.03516 0.1308-0.08008 0.1933-0.13477 0.0625-0.05468 0.1192-0.12109 0.17-0.19922 0.0507-0.08203 0.0898-0.17773 0.1171-0.2871 0.0313-0.10938 0.0469-0.23438 0.0469-0.375 0-0.13282-0.0156-0.24805-0.0469-0.34571-0.0273-0.10156-0.0644-0.1875-0.1113-0.25781-0.0469-0.07422-0.0996-0.13672-0.1582-0.1875s-0.1191-0.09375-0.1816-0.12891c-0.1485-0.07422-0.3145-0.11914-0.4981-0.13476h-0.8554v2.1914h0.7968zm6.4375-2.2383c0-0.16797 0.0039-0.33203 0.0118-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773s0.1406-0.22461 0.2578-0.29883c0.1211-0.07812 0.291-0.11718 0.5097-0.11718h1.9336c0.4805 0.02343 0.9102 0.125 1.2891 0.30468 0.1602 0.07813 0.3164 0.17578 0.4687 0.29297 0.1563 0.11328 0.295 0.25586 0.4161 0.42774 0.1211 0.16796 0.2187 0.36718 0.2929 0.59765 0.0743 0.23047 0.1114 0.49805 0.1114 0.80274 0 0.0625-0.0059 0.14648-0.0176 0.25195-0.0117 0.10156-0.0371 0.21484-0.0762 0.33984-0.039 0.1211-0.0918 0.24805-0.1582 0.38086s-0.1543 0.25977-0.2637 0.38086c-0.1093 0.1211-0.2441 0.23242-0.4043 0.33399-0.1562 0.10154-0.3418 0.18364-0.5566 0.24604 0.1367 0.0547 0.2754 0.127 0.416 0.2168 0.1406 0.086 0.2676 0.1973 0.3809 0.334 0.1133 0.1368 0.2051 0.3008 0.2754 0.4922 0.0742 0.1914 0.1113 0.4141 0.1113 0.668v0.832c0 0.0469 0.0117 0.086 0.0352 0.1172 0.0234 0.0313 0.0468 0.0586 0.0703 0.082 0.0937 0.0938 0.1484 0.1758 0.164 0.2461 0.0157 0.0664 0.0235 0.1211 0.0235 0.1641 0 0.1367-0.0274 0.2519-0.0821 0.3457-0.0547 0.0937-0.1269 0.1699-0.2168 0.2285-0.0859 0.0586-0.1855 0.0996-0.2988 0.1231-0.1094 0.0273-0.2227 0.041-0.3398 0.041-0.1289 0-0.2598-0.0196-0.3926-0.0586-0.1328-0.043-0.2539-0.1035-0.3633-0.1817-0.1094-0.0781-0.1992-0.1757-0.2695-0.2929-0.0664-0.1172-0.0996-0.252-0.0996-0.4043v-1.2422c0-0.1719-0.0118-0.3301-0.0352-0.4746-0.0234-0.1446-0.0684-0.2696-0.1348-0.375-0.0664-0.1055-0.1582-0.1875-0.2753-0.2461-0.1172-0.0586-0.2696-0.0879-0.4571-0.0879h-0.6562v1.957c0 0.1719-0.0059 0.3399-0.0176 0.5039-0.0078 0.1641-0.0391 0.3106-0.0938 0.4395-0.0546 0.125-0.1425 0.2265-0.2636 0.3047-0.1211 0.0742-0.293 0.1113-0.5157 0.1113-0.2187 0-0.3886-0.0371-0.5097-0.1113-0.1172-0.0782-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2754-0.0996-0.4395-0.0079-0.164-0.0118-0.332-0.0118-0.5039v-5.5078zm2.5664 2.2383c0.1954-0.00781 0.3711-0.05468 0.5274-0.14062 0.0664-0.03516 0.1308-0.08008 0.1933-0.13477 0.0625-0.05468 0.1192-0.12304 0.17-0.20508 0.0508-0.08203 0.0898-0.17773 0.1172-0.2871 0.0312-0.10938 0.0468-0.23633 0.0468-0.38086 0-0.12891-0.0156-0.24219-0.0468-0.33985-0.0274-0.10156-0.0645-0.18945-0.1114-0.26367-0.0468-0.07422-0.1015-0.13672-0.164-0.1875-0.0586-0.05078-0.1192-0.0918-0.1817-0.12305-0.1484-0.07421-0.3164-0.11718-0.5039-0.1289h-0.8437v2.1914h0.7968zm5.6016 1.0898h1.8633l-0.8672-3.1406h-0.1289l-0.8672 3.1406zm3.6797 0.5743c0.0078 0.2656 0.0176 0.5371 0.0293 0.8144 0.0117 0.2774 0.0176 0.5449 0.0176 0.8027v0.1758c0 0.1485-0.0059 0.293-0.0176 0.4336-0.0078 0.1367-0.0371 0.2617-0.0879 0.375-0.0508 0.1094-0.1309 0.1973-0.2402 0.2637-0.1094 0.0664-0.2637 0.0996-0.4629 0.0996-0.2031 0-0.3594-0.0332-0.4688-0.0996-0.1093-0.0664-0.1914-0.1543-0.2461-0.2637-0.0508-0.1094-0.082-0.2344-0.0937-0.375-0.0078-0.1406-0.0117-0.2851-0.0117-0.4336v-0.8203h-2.3438v0.8203c0 0.1485-0.0058 0.293-0.0176 0.4336-0.0078 0.1406-0.039 0.2656-0.0937 0.375-0.0508 0.1094-0.1309 0.1973-0.2403 0.2637-0.1093 0.0664-0.2656 0.0996-0.4687 0.0996s-0.3594-0.0332-0.4687-0.0996c-0.1094-0.0664-0.1895-0.1543-0.2403-0.2637-0.0508-0.1133-0.0801-0.2383-0.0879-0.375-0.0078-0.1406-0.0117-0.2851-0.0117-0.4336v-0.1758-0.3867c0.0039-0.1367 0.0078-0.2754 0.0117-0.416s0.0078-0.2793 0.0117-0.416c0.0039-0.1406 0.0079-0.2734 0.0118-0.3984 0.1953-0.6797 0.4004-1.3672 0.6152-2.0625 0.2148-0.69922 0.4199-1.3906 0.6152-2.0742 0.0391-0.14453 0.086-0.28321 0.1407-0.41602 0.0546-0.13672 0.1269-0.2539 0.2168-0.35156 0.0898-0.10156 0.205-0.18164 0.3457-0.24024 0.1406-0.0625 0.3203-0.09374 0.539-0.09374h0.586c0.2148 0 0.3925 0.03124 0.5332 0.09374 0.1445 0.0586 0.2617 0.13868 0.3515 0.24024 0.0899 0.09766 0.1602 0.21484 0.211 0.35156 0.0546 0.13281 0.1035 0.27149 0.1464 0.41602l1.2188 4.1368zm4.8516-5.2383c0.1562 0 0.3125 0.00585 0.4687 0.01757 0.1602 0.01172 0.3047 0.04493 0.4336 0.09961 0.1289 0.05469 0.2324 0.13867 0.3105 0.25196 0.0821 0.10937 0.1231 0.26367 0.1231 0.46289 0 0.19531-0.041 0.34961-0.1231 0.46289-0.0781 0.10937-0.1816 0.1914-0.3105 0.24609s-0.2734 0.08984-0.4336 0.10547c-0.1562 0.01172-0.3125 0.01758-0.4687 0.01758h-0.5977v5.2032c0 0.1679-0.0059 0.332-0.0176 0.4921-0.0078 0.1602-0.039 0.3028-0.0937 0.4278s-0.1426 0.2265-0.2637 0.3047c-0.1211 0.0742-0.293 0.1113-0.5156 0.1113-0.2227 0-0.3946-0.0371-0.5157-0.1113-0.121-0.0782-0.2089-0.1797-0.2636-0.3047s-0.0879-0.2676-0.0996-0.4278c-0.0078-0.1601-0.0118-0.3242-0.0118-0.4921v-5.2032h-0.5976c-0.1563 0-0.3145-0.00586-0.4746-0.01758-0.1563-0.01563-0.2988-0.05078-0.4278-0.10547-0.1289-0.05469-0.2343-0.13672-0.3164-0.24609-0.0781-0.11328-0.1171-0.26758-0.1171-0.46289 0-0.19922 0.039-0.35352 0.1171-0.46289 0.0821-0.11329 0.1875-0.19727 0.3164-0.25196 0.129-0.05468 0.2715-0.08789 0.4278-0.09961 0.1601-0.01172 0.3183-0.01757 0.4746-0.01757h2.9766zm5.3789 0c0.1562 0 0.3144 0.00585 0.4746 0.01757 0.1601 0.01172 0.3047 0.04493 0.4336 0.09961 0.1289 0.05469 0.2343 0.13867 0.3164 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19921-0.041 0.35547-0.123 0.46875-0.0821 0.10937-0.1875 0.1914-0.3164 0.24609s-0.2735 0.08789-0.4336 0.09961c-0.1602 0.01172-0.3184 0.01758-0.4746 0.01758h-1.3946v1.5938h0.7383c0.1563 0 0.3125 0.00586 0.4688 0.01758 0.1601 0.00781 0.3007 0.03906 0.4218 0.09375 0.125 0.05078 0.2266 0.13086 0.3047 0.24023 0.0781 0.10547 0.1172 0.25391 0.1172 0.44531 0 0.19534-0.0391 0.34574-0.1172 0.45114-0.0781 0.1055-0.1797 0.1856-0.3047 0.2403-0.1211 0.0508-0.2617 0.082-0.4218 0.0937-0.1563 0.0078-0.3125 0.0117-0.4688 0.0117h-0.7383v1.6875h1.3946c0.1562 0 0.3144 0.0059 0.4746 0.0176 0.1601 0.0117 0.3047 0.0449 0.4336 0.0996 0.1289 0.0508 0.2343 0.1328 0.3164 0.2461 0.082 0.1094 0.123 0.2617 0.123 0.457 0 0.2032-0.0429 0.3614-0.1289 0.4747-0.082 0.1132-0.1875 0.1972-0.3164 0.2519s-0.2734 0.0879-0.4336 0.0996c-0.1601 0.0117-0.3164 0.0176-0.4687 0.0176h-2.2969c-0.2188 0-0.3887-0.0391-0.5098-0.1172-0.1172-0.0781-0.2031-0.1797-0.2578-0.3047-0.0547-0.1289-0.0879-0.2734-0.0996-0.4336-0.0078-0.1601-0.0117-0.3242-0.0117-0.4922v-5.5078c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773 0.0547-0.12891 0.1406-0.23242 0.2578-0.31055 0.1211-0.07812 0.291-0.11718 0.5098-0.11718h2.2969zm5.1562 0c0.3555 0 0.6856 0.04492 0.9902 0.13476 0.3086 0.08984 0.5762 0.22461 0.8028 0.4043 0.2305 0.17578 0.4101 0.39648 0.539 0.66211 0.1329 0.26562 0.1993 0.57617 0.1993 0.93164v3.6328c0 0.3047-0.0332 0.5742-0.0996 0.8086-0.0665 0.2305-0.1543 0.4316-0.2637 0.6035-0.1055 0.168-0.2266 0.3125-0.3633 0.4336-0.1367 0.1172-0.2754 0.2129-0.416 0.2871-0.336 0.1797-0.7168 0.2813-1.1426 0.3047h-1.9453c-0.2227 0-0.3945-0.0371-0.5156-0.1113-0.1211-0.0782-0.209-0.1797-0.2637-0.3047-0.0547-0.1289-0.0879-0.2735-0.0996-0.4336-0.0078-0.1602-0.0117-0.3262-0.0117-0.4981v-5.5195c0-0.16797 0.0039-0.33203 0.0117-0.49219 0.0117-0.16015 0.0449-0.30273 0.0996-0.42773s0.1426-0.22461 0.2637-0.29883c0.1211-0.07812 0.2929-0.11718 0.5156-0.11718h1.6992zm-0.8086 1.3711v5.4375h0.7617c0.168-0.0078 0.3184-0.0469 0.4512-0.1172 0.0547-0.0274 0.1094-0.0645 0.1641-0.1113 0.0547-0.0469 0.1035-0.1016 0.1465-0.1641 0.0429-0.0664 0.0761-0.1445 0.0996-0.2344 0.0273-0.0898 0.041-0.1933 0.041-0.3105v-3.4571c0-0.12891-0.0137-0.24219-0.041-0.33985-0.0235-0.10156-0.0567-0.18945-0.0996-0.26367-0.043-0.07422-0.0918-0.13672-0.1465-0.1875s-0.1094-0.0918-0.1641-0.12304c-0.1328-0.07422-0.2832-0.11719-0.4512-0.12891h-0.7617z" fill="#312E2A"></path><defs><filter id="t-b" x="2" y="0" width="65" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18363"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18363" result="shape"></feBlend></filter><linearGradient id="t-a" x1="5" x2="64" y1="21" y2="21" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FFD600"></stop><stop offset="1" stop-color="#FFFA76"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Drift Hunters</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/drift-hunters/cover-1656950639575.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Drift Hunters" srcSet="https://images.crazygames.com/games/drift-hunters/cover-1656950639575.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/drift-hunters/cover-1656950639575.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/drift-hunters/cover-1656950639575.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/drift-hunters/cover-1656950639575.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/drift-hunters/cover-1656950639575.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/drift-hunters/cover-1656950639575.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/drift-hunters/cover-1656950639575.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/super-bike-the-champion"><div class="gameThumbTitleContainer">Super Bike The Champion</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/super-bike-the-champion/cover-1657186732013.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Super Bike The Champion" srcSet="https://images.crazygames.com/games/super-bike-the-champion/cover-1657186732013.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/super-bike-the-champion/cover-1657186732013.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/super-bike-the-champion/cover-1657186732013.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/super-bike-the-champion/cover-1657186732013.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/super-bike-the-champion/cover-1657186732013.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/super-bike-the-champion/cover-1657186732013.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/super-bike-the-champion/cover-1657186732013.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/mx-offroad-master"><div class="gameThumbTitleContainer">MX Offroad Master</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/mx-offroad-master/20230206090722/mx-offroad-master-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="MX Offroad Master" srcSet="https://images.crazygames.com/mx-offroad-master/20230206090722/mx-offroad-master-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/mx-offroad-master/20230206090722/mx-offroad-master-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/mx-offroad-master/20230206090722/mx-offroad-master-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/mx-offroad-master/20230206090722/mx-offroad-master-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/mx-offroad-master/20230206090722/mx-offroad-master-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/mx-offroad-master/20230206090722/mx-offroad-master-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/mx-offroad-master/20230206090722/mx-offroad-master-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/super-star-car"><div class="gameThumbTitleContainer">Super Star Car</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/super-star-car/cover-1657186689644.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Super Star Car" srcSet="https://images.crazygames.com/games/super-star-car/cover-1657186689644.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/super-star-car/cover-1657186689644.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/super-star-car/cover-1657186689644.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/super-star-car/cover-1657186689644.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/super-star-car/cover-1657186689644.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/super-star-car/cover-1657186689644.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/super-star-car/cover-1657186689644.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li></ul><button class="arrow css-1pzb6vf" aria-label="Right arrow"></button></div></div><div class="css-1la1o8y"><div class="titleContainer css-18689kv"><h2 class="carouselTitle">Sports Games</h2><a class="carouselTitleLink" href="https://www.crazygames.com/c/sports">View more</a></div><div class="prime-carousel css-1nehx92"><ul class="prime-carousel-container css-lpurl3"><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/basketball-stars-2019"><div class="gameThumbTitleContainer">Basketball Stars</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/basketball-stars-2019/cover-1583231506155.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Basketball Stars" srcSet="https://images.crazygames.com/games/basketball-stars-2019/cover-1583231506155.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/basketball-stars-2019/cover-1583231506155.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/basketball-stars-2019/cover-1583231506155.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/basketball-stars-2019/cover-1583231506155.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/basketball-stars-2019/cover-1583231506155.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/basketball-stars-2019/cover-1583231506155.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/basketball-stars-2019/cover-1583231506155.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/tap-tap-shots"><div class="gameThumbTitleContainer">Tap-Tap Shots</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/tap-tap-shots/cover-1655202548222.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Tap-Tap Shots" srcSet="https://images.crazygames.com/games/tap-tap-shots/cover-1655202548222.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/tap-tap-shots/cover-1655202548222.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/tap-tap-shots/cover-1655202548222.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/tap-tap-shots/cover-1655202548222.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/tap-tap-shots/cover-1655202548222.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/tap-tap-shots/cover-1655202548222.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/tap-tap-shots/cover-1655202548222.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/crazy-flips-3d"><div class="gameThumbTitleContainer">Crazy Flips 3D</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/crazy-flips-3d/cover-1655209115914.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Crazy Flips 3D" srcSet="https://images.crazygames.com/games/crazy-flips-3d/cover-1655209115914.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/crazy-flips-3d/cover-1655209115914.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/crazy-flips-3d/cover-1655209115914.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/crazy-flips-3d/cover-1655209115914.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/crazy-flips-3d/cover-1655209115914.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/crazy-flips-3d/cover-1655209115914.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/crazy-flips-3d/cover-1655209115914.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/basketbros"><div class="gameThumbTitleContainer">BasketBros</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/basketbros/cover-1586360611838.jpg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="BasketBros" srcSet="https://images.crazygames.com/games/basketbros/cover-1586360611838.jpg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/basketbros/cover-1586360611838.jpg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/basketbros/cover-1586360611838.jpg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/basketbros/cover-1586360611838.jpg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/basketbros/cover-1586360611838.jpg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/basketbros/cover-1586360611838.jpg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/basketbros/cover-1586360611838.jpg?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/soccer-legends-2021"><div class="gameThumbTitleContainer">Soccer Legends 2021</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/soccer-legends-2021/cover-1619606990485.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Soccer Legends 2021" srcSet="https://images.crazygames.com/games/soccer-legends-2021/cover-1619606990485.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/soccer-legends-2021/cover-1619606990485.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/soccer-legends-2021/cover-1619606990485.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/soccer-legends-2021/cover-1619606990485.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/soccer-legends-2021/cover-1619606990485.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/soccer-legends-2021/cover-1619606990485.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/soccer-legends-2021/cover-1619606990485.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/8-ball-billiards-classic"><div class="gameThumbTitleContainer">8 Ball Billiards Classic</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/8-ball-billiards-classic/cover-1663856160911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="8 Ball Billiards Classic" srcSet="https://images.crazygames.com/games/8-ball-billiards-classic/cover-1663856160911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/8-ball-billiards-classic/cover-1663856160911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/8-ball-billiards-classic/cover-1663856160911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/8-ball-billiards-classic/cover-1663856160911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/8-ball-billiards-classic/cover-1663856160911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/8-ball-billiards-classic/cover-1663856160911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/8-ball-billiards-classic/cover-1663856160911.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/basket-random"><div class="gameThumbTitleContainer">Basket Random</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/basket-random/20230126094209/basket-random-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Basket Random" srcSet="https://images.crazygames.com/basket-random/20230126094209/basket-random-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/basket-random/20230126094209/basket-random-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/basket-random/20230126094209/basket-random-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/basket-random/20230126094209/basket-random-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/basket-random/20230126094209/basket-random-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/basket-random/20230126094209/basket-random-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/basket-random/20230126094209/basket-random-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/basketball-skills"><svg width="34" height="27" viewBox="0 0 34 27" fill="none" xmlns="http://www.w3.org/2000/svg" style="position:absolute;z-index:4;left:-5px;top:-4px;opacity:1;transition:opacity 0.2s linear"><g filter="url(#hot-b)"><path d="M5 0H20.5C26.299 0 31 4.70101 31 10.5C31 16.299 26.299 21 20.5 21H5V0Z" fill="url(#hot-a)"></path></g><path d="M0 4C0 1.79086 1.79086 0 4 0H5V24H0V4Z" fill="#FF7A00"></path><path d="m5 27h-2c-1.6568 0-3-1.3431-3-3 1.4485e-7 -1.6569 1.3432-3 3-3h2v6z" fill="#B05500"></path><path d="m5.8555 7.1445c0-0.16797 0.00781-0.33203 0.02344-0.49219 0.01562-0.16015 0.05273-0.30273 0.11132-0.42773 0.0625-0.12891 0.15235-0.23242 0.26954-0.31055 0.11718-0.07812 0.27929-0.11718 0.48632-0.11718 0.20313 0 0.36329 0.03906 0.48047 0.11718 0.1211 0.07813 0.21094 0.18164 0.26953 0.31055 0.0625 0.125 0.10157 0.26758 0.11719 0.42773 0.01563 0.16016 0.02344 0.32422 0.02344 0.49219v1.8398h1.6055v-1.8398c0-0.16797 0.00781-0.33203 0.02343-0.49219 0.01563-0.16015 0.05274-0.30273 0.11133-0.42773 0.0625-0.12891 0.15235-0.23242 0.26953-0.31055 0.11719-0.07812 0.2793-0.11718 0.48632-0.11718 0.2031 0 0.3633 0.03906 0.4805 0.11718 0.1211 0.07813 0.2109 0.18164 0.2695 0.31055 0.0625 0.125 0.1016 0.26758 0.1172 0.42773 0.0156 0.16016 0.0234 0.32422 0.0234 0.49219v5.5078c0 0.1719-0.0078 0.3379-0.0234 0.4981-0.0156 0.1601-0.0547 0.3047-0.1172 0.4336-0.0586 0.125-0.1484 0.2265-0.2695 0.3047-0.1172 0.0742-0.2774 0.1113-0.4805 0.1113-0.20702 0-0.36913-0.0371-0.48632-0.1113-0.11718-0.0782-0.20703-0.1797-0.26953-0.3047-0.05859-0.1289-0.0957-0.2735-0.11133-0.4336-0.01562-0.1602-0.02343-0.3262-0.02343-0.4981v-1.9453h-1.6055v1.9453c0 0.1719-0.00781 0.3379-0.02344 0.4981-0.01562 0.1601-0.05469 0.3047-0.11719 0.4336-0.05859 0.125-0.14843 0.2265-0.26953 0.3047-0.11718 0.0742-0.27734 0.1113-0.48047 0.1113-0.20703 0-0.36914-0.0371-0.48632-0.1113-0.11719-0.0782-0.20704-0.1797-0.26954-0.3047-0.05859-0.1289-0.0957-0.2735-0.11132-0.4336-0.01563-0.1602-0.02344-0.3262-0.02344-0.4981v-5.5078zm6.5859 0.97266c0-0.375 0.0547-0.69336 0.1641-0.95508 0.1093-0.26563 0.248-0.48633 0.416-0.66211 0.1719-0.17578 0.3594-0.3125 0.5625-0.41016 0.207-0.10156 0.4062-0.17773 0.5976-0.22851 0.1954-0.05078 0.3711-0.08203 0.5274-0.09375 0.1562-0.01172 0.2715-0.01758 0.3457-0.01758h0.1992c0.0742 0 0.1895 0.00586 0.3457 0.01758 0.1563 0.01172 0.3301 0.04297 0.5215 0.09375s0.3887 0.12695 0.5918 0.22851c0.207 0.09766 0.3926 0.23438 0.5566 0.41016 0.168 0.17578 0.3047 0.39648 0.4102 0.66211 0.1094 0.26172 0.1641 0.58008 0.1641 0.95508v3.5039c0 0.3867-0.0547 0.7148-0.1641 0.9844-0.1055 0.2695-0.2422 0.4941-0.4102 0.6738-0.164 0.1797-0.3496 0.3223-0.5566 0.4277-0.2031 0.1016-0.4004 0.1778-0.5918 0.2285-0.1914 0.0508-0.3652 0.0821-0.5215 0.0938-0.1562 0.0117-0.2715 0.0176-0.3457 0.0176h-0.1992c-0.0742 0-0.1895-0.0059-0.3457-0.0176-0.1563-0.0117-0.332-0.043-0.5274-0.0938-0.1914-0.0507-0.3906-0.1269-0.5976-0.2285-0.2031-0.1054-0.3906-0.248-0.5625-0.4277-0.168-0.1797-0.3067-0.4043-0.416-0.6738-0.1094-0.2696-0.1641-0.5977-0.1641-0.9844v-3.5039zm1.9453 3.7266c0.0078 0.1445 0.041 0.2714 0.0996 0.3808 0.0508 0.0977 0.127 0.1856 0.2285 0.2637 0.1055 0.0781 0.254 0.1172 0.4454 0.1172 0.1875 0 0.332-0.0391 0.4336-0.1172 0.1015-0.0781 0.1777-0.166 0.2285-0.2637 0.0547-0.1094 0.0879-0.2363 0.0996-0.3808v-3.8204c-0.0117-0.14063-0.0449-0.26758-0.0996-0.38086-0.0508-0.09375-0.127-0.17969-0.2285-0.25781-0.1016-0.08204-0.2461-0.12305-0.4336-0.12305-0.1914 0-0.3399 0.04101-0.4454 0.12305-0.1015 0.07812-0.1777 0.16406-0.2285 0.25781-0.0586 0.11328-0.0918 0.24023-0.0996 0.38086v3.8204zm8.4258-6.0469c0.1563 0 0.3125 0.00585 0.4687 0.01757 0.1602 0.01172 0.3047 0.04493 0.4336 0.09961 0.129 0.05469 0.2325 0.13867 0.3106 0.25196 0.082 0.10937 0.123 0.26367 0.123 0.46289 0 0.19531-0.041 0.34961-0.123 0.46289-0.0781 0.10937-0.1816 0.1914-0.3106 0.24609-0.1289 0.05469-0.2734 0.08984-0.4336 0.10547-0.1562 0.01172-0.3124 0.01758-0.4687 0.01758h-0.5977v5.2032c0 0.1679-0.0058 0.332-0.0175 0.4921-0.0078 0.1602-0.0391 0.3028-0.0938 0.4278s-0.1426 0.2265-0.2637 0.3047c-0.121 0.0742-0.2929 0.1113-0.5156 0.1113-0.2226 0-0.3945-0.0371-0.5156-0.1113-0.1211-0.0782-0.209-0.1797-0.2637-0.3047s-0.0879-0.2676-0.0996-0.4278c-0.0078-0.1601-0.0117-0.3242-0.0117-0.4921v-5.2032h-0.5977c-0.1562 0-0.3144-0.00586-0.4746-0.01758-0.1562-0.01563-0.2988-0.05078-0.4277-0.10547s-0.2344-0.13672-0.3164-0.24609c-0.0781-0.11328-0.1172-0.26758-0.1172-0.46289 0-0.19922 0.0391-0.35352 0.1172-0.46289 0.082-0.11329 0.1875-0.19727 0.3164-0.25196 0.1289-0.05468 0.2715-0.08789 0.4277-0.09961 0.1602-0.01172 0.3184-0.01757 0.4746-0.01757h2.9766z" fill="#fff"></path><defs><filter id="hot-b" x="2" y="0" width="32" height="27" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"></feColorMatrix><feOffset dy="3"></feOffset><feGaussianBlur stdDeviation="1.5"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"></feColorMatrix><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_347_18385"></feBlend><feBlend in="SourceGraphic" in2="effect1_dropShadow_347_18385" result="shape"></feBlend></filter><linearGradient id="hot-a" x1="5" x2="31" y1="21" y2="21" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#FF7A00"></stop><stop offset="1" stop-color="#FF3D00"></stop></linearGradient></defs></svg><div class="gameThumbTitleContainer">Basketball Skills</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/games/basketball-skills/cover-1680036451833.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Basketball Skills" srcSet="https://images.crazygames.com/games/basketball-skills/cover-1680036451833.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/games/basketball-skills/cover-1680036451833.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/games/basketball-skills/cover-1680036451833.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/games/basketball-skills/cover-1680036451833.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/games/basketball-skills/cover-1680036451833.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/games/basketball-skills/cover-1680036451833.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/games/basketball-skills/cover-1680036451833.png?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/penalty-shooters-2"><div class="gameThumbTitleContainer">Penalty Shooters 2</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/penalty-shooters-2/20220816185952/penalty-shooters-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Penalty Shooters 2" srcSet="https://images.crazygames.com/penalty-shooters-2/20220816185952/penalty-shooters-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/penalty-shooters-2/20220816185952/penalty-shooters-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/penalty-shooters-2/20220816185952/penalty-shooters-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/penalty-shooters-2/20220816185952/penalty-shooters-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/penalty-shooters-2/20220816185952/penalty-shooters-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/penalty-shooters-2/20220816185952/penalty-shooters-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/penalty-shooters-2/20220816185952/penalty-shooters-2-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/drunken-boxers"><div class="gameThumbTitleContainer">Drunken Boxing</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/drunken-boxers/20230131112009/drunken-boxers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="Drunken Boxing" srcSet="https://images.crazygames.com/drunken-boxers/20230131112009/drunken-boxers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/drunken-boxers/20230131112009/drunken-boxers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/drunken-boxers/20230131112009/drunken-boxers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,
https://images.crazygames.com/drunken-boxers/20230131112009/drunken-boxers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=224&h=126&fit=crop 225w,
https://images.crazygames.com/drunken-boxers/20230131112009/drunken-boxers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=252&h=142&fit=crop 253w,
https://images.crazygames.com/drunken-boxers/20230131112009/drunken-boxers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=329&h=185&fit=crop 330w,
https://images.crazygames.com/drunken-boxers/20230131112009/drunken-boxers-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=336&h=189&fit=crop 337w" sizes="(min-width:3000px) 336px,
(min-width:2100px) 329px,
(min-width:1200px) 252px,
(min-width:1000px) 206px,
(min-width:800px) 209px,
(min-width:600px) 215px,
224px"/></a></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li><li class="primeCarouselLi"><span class="MuiSkeleton-root MuiSkeleton-rectangular MuiSkeleton-pulse skeleton css-a60ex1" style="width:calc(100% - 2px);height:calc(100% - 2px)"></span></li></ul><button class="arrow css-1pzb6vf" aria-label="Right arrow"></button></div></div><div class="css-1la1o8y"><div class="titleContainer css-18689kv"><h2 class="carouselTitle">Shooting Games</h2><a class="carouselTitleLink" href="https://www.crazygames.com/c/shooting">View more</a></div><div class="prime-carousel css-1nehx92"><ul class="prime-carousel-container css-lpurl3"><li class="primeCarouselLi"><a class="css-196mb08" href="https://www.crazygames.com/game/buildnow-gg"><div class="gameThumbTitleContainer">BuildNow GG</div><img class="GameThumbImage" loading="lazy" src="https://images.crazygames.com/buildnow-gg/20210823164305/buildnow-gg-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&fit=crop" decoding="async" alt="BuildNow GG" srcSet="https://images.crazygames.com/buildnow-gg/20210823164305/buildnow-gg-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=206&h=116&fit=crop 207w,
https://images.crazygames.com/buildnow-gg/20210823164305/buildnow-gg-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=209&h=118&fit=crop 210w,
https://images.crazygames.com/buildnow-gg/20210823164305/buildnow-gg-cover?auto=format%2Ccompress&q=45&cs=strip&ch=DPR&w=215&h=121&fit=crop 216w,