-
Notifications
You must be signed in to change notification settings - Fork 164
/
index.html
1371 lines (1258 loc) · 72.7 KB
/
index.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>
<head>
<title>GameSphere.</title>
<!-- Primary Meta Tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="title" content="GameSphere" />
<meta name="description"
content="The main objective is to develop a website that allows friends to come together and engage in online gaming, including multiplayer games, without the need for any software or tools to be installed on their computers or mobile devices.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="language" content="en">
<meta name="keywords"
content="Online gaming, Multiplayer games, Friends gathering, Browser games, Virtual game room, Memory Card Game, Ping Pong, Rock Paper Scissor, Bingo Game, Tower game, Cross-platform gaming">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gamesphere-multiplayer.github.io/GameSphere/" />
<meta property="og:title" content="GameSphere" />
<meta property="og:description"
content="The main objective is to develop a website that allows friends to come together and engage in online gaming, including multiplayer games, without the need for any software or tools to be installed on their computers or mobile devices." />
<meta property="og:image"
content="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/17f6f52d-8c37-4a0e-a855-37b6a7b06804" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://gamesphere-multiplayer.github.io/GameSphere/" />
<meta property="twitter:title" content="GameSphere" />
<meta property="twitter:description"
content="The main objective is to develop a website that allows friends to come together and engage in online gaming, including multiplayer games, without the need for any software or tools to be installed on their computers or mobile devices." />
<meta property="twitter:image"
content="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/17f6f52d-8c37-4a0e-a855-37b6a7b06804" />
<!-- favicon -->
<link rel="icon" style="border-radius: 100%;" href="assets/Logo.png">
<!-- material icons -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<!-- font awesome cdn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- slick slider css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.css"
integrity="sha512-wR4oNhLBHf7smjy0K4oqzdWumd+r5/+6QO/vDda76MW5iug4PT7v86FoEkySIJft3XA0Ae6axhIvHrqwm793Nw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.css"
integrity="sha512-6lLUdeQ5uheMFbWm3CP271l14RsX1xtx+J5x2yeIDkkiBpeVTNhTqijME7GgRKKi6hCqovwCoBTlRBEC20M8Mg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- custom css (tailwind) -->
<link rel="stylesheet" href="dist/main.css">
<!-- chatbot -->
<link rel="stylesheet" href="./chatBot/style.css">
<!-- icon css -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="dist/color-theme.css">
<script src="https://kit.fontawesome.com/284ffbb2b1.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/scrollreveal"></script>
<link rel="stylesheet" href="counter.css">
<link rel="stylesheet" href="dist/sidebar.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
</head>
<body>
<!-- <div id="preloader"></div> -->
<header class="header">
<!--===== Navigation bar start =====-->
<nav style="background-color: black;" class="navbar flex items-center shadow-nav">
<div class="container w-full">
<div class="navbar-content">
<div class="brand-and-toggler flex items-center justify-between">
<!--==== logo name start ====-->
<img src="assets/Logo.png" style="height:40px;width:60px;padding-right:5%;">
<a target="_blank" href="#" class="navbar-brand">Game<span
class="text-green-normal ">Sphere</span></a>
<!--==== logo name end ====-->
<button type="button" class="lg:hidden text-white text-2xl" id="navbar-show-btn">
<i class="fas fa-bars"></i>
</button>
</div>
<div
class="navbar-collapse fixed right-0 top-0 w-full sm:w-[280px] h-full bg-white shadow-nav-collapse pt-[60px] px-5 pb-4 text-center transition ease-in-out duration-300 transform lg:relative lg:p-0 lg:flex lg:items-center lg:justify-end lg:w-full lg:bg-transparent lg:shadow-none translate-x-full lg:translate-x-0">
<button type="button" class="lg:hidden" id="navbar-hide-btn">
<i class="fa-solid fa-xmark text-2xl"></i>
</button>
<!--===== navigation tabs start ======-->
<ul class="navbar-nav">
<li class="nav-item">
<a href="index.html" class="nav-link "><i class="ri-home-fill"></i> home</a>
</li>
<li class="nav-item">
<a href="additionalpage\game.html" class="nav-link "><i class="ri-gamepad-fill"></i> Games</a>
</li>
<li class="nav-item">
<a href="additionalpage/multiplayer.html" class="nav-link "><i class="ri-group-fill"></i> Multiplayer</a>
</li>
<li class="nav-item">
<a target="_blank" rel="noopener noreferrer" href="https://discord.gg/dakzwdz4ev"
class="nav-link "><i class="ri-community-fill"></i> Join community</a>
</li>
<li class="nav-item">
<a href="additionalpage/contact.html" class="nav-link "><i class="ri-customer-service-2-fill"></i> Contact Us</a>
</li>
</ul>
<!--===== navigation tabs start ======-->
</div>
</div>
<hr style="border-top: 1px solid #8c8b8b;">
</div>
</nav>
<!--===== Navigation bar end =====-->
<!--===== Intro and signature game section start =====-->
<div class="banner-content" style="margin-top: 100px; padding: 10vh;">
<!--<video autoplay loop play-inline muted class="back-video">
<source src="assets/images/video_games_-_89894 (540p).mp4" type="video/mp4">
</video>-->
<div class="banner-badge ">Hello Gamers</div>
<h1 class="banner-title">Play Games With Your Friends</h1>
<p class="lead-text">In this platform, we are here to play games with our friends at the same time without any
interruption. Our primary goal is to create a platform where two or more friends can gather and play
games online (such as multiplayer) without having to download any software or tools to their computers
or mobile devices.</p>
<button type="button" class="banner-btn ">
<span class="me-4">
<img src="assets/icons/console.svg" alt="">
</span>
<span><a target="_blank" href="SinglePlayer - Games/Formation Absent/index.html">play now</a></span>
</button>
<!--==== bouncy ball section start ====-->
</div>
<img class="Console" src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/98798977/39de2710-b939-4ddf-8a4f-05bfde98e0d2" alt="" style="height: 600px; width: auto; margin-top: 10vh;">
<!--===== Intro and signature game section end =====-->
</header>
<!--==== Banner section start ====-->
<div class="sc-title ">
<h3>today's trending <span>games</span></h3>
<div class="line "></div>
</div>
<div class="card-container" style="margin-top: -8%; margin-bottom: -8%;">
<input type="radio" name="slider" class="d-none" id="s1" checked>
<input type="radio" name="slider" class="d-none" id="s2">
<input type="radio" name="slider" class="d-none" id="s3">
<input type="radio" name="slider" class="d-none" id="s4">
<input type="radio" name="slider" class="d-none" id="s5">
<div class="cards">
<label for="s1" id="slide1">
<div class="card">
<div class="image">
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/68c791f4-51b0-473f-8486-f0fa8db4c6cb"
alt="">
</div>
<div class="infos">
<span class="name">NUCLEAR SAFE</span>
<span class="lorem">Get ready to groove and safeguard your way through the explosive challenge
of "Memory Nuclear Safe
sodales</span>
</div>
<a href="SinglePlayer - Games/nuclear-safe/index.html" class="btn-contact">Play Now</a>
</div>
</label>
<label for="s2" id="slide2">
<div class="card">
<div class="image">
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/427316a8-b850-4501-8298-670407636fe3"
alt="">
</div>
<div class="infos">
<span class="name">SQUARRED LINES</span>
<span class="lorem">Fit various shapes into a grid, clearing rows to score points and create
space for new pieces.</span>
</div>
<a href="SinglePlayer - Games/Squared Lines/index.html" class="btn-contact">Play Now</a>
</div>
</label>
<label for="s3" id="slide3">
<div class="card">
<div class="image">
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/a494243f-9bbb-4446-8472-8d67244f97d4"
alt="">
</div>
<div class="infos">
<span class="name">HEXTRIS</span>
<span class="lorem">Rotate, match, conquer! Experience the challenge of Hextris puzzle-solving
prowess...</span>
</div>
<a href="SinglePlayer - Games/hextris-gh-pages/index.html" class="btn-contact">Play Now</a>
</div>
</label>
<label for="s4" id="slide4">
<div class="card">
<div class="image">
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/4a4ae1d0-8542-4054-99c6-2975801d4724"
alt="">
</div>
<div class="infos">
<span class="name">TINDEATH</span>
<span class="lorem">Unleash the power within. Conquer, create, and redefine your gaming destiny
with Tindeath...</span>
</div>
<a href="SinglePlayer - Games/Tindeath/index.html" class="btn-contact">Play Now</a>
</div>
</label>
<label for="s5" id="slide5">
<div class="card">
<div class="image">
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/33e84ea1-f052-4422-90bc-179692c1832b"
alt="">
</div>
<div class="infos">
<span class="name">HEXGL-MASTER</span>
<span class="lorem">Enter the futuristic realm of speed and precision. Dominate the race virtual
world in HexGL Master!"</span>
</div>
<a href="SinglePlayer - Games/HexGL-master/index.html" class="btn-contact">Play Now</a>
</div>
</label>
</div>
</div>
<!-- <div class = "py-16 bg-violet-darker overflow-hidden">
<div class = "game-slider">
<div class = "slider-item img-fit-cover">
<img src = "https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/68c791f4-51b0-473f-8486-f0fa8db4c6cb" class = "slider-item-img">
</div>
<div class = "slider-item img-fit-cover">
<img src = "https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/fb5a5094-207d-4930-b6d2-37b72f9c77a1" class = "slider-item-img">
</div>
<div class = "slider-item img-fit-cover">
<img src = "https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/4a4ae1d0-8542-4054-99c6-2975801d4724" class = "slider-item-img">
</div>
<div class = "slider-item img-fit-cover">
<img src = "https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/33e84ea1-f052-4422-90bc-179692c1832b" class = "slider-item-img">
</div>
<div class = "slider-item img-fit-cover">
<img src = "https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/a494243f-9bbb-4446-8472-8d67244f97d4" class = "slider-item-img">
</div>
<div class = "slider-item img-fit-cover">
<img src = "https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/001613f2-2412-4880-8b21-974fa357169e" class = "slider-item-img">
</div>
<div class = "slider-item img-fit-cover">
<img src = "https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/427316a8-b850-4501-8298-670407636fe3" class = "slider-item-img">
</div>
</div>
</div> -->
<!--==== Banner section end ====-->
<!--==== game section start ====-->
<section class="py-16 sc-popular bg-violet-dark-active">
<div class="container">
<!-- Heading of game start -->
<div class="sc-title ">
<h3>top popular <span>games</span></h3>
<div class="line "></div>
</div>
<!-- Heading of game end -->
<div class="game-card-list grid gap-6 md:grid-cols-2 lg:grid-cols-3">
<!-- Game card- 1 start -->
<div class="game-card" id="scale-card">
<video src="https://drive.google.com/uc?id=1E0Y2cUaArPQ313GpdCPeFYtFZ32tkRC5" type="video/mp4" muted
loop class="clip"></video>
<div class="game-card-top display-none img-fit-cover">
<!-- Image section-->
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/4b63ff9d-ef28-4446-b9e5-8cfa13d2a697"
alt="">
<div class="ratings-count">
211 <!--Star-->
<img src="assets/icons/star-black.svg" alt="" class="ms-2">
</div>
</div>
<div class="game-card-bottom">
<div class="flex flex-col sm:flex-row justify-between items-start flex-wrap">
<div class="py-1">
<!-- Game name -->
<h4 class="text-white uppercase game-card-title">Tindeath</h4>
<!-- Game discription -->
<p class="para-text">Unleash the power within. Conquer, create, and redefine your gaming
destiny with Tindeath...</p>
</div>
<div class="star-rating mt-2 sm:mt-0 py-1">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green-half.svg">
</div>
</div>
<div class="block-wrap flex justify-between items-end">
<div class="details-group">
<div class="flex items-center">
<!-- Release date -->
<p class="font-semibold">Release Date: </p>
<p>28.05.2023</p>
</div>
<div class="flex items-center">
<!-- update section -->
<p class="font-semibold">Updated: </p>
<p>Action | Desktop</p>
</div>
</div>
<div class="flex flex-col items-end justify-between ">
<!-- Play Button -->
<a target="_blank" href="SinglePlayer - Games/Tindeath/index.html"
class="btn-primary uppercase ">Play Now</a>
</div>
</div>
</div>
</div>
<!-- Game card- 1 end -->
<!-- Game card- 2 start -->
<div class="game-card">
<video src="https://drive.google.com/uc?id=10uhSyJZr6cIc5_ONrD1-MgxRnH2XA6wm" type="video/mp4" muted
loop class="clip"></video>
<div class="game-card-top display-none img-fit-cover">
<!-- Image section-->
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/b45c4246-16db-4759-951d-0f3904711485"
alt="">
<div class="ratings-count">
41 <!--Star-->
<img src="assets/icons/star-black.svg" alt="" class="ms-2">
</div>
</div>
<div class="game-card-bottom">
<div class="flex flex-col sm:flex-row justify-between items-start flex-wrap">
<div class="py-1">
<!-- Game name -->
<h4 class="text-white uppercase game-card-title">Sci-Fi Alchemy </h4>
<!-- Game discription -->
<p class="para-text">Sci-Fi Alchemy! Experience the addictive fun of Sci-Fi Alchemy and
soar to new heights ....</p>
</div>
<div class="star-rating mt-2 sm:mt-0 py-1">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green-half.svg">
</div>
</div>
<div class="block-wrap flex justify-between items-end">
<div class="details-group">
<div class="flex items-center">
<!-- Release date -->
<p class="font-semibold">Release Date: </p>
<p>28.05.2023</p>
</div>
<div class="flex items-center">
<!-- update section -->
<p class="font-semibold">Updated: </p>
<p>Action | Desktop</p>
</div>
</div>
<div class="flex flex-col items-end justify-between">
<!-- Play Button -->
<a target="_blank" href="SinglePlayer - Games/Sci-Fi Alchemy/index.html"
class="btn-primary uppercase">play now</a>
</div>
</div>
</div>
</div>
<!-- Game card- 2 end -->
<!-- Game card- 3 start -->
<div class="game-card">
<video src="https://drive.google.com/uc?id=149xMLib-ZklPMRRTqd9Y9N83Pgj-m-fx" type="video/mp4" muted
loop class="clip"></video>
<div class="game-card-top display-none img-fit-cover">
<!-- Image section-->
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/b1663649-4175-4921-b4dc-47005426c6e3"
alt="">
<div class="ratings-count">
321 <!--Star-->
<img src="assets/icons/star-black.svg" alt="" class="ms-2">
</div>
</div>
<div class="game-card-bottom">
<div class="flex flex-col sm:flex-row justify-between items-start flex-wrap">
<div class="py-1">
<!-- Game name -->
<h4 class="text-white uppercase game-card-title">HexGL-master</h4>
<!-- Game discription -->
<p class="para-text">Enter the futuristic realm of speed and precision. Dominate the
race virtual world in HexGL Master!"...</p>
</div>
<div class="star-rating mt-2 sm:mt-0 py-1">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green-half.svg">
</div>
</div>
<div class="block-wrap flex justify-between items-end">
<div class="details-group">
<div class="flex items-center">
<!-- Release date -->
<p class="font-semibold">Release Date: </p>
<p>28.05.2023</p>
</div>
<div class="flex items-center">
<!-- update section -->
<p class="font-semibold">Updated: </p>
<p>Action | Desktop</p>
</div>
</div>
<div class="flex flex-col items-end justify-between">
<!-- Play Button -->
<a target="_blank" href="SinglePlayer - Games/HexGL-master/index.html"
class="btn-primary uppercase">Play Now</a>
</div>
</div>
</div>
</div>
<!-- Game card- 3 end -->
<!-- Game card- 4 start -->
<div class="game-card">
<video src="https://drive.google.com/uc?id=14jtDCyNtlVu3-zFGxLo5He7qGXRvLOts" type="video/mp4" muted
loop class="clip"></video>
<div class="game-card-top display-none img-fit-cover">
<!-- Image section-->
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/739154da-c16c-443a-a9e1-dbf5d3717862"
alt="">
<div class="ratings-count">
241<!--Star-->
<img src="assets/icons/star-black.svg" alt="" class="ms-2">
</div>
</div>
<div class="game-card-bottom">
<div class="flex flex-col sm:flex-row justify-between items-start flex-wrap">
<div class="py-1">
<!-- Game name -->
<h4 class="text-white uppercase game-card-title">JUNO </h4>
<!-- Game discription -->
<p class="para-text">Rev up your engines, navigate the chaos! Take control of the
streets JUNO!...</p>
</div>
<div class="star-rating mt-2 sm:mt-0 py-1">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green-half.svg">
</div>
</div>
<div class="block-wrap flex justify-between items-end">
<div class="details-group">
<div class="flex items-center">
<!-- Release date -->
<p class="font-semibold">Release Date: </p>
<p>30.05.2023</p>
</div>
<div class="flex items-center">
<!-- update section -->
<p class="font-semibold">Updated: </p>
<p>Action | Desktop</p>
</div>
</div>
<div class="flex flex-col items-end justify-between">
<!-- Play Button -->
<a target="_blank" href="SinglePlayer - Games/JunoJs/index.html"
class="btn-primary uppercase">play now</a>
</div>
</div>
</div>
</div>
<!-- Game card- 4 end -->
<!-- Game card- 5 start -->
<div class="game-card">
<video src="https://drive.google.com/uc?id=1vxgalx_dJdnJlnlGc0KGVnXGfZ4DWu2N" type="video/mp4" muted
loop class="clip"></video>
<div class="game-card-top display-none img-fit-cover">
<!-- Image section-->
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/2120a39a-f466-4f6e-80b8-2943444cf13a"
alt="">
<div class="ratings-count">
291 <!--Star-->
<img src="assets/icons/star-black.svg" alt="" class="ms-2">
</div>
</div>
<div class="game-card-bottom">
<div class="flex flex-col sm:flex-row justify-between items-start flex-wrap">
<div class="py-1">
<!-- Game name -->
<h4 class="text-white uppercase game-card-title">Tower Build</h4>
<!-- Game discription -->
<p class="para-text"> Reach for the sky of dreams! Build your towering empire in the
captivating world of Tower Build...</p>
</div>
<div class="star-rating mt-2 sm:mt-0 py-1">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green-half.svg">
</div>
</div>
<div class="block-wrap flex justify-between items-end">
<div class="details-group">
<div class="flex items-center">
<!-- Release date -->
<p class="font-semibold">Release Date: </p>
<p>30.05.2023</p>
</div>
<div class="flex items-center">
<!-- update section -->
<p class="font-semibold">Updated: </p>
<p>Action | Desktop</p>
</div>
</div>
<div class="flex flex-col items-end justify-between">
<!-- Play Button -->
<a target="_blank" href="SinglePlayer - Games/tower/index.html"
class="btn-primary uppercase">Play now</a>
</div>
</div>
</div>
</div>
<!-- Game card- 5 end -->
<!-- Game card- 6 start -->
<div class="game-card">
<video src="https://drive.google.com/uc?id=1K50KAAYfmSnBM0_Co8CHNWasiz_CW80x" type="video/mp4" muted
loop class="clip"></video>
<div class="game-card-top display-none img-fit-cover">
<!-- Image section-->
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/01f2e1fd-8dc4-4546-8d61-2e9c7554bd36"
alt="">
<div class="ratings-count">
420 <!--Star-->
<img src="assets/icons/star-black.svg" alt="" class="ms-2">
</div>
</div>
<div class="game-card-bottom">
<div class="flex flex-col sm:flex-row justify-between items-start flex-wrap">
<div class="py-1">
<!-- Game name -->
<h4 class="text-white uppercase game-card-title">hextris</h4>
<!-- Game discription -->
<p class="para-text">Rotate, match, conquer! Experience the challenge of Hextris
puzzle-solving prowess...</p>
</div>
<div class="star-rating mt-2 sm:mt-0 py-1">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green-half.svg">
</div>
</div>
<div class="block-wrap flex justify-between items-end">
<div class="details-group">
<div class="flex items-center">
<!-- Release date -->
<p class="font-semibold">Release Date: </p>
<p>06.06.1984</p>
</div>
<div class="flex items-center">
<!-- update section -->
<p class="font-semibold">Updated: </p>
<p>Action | Desktop</p>
</div>
</div>
<div class="flex flex-col items-end justify-between">
<!-- Play Button -->
<a target="_blank" href="SinglePlayer - Games/hextris-gh-pages/index.html"
class="btn-primary uppercase">play now</a>
</div>
</div>
</div>
</div>
<!-- Game card- 6 end -->
<!-- Game card- 7 start -->
<div class="game-card">
<video src="https://drive.google.com/uc?id=1GvmnHn2csFq1Lm5Z4keF22O4YlJFaozX" type="video/mp4" muted
loop class="clip"></video>
<div class="game-card-top display-none img-fit-cover">
<!-- Image section-->
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/1b2b7248-1bb0-422b-81cc-b687618f20f9"
alt="">
<div class="ratings-count">
241<!--Star-->
<img src="assets/icons/star-black.svg" alt="" class="ms-2">
</div>
</div>
<div class="game-card-bottom">
<div class="flex flex-col sm:flex-row justify-between items-start flex-wrap">
<div class="py-1">
<!-- Game name -->
<h4 class="text-white uppercase game-card-title">Blanks Detective</h4>
<!-- Game discription -->
<p class="para-text">Blast off into epic battles. Command your starship, defy gravity,
world of Space-War!...</p>
</div>
<div class="star-rating mt-2 sm:mt-0 py-1">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green-half.svg">
</div>
</div>
<div class="block-wrap flex justify-between items-end">
<div class="details-group">
<div class="flex items-center">
<!-- Release date -->
<p class="font-semibold">Release Date: </p>
<p>07.12.2015</p>
</div>
<div class="flex items-center">
<!-- update section -->
<p class="font-semibold">Updated: </p>
<p>Action | Desktop</p>
</div>
</div>
<div class="flex flex-col items-end justify-between">
<!-- Play Button -->
<a target="_blank" href="SinglePlayer - Games/Blanks Detective/index.html"
class="btn-primary uppercase">play now</a>
</div>
</div>
</div>
</div>
<!-- Game card- 7 end -->
<!-- Game card- 8 start -->
<div class="game-card">
<video src="https://drive.google.com/uc?id=1GLxdHdcHVO5rHGB_EguCDMV3auk0yrF2" type="video/mp4" muted
loop class="clip"></video>
<div class="game-card-top display-none img-fit-cover">
<!-- Image section-->
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/38928018-5275-4096-9c62-7b006517e3da"
alt="">
<div class="ratings-count">
221<!--Star-->
<img src="assets/icons/star-black.svg" alt="" class="ms-2">
</div>
</div>
<div class="game-card-bottom">
<div class="flex flex-col sm:flex-row justify-between items-start flex-wrap">
<div class="py-1">
<!-- Game name -->
<h4 class="text-white uppercase game-card-title">PACKABUNCHAS </h4>
<!-- Game discription -->
<p class="para-text">Beyond the Stars, They Embrace. Space Huggers: Alien Affection
Awaits....</p>
</div>
<div class="star-rating mt-2 sm:mt-0 py-1">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green-half.svg">
</div>
</div>
<div class="block-wrap flex justify-between items-end">
<div class="details-group">
<div class="flex items-center">
<!-- Release date -->
<p class="font-semibold">Release Date: </p>
<p>07.12.2015</p>
</div>
<div class="flex items-center">
<!-- update section -->
<p class="font-semibold">Updated: </p>
<p>Action | Desktop</p>
</div>
</div>
<div class="flex flex-col items-end justify-between">
<!-- Play Button -->
<a target="_blank" href="SinglePlayer - Games/PACKABUNCHAS/index.html"
class="btn-primary uppercase">play now</a>
</div>
</div>
</div>
</div>
<!-- Game card- 8 end -->
<!-- Game card- 9 start -->
<div class="game-card">
<video src="https://drive.google.com/uc?id=1IifZmdbX3GJQlLkQcmJXKdi6V4R_AB1t" type="video/mp4" muted
loop class="clip"></video>
<div class="game-card-top display-none img-fit-cover">
<!-- Image section-->
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/1413b604-f4fd-432f-a78e-337a4e0739f3"
alt="">
<div class="ratings-count">
341 <!--Star-->
<img src="assets/icons/star-black.svg" alt="" class="ms-2">
</div>
</div>
<div class="game-card-bottom">
<div class="flex flex-col sm:flex-row justify-between items-start flex-wrap">
<div class="py-1">
<!-- Game name -->
<h4 class="text-white uppercase game-card-title">SPACESHIP ESCORT </h4>
<!-- Game discription -->
<p class="para-text">Embrace the Darkness. Unleash the Decay. SPACESHIP ESCORT: Masters
of survival....</p>
</div>
<div class="star-rating mt-2 sm:mt-0 py-1">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green.svg">
<img src="assets/icons/star-green-half.svg">
</div>
</div>
<div class="block-wrap flex justify-between items-end">
<div class="details-group">
<div class="flex items-center">
<!-- Release date -->
<p class="font-semibold">Release Date: </p>
<p>07.12.2015</p>
</div>
<div class="flex items-center">
<!-- update section -->
<p class="font-semibold">Updated: </p>
<p>Action | Desktop</p>
</div>
</div>
<div class="flex flex-col items-end justify-between">
<!-- Play Button -->
<a target="_blank" href="SinglePlayer - Games/Spaceship Escort/index.html"
class="btn-primary uppercase">play now</a>
</div>
</div>
</div>
</div>
<!-- Game card- 9 end -->
</div>
<div class="flex justify-center mt-[60px]">
<a target="_blank" href="additionalpage/game.html" class="section-btn" style=" transform: skew(-21deg);">see more games</a>
</div>
</div>
</section>
<!--==== game section end ====-->
<!--==== Discord community section start ====-->
<section
class="py-16 sc-join flex items-center bg-join-image relative after:absolute after:content-[''] after:bg-gradient-to-b after:from-black/50 after:to-black/50 after:bg-center after:bg-cover after:bg-no-repeat">
<div class="container w-full">
<div class="join-content">
<h2 class="join-title uppercase"><span>join the community</span></h2>
<p class="lead-text py-2">Join our Discord community which is in the making and made by gamers for
gamers. All are welcome to join no matter the game you play, we're here to have a good time and connect with fellow gamers.</p>
<button type="button" class="mt-4"><a class="discord-btn" target="_blank"
href="https://discord.gg/dakzwdz4ev">join discord</a></button>
</div>
</div>
</section>
<!--==== Discord community section end ====-->
<!--===== News section start ====-->
<section class="py-16 sc-posts bg-violet-dark-active" id="news">
<div class="container">
<!-- Title of news start-->
<div class="sc-title">
<h3>latest <span>news</span></h3>
<div class="line"></div>
</div>
<!-- Title of news end-->
<div class="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
<!--=== News cars - 1 Start ====-->
<div class="game-post">
<div class="game-post-img">
<!-- image -->
<img src="https://static0.gamerantimages.com/wordpress/wp-content/uploads/2023/06/red-dead-redemption-2-cain-jack-dutch.jpg?q=50&fit=contain&w=1140&h=&dpr=1.5"
alt="">
</div>
<div class="game-post-body py-4 px-7">
<!-- heading -->
<h3 class="game-post-title pb-3 border-b-[1px] border-b-violet-dark-">Red Dead Redemption 2 Dog
Cain Has Passed Away in Real Life .</h3>
<div class="flex justify-between items-center mt-[10px]">
<!-- publised -->
<span class="font-normal text-[13px]">PUBLISHED 1 HOUR AGO</span>
<!-- published by -->
<p class="text-[13px]">By: <span class="text-green-normal font-semibold">LUIE
MAGBANUA</span> </p>
</div>
<!-- discription -->
<p class="para-text">The owner of the dog that played as the animal motion capture actor of Cain
in Red Dead Redemption 2 has announced that the canine has recently passed away. Though only
a minor character in Red Dead Redemption 2, the game's players, who have a soft spot for
animals, likely remember Cain fondly and will probably be saddened by the news....</p>
<div class="flex items-center justify-between">
<!-- read more -->
<a target="_blank" href="https://gamerant.com/red-dead-redemption-2-dog-cain-died/"
class="btn-secondary uppercase">read more</a>
<div class="flex items-center">
<span class="font-bold text-[13px] flex me-[25px]">
<img src="assets/icons/eye.svg" alt="" class="w-[20px] me-2"> 123 <!-- views -->
</span>
<span class="font-bold text-[13px] flex">
<img src="assets/icons/message.svg" alt="" class="w-[17px] me-2">
45<!-- comments -->
</span>
</div>
</div>
</div>
</div>
<!--=== News cars - 1 end ====-->
<!--=== News cars - 2 Start ====-->
<div class="game-post">
<div class="game-post-img">
<!-- image -->
<img src="https://static0.gamerantimages.com/wordpress/wp-content/uploads/2023/06/destiny-2-diablo-4-cover.jpg?q=50&fit=contain&w=1140&h=&dpr=1.5"
alt="">
</div>
<div class="game-post-body py-4 px-7">
<!-- heading -->
<h3 class="game-post-title pb-3 border-b-[1px] border-b-violet-dark-">Destiny 2 Dev Faces
Backlash Due to Negative Diablo 4 Comments </h3>
<div class="flex justify-between items-center mt-[10px]">
<!-- publised -->
<span class="font-normal text-[13px]">PUBLISHED 2 HOURS AGO</span>
<!-- published by -->
<p class="text-[13px]">By: <span class="text-green-normal font-semibold">MIGUEL LUIS
LLADO</span> </p>
</div>
<!-- discription -->
<p class="para-text">A Destiny 2 developer is receiving some backlash due to their criticism of
Diablo 4. While Destiny and Diablo are two completely different games with unique gameplay
mechanics, both share some elements that could be comparable, especially the multi-player
and leveling aspects. The title has been out for over a week, but fans have already been
quick to form....</p>
<div class="flex items-center justify-between">
<!-- read more -->
<a target="_blank"
href="https://gamerant.com/destiny-2-backlash-negative-diablo-4-comments/"
class="btn-secondary uppercase">read more</a>
<div class="flex items-center">
<span class="font-bold text-[13px] flex me-[25px]">
<img src="assets/icons/eye.svg" alt="" class="w-[20px] me-2"> 124<!-- views -->
</span>
<span class="font-bold text-[13px] flex">
<img src="assets/icons/message.svg" alt="" class="w-[17px] me-2">
25<!-- comments -->
</span>
</div>
</div>
</div>
</div>
<!--=== News cars - 2 end ====-->
<!--=== News cars - 3 Start ====-->
<div class="game-post">
<div class="game-post-img">
<!-- image -->
<img src="https://static0.gamerantimages.com/wordpress/wp-content/uploads/2023/06/dan-houser-over-gta-background.jpg?q=50&fit=contain&w=1140&h=&dpr=1.5"
alt="">
</div>
<div class="game-post-body py-4 px-7">
<!-- heading -->
<h3 class="game-post-title pb-3 border-b-[1px] border-b-violet-dark-">Rockstar Co-Founder
Reveals His Latest Venture</h3>
<div class="flex justify-between items-center mt-[10px]">
<!-- publised -->
<span class="font-normal text-[13px]">PUBLISHED 6 HOURS AGO</span>
<!-- published by -->
<p class="text-[13px]">By: <span class="text-green-normal font-semibold">Joseph Allen</span>
</p>
</div>
<!-- discription -->
<p class="para-text">Having already left his mark on the world of gaming through years spent
helming franchises like Grand Theft Auto and Red Dead Redemption, Rockstar Games co-founder
Dan Houser has announced his latest venture, a cross-media company named Absurd Ventures.
One of the driving forces behind some of the largest properties in the industry....</p>
<div class="flex items-center justify-between">
<!-- read more -->
<a target="_blank"
href="https://gamerant.com/rockstar-co-founder-dan-houser-absurd-ventures/"
class="btn-secondary uppercase">read more</a>
<div class="flex items-center">
<span class="font-bold text-[13px] flex me-[25px]">
<img src="assets/icons/eye.svg" alt="" class="w-[20px] me-2"> 223<!-- views -->
</span>
<span class="font-bold text-[13px] flex">
<img src="assets/icons/message.svg" alt="" class="w-[17px] me-2">
145<!-- comments -->
</span>
</div>
</div>
</div>
</div>
<!--=== News cars - 3 end ====-->
<!--=== News cars - 4 Start ====-->
<div class="game-post">
<div class="game-post-img">
<!-- image -->
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/44e2c040-91ac-4345-b7ab-13695a229019"
alt="">
</div>
<div class="game-post-body py-4 px-7">
<!-- heading -->
<h3 class="game-post-title pb-3 border-b-[1px] border-b-violet-dark-">Total War: Warhammer 3
Chaos Dwarfs DLC Shows Zhatan's ...</h3>
<div class="flex justify-between items-center mt-[10px]">
<!-- publised -->
<span class="font-normal text-[13px]">March 31, 2023 7:46 AM</span>
<!-- published by -->
<p class="text-[13px]">By: <span class="text-green-normal font-semibold">Joseph Allen</span>
</p>
</div>
<!-- discription -->
<p class="para-text">The upcoming My Time at Sandrock Knives Out update now has a release date.
The update, which adds a marriage system, new story content, and lots more, is scheduled to
arrive ...</p>
<div class="flex items-center justify-between">
<!-- read more -->
<a target="_blank"
href="https://techraptor.net/gaming/news/total-war-warhammer-3-chaos-dwarfs-dlc-shows-zhatans-campaign-in-gameplay-video"
class="btn-secondary uppercase">read more</a>
<div class="flex items-center">
<span class="font-bold text-[13px] flex me-[25px]">
<img src="assets/icons/eye.svg" alt="" class="w-[20px] me-2"> 119<!-- views -->
</span>
<span class="font-bold text-[13px] flex">
<img src="assets/icons/message.svg" alt="" class="w-[17px] me-2">
43<!-- comments -->
</span>
</div>
</div>
</div>
</div>
<!--=== News cars - 4 end ====-->
<!--=== News cars - 5 Start ====-->
<div class="game-post">
<div class="game-post-img">
<!-- image -->
<img src="https://github.com/GameSphere-MultiPlayer/GameSphere/assets/56786344/c00da120-afa4-41b2-8f14-d49bd77d9826"
alt="">
</div>
<div class="game-post-body py-4 px-7">