forked from y8online/y8online.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerge-cyber-racers.html
1469 lines (1467 loc) · 96.8 KB
/
merge-cyber-racers.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-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="cdn-cgi/apps/head/iXT4RNBRy9Gpkx8PGOHq-ztgEg8.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-R7RCGMLKN8"></script>
<title>Merge Cyber Racers</title>
<meta name="description" content="Merge Cyber Racers is a drifting game featuring simple mechanics.
Steer your car around tricky curves and corners and go as far as possible to get a high score.">
<meta name="title" content="Merge Cyber Racers">
<meta name="keywords" content="Merge Cyber Racers">
<meta name="news_keywords" content="Merge Cyber Racers">
<link rel="canonical" href="index.html">
<link rel="icon" href="upload/imgs/options/drift-boss-favi.png" />
<meta property="og:title" content="Merge Cyber Racers" itemprop="headline" />
<meta property="og:type" content="website" />
<meta property="og:url" itemprop="url" content="https://driftboss.co/" />
<meta property="og:image" itemprop="thumbnailUrl" content="/upload/imgs/options/drift-boss.jpg" />
<meta property="og:description" content="Merge Cyber Racers is a drifting game featuring simple mechanics.
Steer your car around tricky curves and corners and go as far as possible to get a high score." itemprop="description" />
<meta property="og:site_name" content="Merge Cyber Racers" />
<link rel="apple-touch-icon" href="upload/imgs/options/drift-boss-favi.png" />
<meta name="twitter:title" content="Merge Cyber Racers" />
<meta name="twitter:url" content="https://driftboss.co/" />
<meta name="twitter:image" content="/upload/imgs/options/drift-boss.jpg" />
<meta name="twitter:description" content="Merge Cyber Racers is a drifting game featuring simple mechanics.
Steer your car around tricky curves and corners and go as far as possible to get a high score." />
<meta name="twitter:card" content="summary" />
<link rel="preconnect" href="https://fonts.gstatic.com/">
<link href="https://fonts.googleapis.com/css2?family=Catamaran:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="themes/driftboss.co/rs/css/reboot.css">
<link rel="stylesheet" href="themes/driftboss.co/rs/css/grid.css">
<link rel="stylesheet" href="themes/driftboss.co/rs/css/body-style3860.css?v=1">
<script data-ad-client="ca-pub-8564444292475105" async src="../pagead2.googlesyndication.com/pagead/js/f.txt"></script>
</head>
<body>
<a href="index.html" id="back_to_top" style="">
<img src="themes/driftboss.co/rs/imgs/btn_top.png" alt="btn to top" />
</a>
<div class="driftbossco-header-frame">
<div class="container-fluid pr-15 pl-15">
<div class="driftbossco-header-content">
<div class="driftbossco-left">
<div class="driftbossco-logo">
<a href="index.html">
<img loading="lazy" src="upload/imgs/options/drift-boss-logo.jpg" alt="Drift Boss" title="Drift Boss">
</a>
</div>
<div class="driftbossco-menu-header">
<ul style="list-style: none;">
<li><a href="index.html">Drift Boss </a></li>
<li><a href="best-games.html">Hot Games </a></li>
<li><a href="new-games.html">New Games </a></li>
<li><a href="category/car-games.html">Car Games </a></li>
<li><a href="category/motorbike-games.html">Moto X3M </a></li>
</ul>
</div>
</div>
<div class="driftbossco-right">
<span id="driftbossco-pull">
<svg height="384pt" viewBox="0 -53 384 384" width="384pt" xmlns="http://www.w3.org/2000/svg">
<path d="m368 154.667969h-352c-8.832031 0-16-7.167969-16-16s7.167969-16 16-16h352c8.832031 0 16 7.167969 16 16s-7.167969 16-16 16zm0 0" />
<path d="m368 32h-352c-8.832031 0-16-7.167969-16-16s7.167969-16 16-16h352c8.832031 0 16 7.167969 16 16s-7.167969 16-16 16zm0 0" />
<path d="m368 277.332031h-352c-8.832031 0-16-7.167969-16-16s7.167969-16 16-16h352c8.832031 0 16 7.167969 16 16s-7.167969 16-16 16zm0 0" />
</svg>
</span>
<div class="driftbossco-formsearch">
<form method="get" action="https://driftboss.co/search" id="search">
<input id="driftbossco-input-search" name="keywords" type="text" placeholder="Search here..." class="inputsearch" />
<button id="driftbossco-search-button" type="submit" class="fa fa-search">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<path d="M508.874,478.708L360.142,329.976c28.21-34.827,45.191-79.103,45.191-127.309c0-111.75-90.917-202.667-202.667-202.667
S0,90.917,0,202.667s90.917,202.667,202.667,202.667c48.206,0,92.482-16.982,127.309-45.191l148.732,148.732
c4.167,4.165,10.919,4.165,15.086,0l15.081-15.082C513.04,489.627,513.04,482.873,508.874,478.708z M202.667,362.667
c-88.229,0-160-71.771-160-160s71.771-160,160-160s160,71.771,160,160S290.896,362.667,202.667,362.667z" />
</svg>
</button>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="driftbossco-menu-header-mobile">
<a href="javascript:void(0)" class="driftbossco-btn-unset" onclick="driftbosscounset()">×</a>
<ul style="list-style: none; padding: 10px;">
<li><a href="index.html">Drift Boss </a></li>
<li><a href="best-games.html">Hot Games </a></li>
<li><a href="new-games.html">New Games </a></li>
<li><a href="category/car-games.html">Car Games </a></li>
<li><a href="category/motorbike-games.html">Moto X3M </a></li>
<li>
<div class="driftbossco-formsearch">
<form method="get" action="https://driftboss.co/search" id="search">
<input id="driftbossco-input-search" name="keywords" type="text" placeholder="Search here..." class="inputsearch" />
<button id="driftbossco-search-button" type="submit" class="fa fa-search">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
<path d="M508.874,478.708L360.142,329.976c28.21-34.827,45.191-79.103,45.191-127.309c0-111.75-90.917-202.667-202.667-202.667
S0,90.917,0,202.667s90.917,202.667,202.667,202.667c48.206,0,92.482-16.982,127.309-45.191l148.732,148.732
c4.167,4.165,10.919,4.165,15.086,0l15.081-15.082C513.04,489.627,513.04,482.873,508.874,478.708z M202.667,362.667
c-88.229,0-160-71.771-160-160s71.771-160,160-160s160,71.771,160,160S290.896,362.667,202.667,362.667z" />
</svg>
</button>
</form>
</div>
</li>
</ul>
</div>
<script type="application/ld+json">[{"@context":"https:\/\/schema.org","@type":"SoftwareApplication","name":"Merge Cyber Racers","url":"https:\/\/driftboss.co\/drift-boss","author":{"@type":"Organization","name":"Merge Cyber Racers"},"description":"Merge Cyber Racers is a drifting game featuring simple mechanics. Steer your car around tricky curves and corners and go as far as possible to get a high score.","applicationCategory":"GameApplication","operatingSystem":"any","aggregateRating":{"@type":"AggregateRating","worstRating":1,"bestRating":5,"ratingValue":"4.5","ratingCount":"1431"},"image":"https:\/\/driftboss.co\/upload\/imgs\/drift-boss.jpg","offers":{"@type":"Offer","category":"free","price":0,"priceCurrency":"USD"}},{"@context":"https:\/\/schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Merge Cyber Racers","item":"https:\/\/driftboss.co"}]}]</script>
<div class="container-fluid play-game-box p-3 p-sm-5 p-md-10 p-lg-0 pt-20">
<div class="row justify-content-center ">
<div class="col-xxl-4 d-none ads-play-left p-side-ads">
<div class="ads-play right">
<div class="ads">
<div class="ads-title">Advertisement</div>
<div class="ads-content">
<script async src="../pagead2.googlesyndication.com/pagead/js/f7078.txt?client=ca-pub-8564444292475105" crossorigin="anonymous">
</script><ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8564444292475105" data-ad-slot="4242330558" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
</div>
</div>
</div>
</div>
<div class="col-xxl-2 d-none d-xxl-block p-side">
<div class="row justify-content-center">
<div class="col-12 col-sm-8 col-md-6 col-lg-24 col-xl-24 col-xxl-24 d-flex justify-content-center sides-games">
<div class="cr-item ">
<a href="1v1lol.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/1v1-lol-m144x144.jpg" title="1v1 LOL" alt="1v1 LOL">
</div>
<div class="cr-info cr-info-side">
<span>1v1 LOL</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-8 col-md-6 col-lg-24 col-xl-24 col-xxl-24 d-flex justify-content-center sides-games">
<div class="cr-item ">
<a href="among-us.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/among-us-m144x144.jpg" title="Among Us" alt="Among Us">
</div>
<div class="cr-info cr-info-side">
<span>Among Us</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-8 col-md-6 col-lg-24 col-xl-24 col-xxl-24 d-flex justify-content-center sides-games">
<div class="cr-item ">
<a href="angry-gran-run.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/angry-gran-run-m144x144.jpg" title="Angry Gran Run" alt="Angry Gran Run">
</div>
<div class="cr-info cr-info-side">
<span>Angry Gran Run</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-8 col-md-6 col-lg-24 col-xl-24 col-xxl-24 d-flex justify-content-center sides-games">
<div class="cr-item ">
<a href="burnin-rubber-5-xs.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/burnin-rubber-5-xs-m144x144.jpg" title="Burnin Rubber 5 Xs" alt="Burnin Rubber 5 Xs">
</div>
<div class="cr-info cr-info-side">
<span>Burnin Rubber 5 Xs</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-8 col-md-6 col-lg-24 col-xl-24 col-xxl-24 d-flex justify-content-center sides-games">
<div class="cr-item ">
<a href="eggy-car.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/eggy-car-m144x144.jpg" title="Eggy Car" alt="Eggy Car">
</div>
<div class="cr-info cr-info-side">
<span>Eggy Car</span>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="col-24 col-sm-24 col-md-24 col-lg-18 col-xl-19 col-xxl-17 ">
<div class="game-play">
<div class="driftbossco p-3 p-xl-5">
<div class="driftbossco-body">
<div class="play-box" style=" width: 100% ; height: 700px ; ">
<iframe id="iframe_game_play" class="box-padding" style=" width: 100% ; height: 100%; " src="https://ubg77.github.io/edit/merge-cyber-racers/" frameborder="0" border="0" scrolling="no" class="iframe-default" allowfullscreen></iframe>
</div>
</div>
<div class="title-box">
<div class="title-game">
<div class="rate_fullscreen">
<div class="rate_fullscreen-block">
<div class="rate-block">
<link rel="stylesheet" href="themes/driftboss.co/rs/css/rating-style.css">
<script type="text/javascript">
var dir_theme = 'themes/driftboss.co/index.html';
var domain_url = 'index.html';
</script>
<script src="themes/driftboss.co/rs/js/rating.js"></script>
</div>
<div class="full-screen-btn">
<div class="full-screen-icon" id="expand"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="d-xxl-none">
<div class="d-xl-block d-xxl-none">
<div class="ads">
<div class="ads-title">Advertisement</div>
<div class="ads-content">
<script async src="../pagead2.googlesyndication.com/pagead/js/f7078.txt?client=ca-pub-8564444292475105" crossorigin="anonymous"></script>
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8564444292475105" data-ad-slot="1807738905" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-8 col-sm-8 col-md-4 col-lg-4 col-xl-4 d-flex justify-content-center sides-games">
<div class="cr-item">
<a href="1v1lol.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/retro-bowl-m240x240.jpg" title="1v1 LOL" alt="1v1 LOL">
</div>
<div class="cr-info">
<span>1v1 LOL</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-8 col-sm-8 col-md-4 col-lg-4 col-xl-4 d-flex justify-content-center sides-games">
<div class="cr-item">
<a href="among-us.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/among-us-m144x144.jpg" title="Among Us" alt="Among Us">
</div>
<div class="cr-info">
<span>Among Us</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-8 col-sm-8 col-md-4 col-lg-4 col-xl-4 d-flex justify-content-center sides-games">
<div class="cr-item">
<a href="angry-gran-run.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/angry-gran-run-m144x144.jpg" title="Angry Gran Run" alt="Angry Gran Run">
</div>
<div class="cr-info">
<span>Angry Gran Run</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-8 col-sm-8 col-md-4 col-lg-4 col-xl-4 d-flex justify-content-center sides-games">
<div class="cr-item">
<a href="burnin-rubber-5-xs.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/burnin-rubber-5-xs-m144x144.jpg" title="Burnin Rubber 5 Xs" alt="Burnin Rubber 5 Xs">
</div>
<div class="cr-info">
<span>Burnin Rubber 5 Xs</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-12 col-sm-8 col-md-6 col-lg-24 col-xl-24 col-xxl-24 d-flex justify-content-center sides-games">
<div class="cr-item ">
<a href="drift-hunters.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/drift-hunters1-m144x144.jpg" title="Drift Hunters" alt="Drift Hunters">
</div>
<div class="cr-info cr-info-side">
<span>Drift Hunters</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="col-8 col-sm-8 col-md-4 col-lg-4 col-xl-4 d-flex justify-content-center sides-games">
<div class="cr-item">
<a href="eggy-car.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/eggy-car-m240x240.jpg" title="Eggy Car" alt="Eggy Car">
</div>
<div class="cr-info">
<span>Eggy Car</span>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="d-lg-none">
<div class="ads">
<div class="ads-title">Advertisement</div>
<div class="ads-content">
<script async src="../pagead2.googlesyndication.com/pagead/js/f7078.txt?client=ca-pub-8564444292475105" crossorigin="anonymous"></script>
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8564444292475105" data-ad-slot="1807738905" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
</div>
</div>
</div>
</div>
<div class="col-24 col-sm-24 col-md-24 col-lg-3 col-xl-2 col-xxl-2 d-none d-lg-block p-side">
<div class="row justify-content-center">
<div class="mb-10 mb-lg-0 col-12 col-sm-8 col-md-6 col-lg-24 col-xl-24 col-xxl-24 d-flex justify-content-center sides-games">
<div class="cr-item ">
<a href="drift-boss.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/drift-boss-math-playground-m144x144.jpg" title="Drift Boss" alt="Drift Boss">
</div>
<div class="cr-info cr-info-side">
<span>Drift Boss</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-12 col-sm-8 col-md-6 col-lg-24 col-xl-24 col-xxl-24 d-flex justify-content-center sides-games">
<div class="cr-item ">
<a href="madalin-stunt-cars-2.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/madalin-stunt-cars-m144x144.png" title="Madalin Stunt Cars 2" alt="Madalin Stunt Cars 2">
</div>
<div class="cr-info cr-info-side">
<span>Madalin Stunt Cars 2</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-12 col-sm-8 col-md-6 col-lg-24 col-xl-24 col-xxl-24 d-flex justify-content-center sides-games">
<div class="cr-item ">
<a href="slope-3.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/slope-3-m144x144.png" title="Slope 3" alt="Slope 3">
</div>
<div class="cr-info cr-info-side">
<span>Slope 3</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-12 col-sm-8 col-md-6 col-lg-24 col-xl-24 col-xxl-24 d-flex justify-content-center sides-games">
<div class="cr-item ">
<a href="tunnel-rush-2.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/tunnel-rush-m144x144.png" title="Tunnel Rush 2" alt="Tunnel Rush 2">
</div>
<div class="cr-info cr-info-side">
<span>Tunnel Rush 2</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-12 col-sm-8 col-md-6 col-lg-24 col-xl-24 col-xxl-24 d-flex justify-content-center sides-games">
<div class="cr-item ">
<a href="stickman-hook.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/stickman-boost-m144x144.jpg" title="Stickman Hook" alt="Stickman Hook">
</div>
<div class="cr-info cr-info-side">
<span>Stickman Hook</span>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="col-2 col-sm-2 col-md-2 col-lg-3 col-xl-3 col-xxl-3 d-none d-lg-block ads-play-right p-side-ads">
<div class="ads-play left">
<div class="ads">
<div class="ads-title">Advertisement</div>
<div class="ads-content">
<script async src="../pagead2.googlesyndication.com/pagead/js/f7078.txt?client=ca-pub-8564444292475105" crossorigin="anonymous"></script>
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8564444292475105" data-ad-slot="4242330558" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
</div>
</div>
<div class="d-none d-ms-none d-md-none d-lg-none d-xl-block d-xxl-none"></div>
</div>
</div>
</div>
</div>
<div class="container-fluid p-3 p-sm-5 p-md-10 p-lg-15 pt-20">
<div class="row justify-content-center">
<div class="col-24 col-sm-24 col-md-24 col-lg-24 col-xl-12 col-xxl-12 p-3 p-md-5 p-lg-5 p-xl-15 p-xxl-20">
<div class="driftbossco-panel-container " style="margin-top: 0 !important;">
<div class="driftbossco-content p-5 blue">
<div class="driftbossco-panel-heading">
<h2>About Merge Cyber Racers </h2>
</div>
<div class="game-detail ">
<div class="game-content">
<h3><strong>The gameplay</strong></h3>
<p><a href="index.html">Merge Cyber Racers</a> is a drifting game featuring simple mechanics.
Steer your car around tricky curves and corners and go as far as possible to get a high score.
</p>
<p>In this game, you will participate in a thrilling drifting race. In this game, you have to drive your cool to go on the endless track.
Your score is estimated based on the distance you have gone.
Therefore, do your best to go as far as possible to gain the highest possible score.
Watch out! This track is full of tricky curves and corners.
Therefore, you need to click the left mouse button or release it at the right time to perform perfect drifts.
Timing and precision are super important when you play this game.
If you click or release too late, your car will rush directly out of the racetrack.
Thus, you need to be careful. You can utilize some boosters to go further,
raise your score and increase the number of coins you collect.
</p>
<p>Besides, another mission is to gather all the golden coins which are scattered on the track.
They are also essential as you can use the coins to buy boosters
and cool cars such as an ice-cream car, a taxi, a police car, a van, a Merge Cyber Racers, or an ambulance.
These cars have different prices and upgrading handling. The more expensive the car is, the better handling it has.
</p>
<p>Don’t wait anymore! Play this thrilling game now to have moments of excitement.
Are you the best drifter? You can share it with your friends or relatives and play it together.
</p>
<h3><strong>How to control</strong></h3>
<p><strong>ON DESKTOP</strong></p>
<ul>
<li>Press the left mouse button or space bar to drift to the right, and release the button to go left.</li>
</ul>
<p><strong>ON MOBILE</strong></p>
<ul>
<li>Touch the screen to drift to the right, and release the screen to go left.</li>
</ul>
<p><strong>Platform</strong></p>
<ul><li>This game can be played unlocked in the web browser. It is accessed on both PC and mobile devices.</li></ul>
<h2><strong>More interesting facts about Merge Cyber Racers</strong></h2>
<h3><strong>Available boosters</strong></h3>
<p>At the start of the game, you are provided three boosters with different prices.
These boosters assist you a lot as the game progresses. You can use the coins you earned to purchase one of them.
Note that they are used for one run only. If you start another match, you need to purchase the boosters one more time.
Here’s the list of boosters in the game and their function.</p>
<ul>
<li>Double Score: It will double the score that you get. You have to pay 20 coins to buy it.</li>
<li>Car Insurance: This booster will give you a chance to revive. It means that if you unexpectedly fall off the track, you will respawn and continue your race. It costs 40 coins.</li>
<li>Coin Rush: If you want to get more coins, you need to use this booster. Its price is 60 coins.</li>
</ul>
<h3><strong>Daily Rewards</strong></h3>
<p><strong>Daily rewards are one of the benefits of this game. If you play this game every day, you will get many surprising rewards. Here they are.</strong></p>
<ul>
<li>Day 1: When you log in to the game on the first day, you will get 50 coins</li>
<li>Day 2: On the second day, you will claim 3 Double Score boosters</li>
<li>Day 3: Three Car Insurance boosters are the rewards for you on the third day</li>
<li>Day 4: You will obtain 3 Coin Rush boosters on the fourth day</li>
<li>Day 5: Keep playing this game for five days to gain 100 coins</li>
</ul>
<p>Another reward in this game is spin rewards. The lucky spin will appear at any point throughout the game.
You need to spin it to get a random reward. It may be a booster, coins, or better handling of automobiles.</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-24 col-sm-24 col-md-24 col-lg-24 col-xl-12 col-xxl-12 pl-3 p-3 p-md-5 p-lg-5 p-xl-15 p-xxl-20">
<div class="driftbossco-panel-container " style="margin-top: 0 !important;">
<div class="driftbossco-content p-5 blue">
<div class="driftbossco-panel-heading">
<span>Recommend For You </span>
</div>
<div class="first-ads">
<div class="ads">
<div class="ads-title">Advertisement</div>
<div class="ads-content">
<script async src="../pagead2.googlesyndication.com/pagead/js/f7078.txt?client=ca-pub-8564444292475105" crossorigin="anonymous"></script>
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8564444292475105" data-ad-slot="1807738905" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
</div>
</div>
</div>
<div class="driftbossco-panel-body-content">
<div class="more-game-content">
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="3d-free-kick.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/3dfreekick/logo.jpg" title="3D Free Kick" alt="3D Free Kick">
</div>
<div class="cr-info">
<span>3D Free Kick</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="slope-3.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/slope-3-m240x240.png" title="Slope 3" alt="Slope 3">
</div>
<div class="cr-info">
<span>Slope 3</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="archery-world-tour.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/archeryworldtour/archery-world-tour.png" title="Archery World Tour" alt="Archery World Tour">
</div>
<div class="cr-info">
<span>Archery World Tour</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="b-cubed.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/bcubed/b-cubed.png" title="B-Cubed" alt="B-Cubed">
</div>
<div class="cr-info">
<span>B-Cubed</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="ball-sort-puzzle.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/ballsortpuzzle/ball-sort-puzzle.png" title="Ball Sort Puzzle" alt="Ball Sort Puzzle">
</div>
<div class="cr-info">
<span>Ball Sort Puzzle</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="bejeweled.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/bejeweled/bejeweled.png" title="Bejeweled" alt="Bejeweled">
</div><div class="cr-info">
<span>Bejeweled</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="best-link.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/bestlink/best-link.png" title="Best Link" alt="Best Link">
</div>
<div class="cr-info">
<span>Best Link</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="block-champ.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/blockchamp/block-champ.png" title="Block Champ" alt="Block Champ">
</div>
<div class="cr-info">
<span>Block Champ</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="block-puzzle-jewel.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/blockpuzzlejewel/block-puzzle-jewel.png" title="Block Puzzle Jewel " alt="Block Puzzle Jewel ">
</div>
<div class="cr-info">
<span>Block Puzzle Jewel </span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="block-puzzle.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/blockpuzzle/block-puzzle.png" title="Block Puzzle" alt="Block Puzzle">
</div>
<div class="cr-info">
<span>Block Puzzle</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="block-the-pig.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/blockthepig/blockthepig.jpg" title="Block The Pig" alt="Block The Pig">
</div>
<div class="cr-info">
<span>Block The Pig</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="blue-box.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/bluebox/blue-box.png" title="Blue Box" alt="Blue Box">
</div>
<div class="cr-info">
<span>Blue Box</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="bob-the-robber-4.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/bobtherobber4/bob-the-robber-4.png" title="Bob The Robber 4" alt="Bob The Robber 4">
</div>
<div class="cr-info">
<span>Bob The Robber 4</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="merge-round-racers.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/merge-round-racers1-m240x240.png" title="Merge Round Racers" alt="Merge Round Racers">
</div>
<div class="cr-info">
<span>Merge Round Racers</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="bubble-tower-3d.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/bubbletower3d/bubble-tower-3d.png" title="Bubble Tower 3D" alt="Bubble Tower 3D">
</div>
<div class="cr-info">
<span>Bubble Tower 3D</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="smash-karts.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/kart-m240x240.jpg" title="Smash Karts" alt="Smash Karts">
</div>
<div class="cr-info">
<span>Smash Karts</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="sling-drift.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="upload/cache/upload/imgs/1-m240x240.jpg" title="Sling Drift" alt="Sling Drift">
</div>
<div class="cr-info">
<span>Sling Drift</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="bubble-woods.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/bubblewoods/bubble-woods.png" title="Bubble Woods" alt="Bubble Woods">
</div>
<div class="cr-info">
<span>Bubble Woods</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="burnin-rubber-5-xs.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/burninrubber5xs/burnin-rubber-5-xs.webp" title="Burnin Rubber 5 Xs" alt="Burnin Rubber 5 Xs">
</div>
<div class="cr-info">
<span>Burnin Rubber 5 Xs</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="bus-parking-3d.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/busparking/bplogo.jpg" title="Bus Parking 3D" alt="Bus Parking 3D">
</div>
<div class="cr-info">
<span>Bus Parking 3D</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="butterfly-kyodai.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/butterflykyodai/butterfly-kyodai.png" title="Butterfly Kyodai" alt="Butterfly Kyodai">
</div>
<div class="cr-info">
<span>Butterfly Kyodai</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="candy-bubble.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/candybubble/candy-bubble.png" title="Candy Bubble" alt="Candy Bubble">
</div>
<div class="cr-info">
<span>Candy Bubble</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="candy-jump.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/candyjump/candy-jump.png" title="Candy Jump" alt="Candy Jump">
</div>
<div class="cr-info">
<span>Candy Jump</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="cannon-balls-3d.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/cannon3d/logo.png" title="Cannon Balls 3D" alt="Cannon Balls 3D">
</div>
<div class="cr-info">
<span>Cannon Balls 3D</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="eggy-car.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/eggycar/eggy-car-logo.webp" title="Eggy Car" alt="Eggy Car">
</div>
<div class="cr-info">
<span>Eggy Car</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="car-rush.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/carrush/car-rush.webp" title="Car Rush" alt="Car Rush">
</div>
<div class="cr-info">
<span>Car Rush</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="among-us.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/amongus/among-us.png" title="Among Us" alt="Among Us">
</div>
<div class="cr-info">
<span>Among Us</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="drift-hunters.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">
<img loading="lazy" src="img/drifthunters/drift-hunters-logo.webp" title="Drift Hunters" alt="Drift Hunters">
</div>
<div class="cr-info">
<span>Drift Hunters</span>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="mb-10 mb-lg-0 col-8 col-sm-6 col-md-4 col-lg-4 col-xl-6 col-xxl-4 left">
<div class="cr-item">
<a href="color-road.html">
<div class="cr-detail">
<div class="cr-item-content">
<div class="cr-img">