-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
856 lines (735 loc) · 68.6 KB
/
main.html
File metadata and controls
856 lines (735 loc) · 68.6 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Main Game</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com?plugins=typography"></script>
<link href="css/base.css" rel="stylesheet">
<link href="css/color.css" rel="stylesheet">
<link href="css/typography.css" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:slnt,wght@-10..0,100..900&display=swap');
</style>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,400,1,0" />
<script>
tailwind.config = {
theme: {
extend: {
colors: {
pri: '#F5F7FF',
sec: '#D0D2DB',
tri: '#9496A1',
sep: '#2D303D',
act: '#00BD6D',
hov: '#00BD10',
mai: '#252836',
sup: '#212230',
gre: '#22C55E',
yel: '#EAB308',
red: '#EF4444',
blu: '#3B82F6',
},
aspecRatio: {
'4/3' : '4 / 3',
}
}
}
}
</script>
</head>
<body>
<header class="py-3 px-4 lg:px-11 shadow-lg box-border border-b border-sep flex items-center">
<a href="#" class="grow-0 shrink-0 flex items-center">
<div class="h-[28px] w-[28px]">
<img src="img/logo.png" alt="whatoplay logo" class="w-full">
</div>
<div class="mx-3 text-pri text-lg font-bold tracking-wide hidden md:block">whatoplay</div>
</a>
<div class="grow shrink"></div>
<div class="grow-0 shrink-0 hidden w-[336px] bg-mai rounded-full py-1.5 px-4 lg:flex mr-6">
<div class="material-symbols-rounded text-tri mr-4 text-xl">search</div>
<input class="bg-transparent text-pri outline-0" placeholder="Search">
</div>
<button class="text-pri text-sm bg-act px-4 py-1.5 rounded font-bold hover:bg-hov">Login</button>
</header>
<div class="grid grid-cols-12 p-4">
<section class="contain-left col-span-12 lg:col-span-2 pt-3 hidden lg:block">
<nav class="menu-pri py-4 px-2 rounded-lg md:max-w-[336px]">
<ul class="text-base font-semibold space-y-2">
<li>
<a href="#" class="flex items-center py-2 px-4 hover:bg-mai rounded-lg" title="Video games">
<span class="material-symbols-rounded text-act mr-6 text-2xl">games</span>
<span class="text-sec">Games</span>
</a>
</li>
<li>
<a href="#" class="flex items-center py-2 px-4 hover:bg-mai rounded-lg" title="Best games of all time">
<span class="material-symbols-rounded text-act mr-6 text-2xl">emoji_events</span>
<span class="text-sec">Rankings</span>
</a>
</li>
<li>
<a href="#" class="flex items-center py-2 px-4 hover:bg-mai rounded-lg" title="New video games">
<span class="material-symbols-rounded text-act mr-6 text-2xl">new_releases</span>
<span class="text-sec">New</span>
</a>
</li>
<li>
<a href="#" class="flex items-center py-2 px-4 hover:bg-mai rounded-lg" title="Upcoming video games">
<span class="material-symbols-rounded text-act mr-6 text-2xl">event</span>
<span class="text-sec">Upcoming</span>
</a>
</li>
<li>
<a href="#" class="flex items-center py-2 px-4 hover:bg-mai rounded-lg" title="Game finder - advanced video game search">
<span class="material-symbols-rounded text-act mr-6 text-2xl">manage_search</span>
<span class="text-sec">Game finder</span>
</a>
</li>
<li>
<a href="#" class="flex items-center py-2 px-4 hover:bg-mai rounded-lg" title="Game finder - advanced video game search">
<span class="material-symbols-rounded text-act mr-6 text-2xl">groups</span>
<span class="text-sec">Community</span>
</a>
</li>
<li>
<a href="#" class="flex items-center py-2 px-4 hover:bg-mai rounded-lg" title="Latest gaming news, articles, and guides">
<span class="material-symbols-rounded text-act mr-6 text-2xl">newsmode</span>
<span class="text-sec">News and Articles</span>
</a>
</li>
</ul>
</nav>
</section>
<main class="grid grid-cols-12 col-span-12 md:col-span-10 w-full max-w-7xl gap-x-8 mx-auto">
<div class="col-span-12 mb-2">
<div class="mx-auto w-[320px] h-[100px] md:w-[728px] md:h-[90px] bg-sep"></div>
</div>
<div class="col-span-12 flex mb-2">
<div>
<div class="mb-2">
<h1 class="grow shrink text-3xl md:text-5xl font-normal text-pri !leading-tight mb-2">Sky: Children of the Light</h1>
</div>
<div class="flex text-sec text-sm mb-2">
<ul class="flex gap-x-2 mr-2">
<li><a href="#">PC</a></li>
<li><a href="#">Switch</a></li>
<li><a href="#">PS4</a></li>
<li><a href="#">Android</a></li>
<li><a href="#">iOS</a></li>
</ul>
•
<span class="mx-2">2019</span>
•
<a href="#" class="mx-2">E10+</a>
</div>
</div>
</div>
<div class="col-span-12 lg:col-span-8">
<div class="mb-10 lg:mb-12">
<div class="relative">
<figure class="mb-4">
<img src="img/sample01.webp" alt="">
</figure>
</div>
<div class="flex items-start">
<div class="grow-0 shrink-0 w-[125px] md:w-[150px] overflow-hidden mr-4 md:mr-6 rounded-lg overflow-hidden">
<img src="https://cdn2.whatoplay.com/boxart/reg/150x/42375-1689754767.webp" alt="Sky: Children of the Light">
</div>
<div class="shrink grow">
<p class="text-sm text-tri mb-4">Welcome to the enchanting world of Sky, a beautifully-animated kingdom waiting to be explored by you and your loved ones.</p>
<div class="flex flex-wrap items-center gap-2 text-xs mb-4">
<a href="#" class="text-sec font-semibold border border-sec py-1 px-3 rounded-2xl hover:text-act hover:border-act">Adventure</a>
<a href="#" class="text-sec font-semibold border border-sec py-1 px-3 rounded-2xl hover:text-act hover:border-act">RPG</a>
</div>
<div class="flex">
<button class="text-act hover:text-hov inline-flex items-center text-sm font-bold mr-4">
<span class="material-symbols-rounded mr-2 text-xl">bookmark</span>
Add to collection
</button>
<button class="btn-base text-act hover:text-hov inline-flex items-center text-sm font-bold mr-4" disabled>
<span class="material-symbols-rounded mr-2 text-xl">bookmark</span>
Added to backlog
</button>
<!-- <a href="#" rel="sponsored noopener" target="_blank" class="block w-[125px] text-xs font-bold text-center text-[#212121] leading-none py-2 rounded bg-gradient-to-r from-yellow-500 to-amber-500 hover:from-yellow-600 hover:to-amber-600 mr-4">Buy on Amazon</a> -->
</div>
</div>
<div class=""></div>
</div>
</div>
<section class="mb-10 lg:mb-12">
<h2 class="grow shrink text-sec font-normal text-xl lg:text-2xl">Platforms</h2>
<hr class="mt-2 mb-4 border-sep">
<ul class="grid grid-cols-12 gap-4 mb-10">
<li class="col-span-12 md:col-span-6">
<div class="rounded-lg shadow bg-mai py-4">
<div class="flex items-center px-4">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="h-6 grow-0 shrink-0 mr-4 text-tri"><title></title><path d="M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701"></path></svg>
<div class="grow shrink text-2xl text-pri font-bold leading-none">iOS</div>
<div class="text-tri text-xs leading-none uppercase">Jul 18, 2019</div>
</div>
<hr class="mt-3 mb-3 border-sep">
<div class="flex items-end justify-between px-4">
<div class="grow-0 shrink-0 text-center">
<div class="text-5xl font-bold text-gre">8.8</div>
<div class="text-xs text-tri uppercase leading-none">playscore</div>
</div>
<div class="grow-0 shrink-0 text-center">
<div class="text-2xl text-sec">8.5</div>
<div class="text-[10px] text-tri uppercase leading-none">12 Critics</div>
</div>
<div class="grow-0 shrink-0 text-center">
<div class="text-2xl text-sec">9.1</div>
<div class="text-[10px] text-tri uppercase leading-none">1.2K Players</div>
</div>
</div>
</div>
</li>
<li class="col-span-12 md:col-span-6">
<div class="rounded-lg shadow bg-mai py-4">
<div class="flex items-center px-4">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="h-6 grow-0 shrink-0 mr-4 text-tri"><path d="M14 6c-0.55 0-1 0.45-1 1v4c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-0.55-0.45-1-1-1zM2 6c-0.55 0-1 0.45-1 1v4c0 0.55 0.45 1 1 1s1-0.45 1-1v-4c0-0.55-0.45-1-1-1zM3.5 11.5c0 0.828 0.672 1.5 1.5 1.5v0 2c0 0.55 0.45 1 1 1s1-0.45 1-1v-2h2v2c0 0.55 0.45 1 1 1s1-0.45 1-1v-2c0.828 0 1.5-0.672 1.5-1.5v-5.5h-9v5.5z"></path><path d="M12.472 5c-0.152-1.373-0.922-2.559-2.025-3.276l0.5-1.001c0.123-0.247 0.023-0.547-0.224-0.671s-0.547-0.023-0.671 0.224l-0.502 1.004-0.13-0.052c-0.446-0.148-0.924-0.229-1.42-0.229s-0.974 0.081-1.42 0.229l-0.13 0.052-0.502-1.004c-0.123-0.247-0.424-0.347-0.671-0.224s-0.347 0.424-0.224 0.671l0.5 1.001c-1.103 0.716-1.873 1.903-2.025 3.276v0.5h8.972v-0.5h-0.028zM6.5 4c-0.276 0-0.5-0.224-0.5-0.5s0.223-0.499 0.499-0.5c0 0 0.001 0 0.001 0s0.001-0 0.001-0c0.276 0.001 0.499 0.224 0.499 0.5s-0.224 0.5-0.5 0.5zM9.5 4c-0.276 0-0.5-0.224-0.5-0.5s0.223-0.499 0.499-0.5c0 0 0.001 0 0.001 0s0.001-0 0.002-0c0.276 0.001 0.499 0.224 0.499 0.5s-0.224 0.5-0.5 0.5z"></path></svg>
<div class="grow shrink text-xl text-pri font-bold leading-none tracking-wider">Android</div>
<div class="text-tri text-xs leading-none uppercase">Apr 07, 2020</div>
</div>
<hr class="mt-3 mb-3 border-sep">
<div class="flex items-end justify-between px-4">
<div class="grow-0 shrink-0 text-center">
<div class="text-5xl font-bold text-yel">6.9</div>
<div class="text-xs text-tri uppercase leading-none">playscore</div>
</div>
<div class="grow-0 shrink-0 text-center">
<div class="text-2xl text-sec">6.7</div>
<div class="text-[10px] text-tri uppercase leading-none">3 Critics</div>
</div>
<div class="grow-0 shrink-0 text-center">
<div class="text-2xl text-sec">7.1</div>
<div class="text-[10px] text-tri uppercase leading-none">30K Players</div>
</div>
</div>
</div>
</li>
<li class="col-span-12 md:col-span-6">
<div class="rounded-lg shadow bg-mai py-4">
<div class="flex items-center px-4">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="h-6 grow-0 shrink-0 mr-4 text-tri"><path d="M0 3.449L9.75 2.1v9.451H0m10.949-9.602L24 0v11.4H10.949M0 12.6h9.75v9.451L0 20.699M10.949 12.6H24V24l-12.9-1.801"></path></svg>
<div class="grow shrink text-xl text-pri font-bold leading-none tracking-wider">PC</div>
<div class="text-tri text-xs leading-none uppercase">Apr 20, 2024</div>
</div>
<hr class="mt-3 mb-3 border-sep">
<div class="flex items-end justify-between px-4">
<div class="grow-0 shrink-0 text-center">
<div class="text-5xl font-bold text-sep">NA</div>
<div class="text-xs text-tri uppercase leading-none">playscore</div>
</div>
<div class="grow-0 shrink-0 text-center">
<div class="text-2xl text-sep">tbd</div>
<div class="text-[10px] text-tri uppercase leading-none">0 Critics</div>
</div>
<div class="grow-0 shrink-0 text-center">
<div class="text-2xl text-sec">9.2</div>
<div class="text-[10px] text-tri uppercase leading-none">301 Players</div>
</div>
</div>
</div>
</li>
<li class="col-span-12 md:col-span-6">
<div class="rounded-lg shadow bg-mai py-4">
<div class="flex items-center px-4">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="h-6 grow-0 shrink-0 mr-4 text-tri"><path d="M8.984 2.596v17.547l3.915 1.261V6.688c0-.69.304-1.151.794-.991.636.18.76.814.76 1.505v5.875c2.441 1.193 4.362-.002 4.362-3.152 0-3.237-1.126-4.675-4.438-5.827-1.307-.448-3.728-1.186-5.39-1.502zm4.656 16.241l6.296-2.275c.715-.258.826-.625.246-.818-.586-.192-1.637-.139-2.357.123l-4.205 1.5V14.98l.24-.085s1.201-.42 2.913-.615c1.696-.18 3.785.03 5.437.661 1.848.601 2.04 1.472 1.576 2.072-.465.6-1.622 1.036-1.622 1.036l-8.544 3.107V18.86zM1.807 18.6c-1.9-.545-2.214-1.668-1.352-2.32.801-.586 2.16-1.052 2.16-1.052l5.615-2.013v2.313L4.205 17c-.705.271-.825.632-.239.826.586.195 1.637.15 2.343-.12L8.247 17v2.074c-.12.03-.256.044-.39.073-1.939.331-3.996.196-6.038-.479z"></path></svg>
<div class="grow shrink text-xl text-pri font-bold leading-none tracking-wider">PlayStation 5</div>
<div class="text-tri text-xs leading-none uppercase">Q3 2024</div>
</div>
</div>
</li>
<li class="col-span-12 md:col-span-6">
<div class="rounded-lg shadow bg-mai py-4">
<div class="flex items-center px-4">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img" viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg" class="h-6 grow-0 shrink-0 mr-4 text-tri"><path d="M14.176 24h3.674c3.376 0 6.15-2.774 6.15-6.15V6.15C24 2.775 21.226 0 17.85 0H14.1c-.074 0-.15.074-.15.15v23.7c-.001.076.075.15.226.15zm4.574-13.199c1.351 0 2.399 1.125 2.399 2.398 0 1.352-1.125 2.4-2.399 2.4-1.35 0-2.4-1.049-2.4-2.4-.075-1.349 1.05-2.398 2.4-2.398zM11.4 0H6.15C2.775 0 0 2.775 0 6.15v11.7C0 21.226 2.775 24 6.15 24h5.25c.074 0 .15-.074.15-.149V.15c.001-.076-.075-.15-.15-.15zM9.676 22.051H6.15c-2.326 0-4.201-1.875-4.201-4.201V6.15c0-2.326 1.875-4.201 4.201-4.201H9.6l.076 20.102zM3.75 7.199c0 1.275.975 2.25 2.25 2.25s2.25-.975 2.25-2.25c0-1.273-.975-2.25-2.25-2.25s-2.25.977-2.25 2.25z"></path></svg>
<div class="grow shrink text-xl text-pri font-bold leading-none tracking-wider">Nintendo Switch</div>
<div class="text-tri text-xs leading-none uppercase">No release date</div>
</div>
</div>
</li>
<li class="col-span-12 md:col-span-6">
<div class="rounded-lg shadow bg-mai py-4">
<div class="flex items-center px-4">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="h-6 grow-0 shrink-0 mr-4 text-tri"><path d="M4.102 21.033C6.211 22.881 8.977 24 12 24c3.026 0 5.789-1.119 7.902-2.967 1.877-1.912-4.316-8.709-7.902-11.417-3.582 2.708-9.779 9.505-7.898 11.417zm11.16-14.406c2.5 2.961 7.484 10.313 6.076 12.912C23.002 17.48 24 14.861 24 12.004c0-3.34-1.365-6.362-3.57-8.536 0 0-.027-.022-.082-.042-.063-.022-.152-.045-.281-.045-.592 0-1.985.434-4.805 3.246zM3.654 3.426c-.057.02-.082.041-.086.042C1.365 5.642 0 8.664 0 12.004c0 2.854.998 5.473 2.661 7.533-1.401-2.605 3.579-9.951 6.08-12.91-2.82-2.813-4.216-3.245-4.806-3.245-.131 0-.223.021-.281.046v-.002zM12 3.551S9.055 1.828 6.755 1.746c-.903-.033-1.454.295-1.521.339C7.379.646 9.659 0 11.984 0H12c2.334 0 4.605.646 6.766 2.085-.068-.046-.615-.372-1.52-.339C14.946 1.828 12 3.545 12 3.545v.006z"></path></svg>
<div class="grow shrink text-xl text-pri font-bold leading-none tracking-wider">Series X|S</div>
<div class="text-tri text-xs leading-none uppercase">No release date</div>
</div>
</div>
</li>
</ul>
</section>
<section class="mb-10 lg:mb-12">
<div class="flex flex-wrap md:flex-nowrap gap-4">
<div class="grow shrink w-full">
<h3 class="text-sm font-semibold text-sec mb-1">Downloadable Content</h3>
<p class="text-tri text-xs">This requires the base game <a href="#" class="text-act">Ori and the Will of the Wisps</a> to play</p>
</div>
<div class="grow shrink w-full">
<h3 class="text-sm font-semibold text-sec mb-1">Early access</h3>
<p class="text-tri text-xs">It's playable but expect bugs, missing features, and changes as development continues.</p>
</div>
<div class="grow shrink w-full">
<h3 class="text-sm font-semibold text-sec mb-1">Microtransactions</h3>
<p class="text-tri text-xs">This game includes in-game purchases. For more info, visit our <a href="https://whatoplay.com/post/microtransactions/">microtransactions guide</a>.</p>
</div>
</div>
</section>
<section class="mb-10 lg:mb-12">
<div class="flex items-center">
<h2 class="grow shrink text-sec font-normal text-xl lg:text-2xl">Critic Reviews</h2>
<a href="#" class="text-sm font-bold text-act">View all (35)</a>
</div>
<hr class="mt-2 mb-4 border-sep">
<!-- START: If no reviews, display this message -->
<p class="text-base text-tri mb-4">This game hasn't been reviewed by our <a href="#" class="text-act">accredited critics yet</a>. Check back at a later date for their expert opinions!</p>
<!-- END -->
<ul class="grid grid-cols-12 gap-4 mb-6">
<li class="flex flex-col col-span-12 md:col-span-6 rounded-lg shadow overflow-hidden bg-mai">
<div class="flex items-center border-b border-sep p-4">
<div class="w-10 h-10 shrink-0 grow-0 mr-4"><img src="https://cdn2.whatoplay.com/publications/gamespot.webp" class="w-full"></div>
<h3 class="shrink grow text"><a href="#" class="text-pri">GameSpot</a></h3>
<div class="text-pri shrink-0 grow-0 text-2xl font-bold">8.0</div>
</div>
<figure class="grow px-4 pt-4">
<blockquote class="text-sec text-sm leading-relaxed mb-2" cite="{url of the review}">
<p class="line-clamp-5">Sky is both different to everything thatgamecompany has made before but also a smart evolution of what makes its games special. It's simple to play while feeling incredible at the same time, making the act of flight exciting every time your feet leave the ground. It also features a fascinating spin on in-game purchases, locking its most alluring rewards behind the action of making friends and making a positive enough impression on them. That means you have to play a lot of Sky to eventually work towards what you want, which saps some life out of the gorgeous vignettes you're free to explore.</p>
</blockquote>
<figcaption class="text-tri text-sm">Alessandro Barbosa — Jul 29, 2019</figcaption>
</figure>
<div class="p-4 flex text-sm">
<div class="grow shrink text-tri">Reviewed on iOS</div>
<div class=""><a href="#" class="text-act">Read full review <span class="text-xs material-symbols-rounded">open_in_new</span></a></div>
</div>
</li>
<li class="flex flex-col col-span-12 md:col-span-6 rounded-lg shadow overflow-hidden bg-mai">
<div class="flex items-center border-b border-sep p-4">
<div class="w-10 h-10 shrink-0 grow-0 mr-4"><img src="https://cdn2.whatoplay.com/publications/pcgamer.webp" class="w-full"></div>
<h3 class="shrink grow text"><a href="#" class="text-pri">Destructoid</a></h3>
<div class="text-pri shrink-0 grow-0 text-2xl font-bold">6.5</div>
</div>
<figure class="grow px-4 pt-4">
<blockquote class="text-sec text-sm leading-relaxed mb-2" cite="{url of the review}">
<p class="line-clamp-5">I would need to grow a few more hands to count how many times I had to stop playing Sky out of frustration. Whether it was the game not allowing me to move off a ledge or sending my character spiraling down the side of a mountain when all I did was slightly touch the digital joystick, the touch controls and often excruciating camera gut what should be an awe-inspiring vision of discovery. I absolutely believe Sky: Children of the Light is a game most everyone should experience because it is blissful, imaginative, and a sight to behold.</p>
</blockquote>
<figcaption class="text-tri text-sm">CJ Andriessen — Jul 26, 2019</figcaption>
</figure>
<div class="p-4 flex text-sm">
<div class="grow shrink text-tri">Reviewed on iOS</div>
<div><a href="#" class="text-act">Read full review <span class="text-xs material-symbols-rounded">open_in_new</span></a></div>
</div>
</li>
<li class="flex flex-col col-span-12 md:col-span-6 rounded-lg shadow overflow-hidden bg-mai">
<div class="flex items-center border-b border-sep p-4">
<div class="w-10 h-10 shrink-0 grow-0 mr-4"><img src="https://cdn2.whatoplay.com/publications/ign.webp" class="w-full"></div>
<h3 class="shrink grow text"><a href="#" class="text-pri">IGN</a></h3>
<div class="text-pri shrink-0 grow-0 text-2xl font-bold">8.5</div>
</div>
<figure class="grow px-4 pt-4">
<blockquote class="text-sec text-sm leading-relaxed mb-2" cite="{url of the review}">
<p class="line-clamp-5">Sky: Children of the Light is a bigger and bolder follow-up that expands on what made Journey so great.</p>
</blockquote>
<figcaption class="text-tri text-sm">David Jagneaux — Jul 20, 2019</figcaption>
</figure>
<div class="p-4 flex text-sm">
<div class="grow shrink text-tri">Reviewed on iOS</div>
<div><a href="#" class="text-act">Read full review <span class="text-xs material-symbols-rounded">open_in_new</span></a></div>
</div>
</li>
<li class="flex flex-col col-span-12 md:col-span-6 rounded-lg shadow overflow-hidden bg-mai">
<div class="flex items-center border-b border-sep p-4">
<div class="w-10 h-10 shrink-0 grow-0 mr-4"><img src="https://cdn2.whatoplay.com/publications/gameinformer.webp" class="w-full"></div>
<h3 class="shrink grow text"><a href="#" class="text-pri">Game Informer</a></h3>
<div class="text-pri shrink-0 grow-0 text-2xl font-bold">8.5</div>
</div>
<figure class="grow px-4 pt-4">
<blockquote class="text-sec text-sm leading-relaxed mb-2" cite="{url of the review}">
<p class="line-clamp-5">The new game from the makers of Journey is a thoughtful contemplation on positive interactions with friends, strangers, and the wider world. </p>
</blockquote>
<figcaption class="text-tri text-sm">Giovanni Colantonio — Jul 18, 2019</figcaption>
</figure>
<div class="p-4 flex text-sm">
<div class="grow shrink text-tri">Reviewed on Android</div>
<div><a href="#" class="text-act">Read full review <span class="text-xs material-symbols-rounded">open_in_new</span></a></div>
</div>
</li>
<li class="flex flex-col col-span-12 md:col-span-6 rounded-lg shadow overflow-hidden bg-mai">
<div class="flex items-center border-b border-sep p-4">
<div class="w-10 h-10 shrink-0 grow-0 mr-4"><img src="https://cdn2.whatoplay.com/publications/easyallies.webp" class="w-full"></div>
<h3 class="shrink grow text"><a href="#" class="text-pri">Euro Gamer</a></h3>
<div class="text-pri shrink-0 grow-0 text-2xl font-bold">8.5</div>
</div>
<div class="aspect-video">
<iframe class="w-full h-full" width="560" height="315" src="https://www.youtube.com/embed/fgxLf3GY8RY?si=oVsOrH5qJZFW1fMO&controls=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="p-4 flex text-sm">
<div class="grow shrink text-tri">Reviewed on PC, Switch</div>
<div><a href="#" class="text-act">Watch full review <span class="text-xs material-symbols-rounded">open_in_new</span></a></div>
</div>
</li>
<li class="flex flex-col col-span-12 md:col-span-6 rounded-lg shadow overflow-hidden bg-mai">
<div class="flex items-center border-b border-sep p-4">
<div class="w-10 h-10 shrink-0 grow-0 mr-4"><img src="https://cdn2.whatoplay.com/publications/ign.webp" class="w-full"></div>
<h3 class="shrink grow text"><a href="#" class="text-pri">IGN</a></h3>
<div class="text-pri shrink-0 grow-0 text-2xl font-bold">7.5</div>
</div>
<figure class="grow px-4 pt-4">
<blockquote class="text-sec text-sm leading-relaxed mb-2" cite="{url of the review}">
<p class="line-clamp-5">Thatgamecompany, con Jenova Chen al mando, lo ha vuelto a hacer. Esta vez en formato de bolsillo, Sky: Children of the Light nos conduce a una experiencia de juego interactivo en el que seremos transportados gracias a una banda sonora genial a un mundo onírico lleno de seres de luz. El apartado social le da una vuelta de tuerca que no termina de cuajar en una experiencia tan personal, así como los micropagos. Aunque quizás el elemento novedad ya no está presente, sin duda merece la pena surcar los cielos sin estrellas de Sky.</p>
</blockquote>
<figcaption class="text-tri text-sm">Alessandro Barbosa — Jul 13, 2019</figcaption>
</figure>
<div class="p-4 flex text-sm">
<div class="grow shrink text-tri">Reviewed on iOS</div>
<div class=""><a href="#" class="text-act">Read full review <span class="text-xs material-symbols-rounded">open_in_new</span></a></div>
</div>
</li>
</ul>
<a href="#" title="Read all critic reviews" class="flex text-act btn-base items-center justify-center">
<span class="text-sm pr-3">View all 35 critic reviews</span>
<span class="material-symbols-rounded text-lg">arrow_right_alt</span>
</a>
</section>
<section class="mb-10 lg:mb-12">
<div class="flex items-center">
<h2 class="grow shrink text-sec font-normal text-xl lg:text-2xl">Player Reviews</h2>
</div>
<hr class="mt-2 mb-4 border-sep">
<!-- START: If no reviews, display this message -->
<p class="text-base text-tri mb-4">We're still gathering gamer reviews for this game.</p>
<!-- END -->
<ul class="bg-mai p-4 rounded-lg overflow-hidden">
<li>
<a href="#" class="group flex items-center py-3">
<div class="grow-0 shrink-0 w-10 h-10 aspect-square bg-[url(https://cdn2.whatoplay.com/source/source-1658414574-18.png)] bg-cover mr-4"></div>
<div class="grow shrink">
<h3 class="text-pri group-hover:text-act">Steam</h3>
<div class="text-xs text-tri">73996 ratings</div>
</div>
<div class="grow-0 shrink-0 text-pri shrink-0 grow-0 text-2xl font-bold">9.6</div>
</a>
</li>
<li>
<a href="#" class="group flex items-center py-3">
<div class="grow-0 shrink-0 w-10 h-10 aspect-square bg-[url(https://cdn2.whatoplay.com/source/source-1658399207-13.png)] bg-cover mr-4"></div>
<div class="grow shrink">
<h3 class="text-pri group-hover:text-act">Xbox Official Store</h3>
<div class="text-xs text-tri">3500 ratings</div>
</div>
<div class="grow-0 shrink-0 text-pri shrink-0 grow-0 text-2xl font-bold">9.0</div>
</a>
</li>
<li>
<a href="#" class="group flex items-center py-3">
<div class="grow-0 shrink-0 w-10 h-10 aspect-square bg-[url(https://cdn2.whatoplay.com/source/gamefaqs.png)] bg-cover mr-4"></div>
<div class="grow shrink">
<h3 class="text-pri group-hover:text-act">Game Faqs</h3>
<div class="text-xs text-tri">143 ratings</div>
</div>
<div class="grow-0 shrink-0 text-pri shrink-0 grow-0 text-2xl font-bold">8.4</div>
</a>
</li>
<li>
<a href="#" class="group flex items-center py-3">
<div class="grow-0 shrink-0 w-10 h-10 aspect-square bg-[url(https://cdn2.whatoplay.com/logo_v2.png)] bg-cover mr-4"></div>
<div class="grow shrink">
<h3 class="text-pri group-hover:text-act">whatoplay</h3>
<div class="text-xs text-tri">39 ratings</div>
</div>
<div class="grow-0 shrink-0 text-pri shrink-0 grow-0 text-2xl font-bold">8.9</div>
</a>
</li>
</ul>
</section>
<section class="mb-10 lg:mb-12">
<div class="flex items-center">
<h2 class="grow shrink text-sec font-normal text-xl lg:text-2xl">Community Reviews</h2>
<a href="#" class="text-sm font-bold text-act">View all (11)</a>
</div>
<hr class="mt-2 mb-4 border-sep">
<!-- START: If no reviews, display this message -->
<p class="text-base text-tri mb-4">Be the first to review this game! Help others discover if this is right game for them.<p>
<!-- END -->
<div class="bg-mai rounded-lg shadow mb-4">
<div class="py-4 px-4 md:px-6">
<h3 class="text-pri mb-2">How would you rate Sky: Children of the Light?</h3>
<div class="flex items-center w-full max-w-[500px] mb-4">
<div class="grow shrink grid grid-cols-10 h-[24px] bg-sep mr-6 rounded overflow-hidden">
<div class="col-span-1 bg-red/50"></div>
<div class="col-span-1 bg-red/50"></div>
<div class="col-span-1 bg-red/50"></div>
<div class="col-span-1 bg-red/50"></div>
<div class="col-span-1 bg-yel/50"></div>
<div class="col-span-1 bg-yel/50"></div>
<div class="col-span-1 bg-yel/50"></div>
<div class="col-span-1 bg-yel/50"></div>
<div class="col-span-1 bg-gre/50"></div>
<div class="col-span-1 bg-gre/50"></div>
</div>
<div class="grow-0 shrink-0 text-3xl font-bold text-pri">8.2</div>
</div>
<h3 class="text-pri mb-2">Which platform did you play the game? <em class="text-tri">(Required)</em></h4>
<div class="flex mb-4">
<label class="flex items-center text-sec font-bold text-sm mr-6">
<input type="checkbox" class="mr-2"> PC
</label>
<label class="flex items-center text-sec font-bold text-sm mr-6">
<input type="checkbox" class="mr-2"> iOS
</label>
<label class="flex items-center text-sec font-bold text-sm mr-6">
<input type="checkbox" class="mr-2"> Android
</label>
</div>
<input type="text" class="text-sec bg-sup px-4 py-2 rounded w-full mb-4" placeholder="Review title (Optional)">
<textarea type="text" class="text-pri border-0 bg-sup p-4 rounded w-full" rows="5"></textarea>
<p class="text-tri text-xs mb-4">Share your full experience! Detailed reviews help fellow gamers make informed decisions.</p>
<div class="flex items-center">
<span class="shrink grow text-base text-sec">Contains spoiler</span>
<button class="btn-base btn-pri inline-flex items-center py-2 px-4 rounded shadow hover:bg-[#00945B]">
Publish
</button>
</div>
</div>
</div>
<ul class="grid grid-cols-12 gap-4 mb-6">
<li class="flex flex-col col-span-12 md:col-span-6 rounded-lg shadow overflow-hidden bg-mai">
<div class="flex items-center border-b border-sep p-4">
<div class="w-10 h-10 shrink-0 grow-0 mr-4 rounded-full overflow-hidden"><img src="https://cdn6.whatoplay.com/user/256x/Xy6gVcHxR/profile-oW23GZcJ7C4Pxdt3S5Pwsi9TLjWBRQAG.webp" class="w-full"></div>
<div class="grow shrink">
<h4><a href="#" class="text-pri line-clamp-1 mr-3">jamesmarcello19</a></h4>
<div class="text-tri text-xs">Jun 3, 2024</div>
</div>
<div class="text-pri shrink-0 grow-0 text-2xl font-bold">9.5</div>
</div>
<figure class="p-4 flex-grow">
<blockquote class="text-sec text-sm leading-relaxed" cite="{url of the review}">
<p class="line-clamp-5">This is literally the cutest, most exiting, most extensive, and most immersive game I've ever played, and somehow it's free?!? Me and my boyfriend played this together recently and we LOVE it!!! It's a long game with tons of replay opportunities and its design is so beautiful! Very basic and simple but designed so well! </p>
</blockquote>
</figure>
<div class="p-4 flex text-sm">
<div class="grow shrink text-tri">Reviewed on Android</div>
<div class=""><a href="#" class="text-act">Read full review</a></div>
</div>
</li>
<li class="flex flex-col col-span-12 md:col-span-6 rounded-lg shadow overflow-hidden bg-mai">
<div class="flex items-center border-b border-sep p-4">
<div class="w-10 h-10 shrink-0 grow-0 mr-4 rounded-full overflow-hidden"><img src="https://cdn6.whatoplay.com/user/256x/mgBw9Rh2L/profile-e6ju6HmvvHLH4f4n0vCpFV1Nq0XKBks.webp" class="w-full"></div>
<div class="grow shrink">
<h4><a href="#" class="text-pri line-clamp-1 mr-3">abigail</a></h4>
<div class="text-tri text-xs">Sep 21, 2023</div>
</div>
<div class="text-pri shrink-0 grow-0 text-2xl font-bold">10</div>
</div>
<figure class="p-4 flex-grow">
<blockquote class="text-sec text-sm leading-relaxed" cite="{url of the review}">
<p class="line-clamp-5">Probably the only Massively Multiplayer Online game that your mom would love, and for good reason, yet it still appeals to gamers. At its core, it's a collectathon that relies on the beauty of its maps, music and ambiance to make the collecting enjoyable. It also lets all players work together to accomplish this goal, and others, which leads into the top notch MMO mechanics - people can't even see your outfit without your consent. </p>
</blockquote>
</figure>
<div class="p-4 flex text-sm">
<div class="grow shrink text-tri">Reviewed on Android</div>
<div class=""><a href="#" class="text-act">Read full review</a></div>
</div>
</li>
<li class="flex flex-col col-span-12 md:col-span-6 rounded-lg shadow overflow-hidden bg-mai">
<div class="flex items-center border-b border-sep p-4">
<div class="w-10 h-10 shrink-0 grow-0 mr-4 rounded-full overflow-hidden"><img src="https://cdn6.whatoplay.com/user/256x/FeHiaYAPI/profile-7RAcml7dx4Sp0VtHik1EVYcm2v477is.webp" class="w-full"></div>
<div class="grow shrink">
<h4><a href="#" class="text-pri line-clamp-1 mr-3">livjean</a></h4>
<div class="text-tri text-xs">Jun 12, 2022</div>
</div>
<div class="text-pri shrink-0 grow-0 text-2xl font-bold">6.3</div>
</div>
<figure class="p-4 flex-grow">
<blockquote class="text-sec text-sm leading-relaxed" cite="{url of the review}">
<p class="line-clamp-5">Great game overall and beautiful graphics. Just be careful who you befriend and talk to. You will definitely run into online predators in this game unknowingly, they could be any of ur friends. I suggest you play with people that you know in real life and to watch the strangers that you friend.</p>
</blockquote>
</figure>
<div class="p-4 flex text-sm">
<div class="grow shrink text-tri">Reviewed on iOS</div>
<div class=""><a href="#" class="text-act">Read full review</a></div>
</div>
</li>
<li class="flex flex-col col-span-12 md:col-span-6 rounded-lg shadow overflow-hidden bg-mai">
<div class="flex items-center border-b border-sep p-4">
<div class="w-10 h-10 shrink-0 grow-0 mr-4 rounded-full overflow-hidden"><img src="https://cdn6.whatoplay.com/user/256x/DTHlYEpO2/profile-1VJ_wSgEt1l56xegmDLSi8mCL9TtFrdb.webp" class="w-full"></div>
<div class="grow shrink">
<h4><a href="#" class="text-pri line-clamp-1 mr-3">gaminginthemoment</a></h4>
<div class="text-tri text-xs">Mar 13, 2021</div>
</div>
<div class="text-pri shrink-0 grow-0 text-2xl font-bold">6.5</div>
</div>
<figure class="p-4 flex-grow">
<blockquote class="text-sec text-sm leading-relaxed" cite="{url of the review}">
<p class="line-clamp-5">Knowing what I was walking into my previous fond experience of Journey I was hoping to rekindle the flame that had long been extinguished. I failed to do so. While the world is one of the most beautiful experiences I have had on a mobile device, it was unable to keep my interest for more than the few hours I spent with it.</p>
</blockquote>
</figure>
<div class="p-4 flex text-sm">
<div class="grow shrink text-tri">Reviewed on iOS</div>
<div class=""><a href="#" class="text-act">Read full review</a></div>
</div>
</li>
<li class="flex flex-col col-span-12 md:col-span-6 rounded-lg shadow overflow-hidden bg-mai">
<div class="flex items-center border-b border-sep p-4">
<div class="w-10 h-10 shrink-0 grow-0 mr-4 rounded-full overflow-hidden"><img src="https://cdn6.whatoplay.com/user/256x/e4OXCnMfk/profile-S4D_3pDNWcgLlRMwJpGyZHB6Ts9fcSm4.webp" class="w-full"></div>
<div class="grow shrink">
<h4><a href="#" class="text-pri line-clamp-1 mr-3">muhammad naufal arfan zaifuzzaman (NAUFAL STRONG)</a></h4>
<div class="text-tri text-xs">Mar 13, 2021</div>
</div>
<div class="text-pri shrink-0 grow-0 text-2xl font-bold">10</div>
</div>
<div class="p-4 flex text-sm">
<div class="grow shrink text-tri">Reviewed on Android</div>
</div>
</li>
<li class="flex flex-col col-span-12 md:col-span-6 rounded-lg shadow overflow-hidden bg-mai">
<div class="flex items-center border-b border-sep p-4">
<div class="w-10 h-10 shrink-0 grow-0 mr-4 rounded-full overflow-hidden"><img src="https://cdn6.whatoplay.com/user/256x/qzHFlJ3ce/profile-SeyjwWVHHArn63wZOkHsHn8an6B4Rfi.webp" class="w-full"></div>
<div class="grow shrink">
<h4><a href="#" class="text-pri line-clamp-1 mr-3">Milton Murillo</a></h4>
<div class="text-tri text-xs">Feb 20, 2024</div>
</div>
<div class="text-pri shrink-0 grow-0 text-2xl font-bold">9.5</div>
</div>
<div class="p-4 flex text-sm">
<div class="grow shrink text-tri">Reviewed on iOS</div>
</div>
</li>
</ul>
<a href="#" title="Read all critic reviews" class="flex text-act btn-base items-center justify-center">
<span class="text-sm pr-3">View all 11 community reviews</span>
<span class="material-symbols-rounded text-lg">arrow_right_alt</span>
</a>
</section>
<div class="mb-10 lg:mb-12">
<h2 class="grow shrink text-sec font-normal text-xl lg:text-2xl">About the game</h2>
<hr class="mt-2 mb-4 border-sep">
<div class="widget-content">
<div class="mb-4 w-full h-[125px] bg-mai text-center text-tri p-12">
Trailer and Screenshots Here
</div>
<div class="flex flex-wrap space-y-2 items-end space-x-3 text-xs mb-4">
<a href="#" class="text-sec font-semibold border border-sec py-1 px-3 rounded-2xl hover:text-act hover:border-act">Action</a>
<a href="#" class="text-sec font-semibold border border-sec py-1 px-3 rounded-2xl hover:text-act hover:border-act">Adventure</a>
<a href="#" class="text-sec font-semibold border border-sec py-1 px-3 rounded-2xl hover:text-act hover:border-act">Metroidvania</a>
<a href="#" class="text-sec font-semibold border border-sec py-1 px-3 rounded-2xl hover:text-act hover:border-act">Platformer</a>
<a href="#" class="text-sec font-semibold border border-sec py-1 px-3 rounded-2xl hover:text-act hover:border-act">Single-player</a>
</div>
<div class="text-sec text-sm leading-loose mb-4">
<p>The little spirit Ori is no stranger to peril, but when a fateful flight puts the owlet Ku in harm’s way, it will take more than bravery to bring a family back together, heal a broken land, and discover Ori’s true destiny. From the creators of the acclaimed action-platformer Ori and the Blind Forest comes the highly anticipated sequel. Embark on an all-new adventure in a vast world filled with new friends and foes that come to life in stunning, hand-painted artwork. Set to a fully orchestrated original score, Ori and the Will of the Wisps continues the Moon Studios tradition of tightly crafted platforming action and deeply emotional storytelling.</p>
</div>
<ul class="text-sec text-sm space-y-3">
<p><span class="font-bold mb-2">Developer:</span> Moon Studio GmBH, Devolver Digital</p>
<p><span class="font-bold mb-2">Official Links:</span> <a href="#" class="text-act">Website</a> • <a href="#" class="text-act">Wikipedia</a></p>
</ul>
</div>
</div>
<div class="mb-10 lg:mb-12">
<h2 class="grow shrink text-sec font-normal text-xl lg:text-2xl">In the news</h2>
<hr class="mt-2 mb-4 border-sep">
<ul>
<li class="mb-6">
<a href="#" class="group flex flex-wrap lg:flex-nowrap lg:items-center">
<img class="grow-0 shrink-0 w-full h-auto mb-2 lg:w-[250px] lg:mr-4 lg:mb-0" src="https://cdn2.whatoplay.com/news/fragpunkheader.jpg" alt="">
<div class="grow shrink">
<h3 class="text-pri text-lg font-semibold mb-2 group-hover:text-act">Sky: Children of the Light Announced for Xbox</h3>
<p class="text-tri text-xs mb-2">By Feliciano Mondigo III • June 16, 2024</p>
<p class="text-sec text-sm leading-normal">18bit has announced the upcoming release of the indie hit to the Series X|S and Xbox One sometime this year.</p>
</div>
</a>
</li>
<li class="mb-6">
<a href="#" class="group flex flex-wrap lg:flex-nowrap lg:items-center">
<img class="grow-0 shrink-0 w-full h-auto mb-2 lg:w-[250px] lg:mr-4 lg:mb-0" src="https://cdn2.whatoplay.com/news/medievaldynastyheader.jpg" alt="">
<div class="grow shrink">
<h3 class="text-pri text-lg font-semibold mb-2 group-hover:text-act">Medieval Dynasty adds upcoming Co-Op, Cross-play and New Map for Consoles</h3>
<p class="text-tri text-xs mb-2">By Feliciano Mondigo III • June 16, 2024</p>
<p class="text-sec text-sm leading-normal">Co-op, cross-play and a new map will be available on Xbox Series X/S, PlayStation 5, and PC starting June 27th.</p>
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="col-span-12 lg:col-span-4">
<aside class="mb-10">
<h2 class="grow shrink text-sec font-normal text-xl lg:text-2xl">More games like this</h2>
<hr class="mt-2 mb-2 border-sep">
<ul>
<li class="py-2">
<a href="#" class="group flex">
<div class="shrink-0 grow-0 h-[72px] w-[72px] overflow-hidden rounded bg-[url(https://cdn2.whatoplay.com/boxart/sqr/150x/654-1520397663.webp)] bg-cover mr-4"></div>
<div class="shrink grow pt-1 pr-4">
<h3 class="text-pri font-semibold text-base leading-snug line-clamp-2 mb-1 group-hover:text-act">Trine 2</h3>
<div class="text-tri leading-snug text-xs">PC, PS4, Series X|S</div>
</div>
<div class="text-xl font-bold text-gre leading-none pt-2">8.2</div>
</a>
</li>
<li class="py-2">
<a href="#" class="group flex">
<div class="shrink-0 grow-0 h-[72px] w-[72px] overflow-hidden rounded bg-[url(https://cdn2.whatoplay.com/boxart/sqr/150x/21496-1604542113.webp)] bg-cover mr-4"></div>
<div class="shrink grow pt-1 pr-4">
<h3 class="text-pri font-semibold text-base leading-snug line-clamp-2 mb-1 group-hover:text-act">Knights and Bikes</h3>
<ul class="flex gap-1 text-xs text-tri leading-snug">
<div class="text-tri leading-snug text-xs">PC, Switch</div>
</ul>
</div>
<div class="text-xl font-bold text-gre leading-none pt-2">8.0</div>
</a>
</li>
<li class="py-2">
<a href="#" class="group flex">
<div class="shrink-0 grow-0 h-[72px] w-[72px] overflow-hidden rounded bg-[url(https://cdn2.whatoplay.com/boxart/sqr/150x/19074-1571665481.webp)] bg-cover mr-4"></div>
<div class="shrink grow pt-1 pr-4">
<h3 class="text-pri font-semibold text-base leading-snug line-clamp-2 mb-1 group-hover:text-act">Nine Parchments</h3>
<ul class="flex gap-1 text-xs text-tri leading-snug">
<div class="text-tri leading-snug text-xs">PC, PS5, Switch</div>
</ul>
</div>
<div class="text-xl font-bold text-yel leading-none pt-2">6.2</div>
</a>
</li>
</ul>
</aside>
<div class="py-6 px-4">
<h3 class="text-tri text-sm font-bold">Join us</h3>
<ul class="mt-3 mb-6 flex flex-wrap items-center justify-between text-tri">
<li>
<a href="https://www.youtube.com/@whatoplay" title="Youtube"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 576 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 fill-skin-tri/80 lg:hover:fill-skin-pri" aria-hidden="true"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path></svg></a>
</li>
<li>
<a href="https://www.threads.net/@whatoplay" title="Threads"><svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img" viewBox="0 0 448 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 fill-skin-tri/80 lg:hover:fill-skin-pri" aria-hidden="true"><path d="M331.5 235.7c2.2 .9 4.2 1.9 6.3 2.8c29.2 14.1 50.6 35.2 61.8 61.4c15.7 36.5 17.2 95.8-30.3 143.2c-36.2 36.2-80.3 52.5-142.6 53h-.3c-70.2-.5-124.1-24.1-160.4-70.2c-32.3-41-48.9-98.1-49.5-169.6V256v-.2C17 184.3 33.6 127.2 65.9 86.2C102.2 40.1 156.2 16.5 226.4 16h.3c70.3 .5 124.9 24 162.3 69.9c18.4 22.7 32 50 40.6 81.7l-40.4 10.8c-7.1-25.8-17.8-47.8-32.2-65.4c-29.2-35.8-73-54.2-130.5-54.6c-57 .5-100.1 18.8-128.2 54.4C72.1 146.1 58.5 194.3 58 256c.5 61.7 14.1 109.9 40.3 143.3c28 35.6 71.2 53.9 128.2 54.4c51.4-.4 85.4-12.6 113.7-40.9c32.3-32.2 31.7-71.8 21.4-95.9c-6.1-14.2-17.1-26-31.9-34.9c-3.7 26.9-11.8 48.3-24.7 64.8c-17.1 21.8-41.4 33.6-72.7 35.3c-23.6 1.3-46.3-4.4-63.9-16c-20.8-13.8-33-34.8-34.3-59.3c-2.5-48.3 35.7-83 95.2-86.4c21.1-1.2 40.9-.3 59.2 2.8c-2.4-14.8-7.3-26.6-14.6-35.2c-10-11.7-25.6-17.7-46.2-17.8H227c-16.6 0-39 4.6-53.3 26.3l-34.4-23.6c19.2-29.1 50.3-45.1 87.8-45.1h.8c62.6 .4 99.9 39.5 103.7 107.7l-.2 .2zm-156 68.8c1.3 25.1 28.4 36.8 54.6 35.3c25.6-1.4 54.6-11.4 59.5-73.2c-13.2-2.9-27.8-4.4-43.4-4.4c-4.8 0-9.6 .1-14.4 .4c-42.9 2.4-57.2 23.2-56.2 41.8l-.1 .1z"></path></svg></a>
</li>
<li>
<a href="https://www.facebook.com/whatoplay" title="Facebook"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 fill-skin-tri/80 lg:hover:fill-skin-pri" aria-hidden="true"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"></path></svg></a>
</li>
<li>
<a href="https://twitter.com/whatoplay" title="X"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 fill-skin-tri/80 lg:hover:fill-skin-pri" aria-hidden="true"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path></svg></a>
</li>
<li>
<a href="https://www.instagram.com/whatoplay/" title="Instagram"><svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img" viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 fill-skin-tri/80 lg:hover:fill-skin-pri" aria-hidden="true"><title></title><path d="M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z"></path></svg></a>
</li>
<li>
<a href="https://www.tiktok.com/@whatoplay.com" title="Tiktok"><svg stroke="currentColor" fill="currentColor" stroke-width="0" role="img" viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 fill-skin-tri/80 lg:hover:fill-skin-pri" aria-hidden="true"><title></title><path d="M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07z"></path></svg></a>
</li>
</ul>
<div class="text-tri text-xs">
<ul class="flex flex-wrap justify-between gap-2 mb-2">
<li><a href="#">Contact</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Our team</a></li>
<li><a href="#">Privacy policy</a></li>
<li><a href="#">Terms</a></li>
</ul>
<span class="font-bold">© 2024 whatoplay</span>
</div>
</div>
</div>
</main>
</div>
</body>
</html>