-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1437 lines (1174 loc) · 141 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 lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="3ee Games website" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="icon" href="/favicon.png" />
<link rel="manifest" href="/site.webmanifest">
<link href="https://fonts.googleapis.com/css?family=Merriweather|Muli:300" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="content-security-policy" content=""><title>Welcome to 3ee Games | Home</title>
<link rel="stylesheet" href="/_app/immutable/assets/pages/__layout.svelte-12972731.css">
<link rel="stylesheet" href="/_app/immutable/assets/pages/index.svelte-c56a91ad.css">
<link rel="stylesheet" href="/_app/immutable/assets/StarField-d157637c.css">
<link rel="modulepreload" href="/_app/immutable/start-d7661c12.js">
<link rel="modulepreload" href="/_app/immutable/chunks/index-2a82a4a8.js">
<link rel="modulepreload" href="/_app/immutable/chunks/index-16dda89e.js">
<link rel="modulepreload" href="/_app/immutable/chunks/paths-396f020f.js">
<link rel="modulepreload" href="/_app/immutable/chunks/singletons-d1fb5791.js">
<link rel="modulepreload" href="/_app/immutable/pages/__layout.svelte-554af088.js">
<link rel="modulepreload" href="/_app/immutable/chunks/config-201c2df4.js">
<link rel="modulepreload" href="/_app/immutable/chunks/accountStore-3492c591.js">
<link rel="modulepreload" href="/_app/immutable/chunks/navigation-0e6511d1.js">
<link rel="modulepreload" href="/_app/immutable/chunks/menuContextStore-c2e700c4.js">
<link rel="modulepreload" href="/_app/immutable/pages/index.svelte-8f6d2f02.js">
<link rel="modulepreload" href="/_app/immutable/chunks/Saos-4482d860.js">
<link rel="modulepreload" href="/_app/immutable/chunks/StarField-32f064e8.js">
</head>
<body>
<div id="svelte">
<header class="svelte-f7ujdu"><nav class="svelte-f7ujdu"><a href="/" class="svelte-f7ujdu"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30.162 5.292" class="svelte-1fksyth"><defs><clipPath id="three-games-logo-svg-header"><ellipse cx="106.822" cy="119.364" fill="none" stroke="#c43b37" stroke-width=".825" rx="49.117" ry="39.162"></ellipse></clipPath></defs><g transform="matrix(.04573 0 0 .04594 2.319 2.243)"><ellipse class="logo-eye-color svelte-1fksyth" cx="16.269" cy="9.431" fill="#3899ed" stroke="#000" stroke-width="2.628" rx="59.737" ry="49.977"></ellipse><g clip-path="url(#three-games-logo-svg-header)" transform="translate(-119.654 -141.447) scale(1.26422)"><ellipse cx="107.576" cy="119.667" rx="26.46" ry="25.524"></ellipse><path d="M77.486 89.412 65.352 77.278l14.94-.163c42.264-.462 61.806-.685 65.178-.743l3.732-.065-12.144 12.145-12.143 12.144-.543-.409c-5.324-4.013-12.023-6.001-18.474-5.483-3.756.302-6.754 1.11-9.997 2.696-2.075 1.014-3.781 2.098-5.245 3.33-.532.449-.983.816-1.002.816-.02 0-5.495-5.46-12.168-12.134zm-.1 60.876L65.352 162.52l14.94.042c42.267.118 61.81.182 65.182.213l3.732.034-12.242-12.045-12.242-12.045-.538.413c-5.292 4.056-11.975 6.099-18.43 5.633-3.758-.272-6.762-1.055-10.019-2.614-2.082-.997-3.797-2.067-5.27-3.288-.536-.444-.99-.808-1.01-.808-.019 0-5.45 5.505-12.069 12.233z"></path></g><ellipse cx="29.051" cy="-1.073" fill="#fff" rx="6.69" ry="6.212"></ellipse></g><g class="logo-font svelte-1fksyth" fill="#3899ed" stroke-width=".265" aria-label="3EE GAMES" font-family="Alata" font-size="4.586" style="line-height:1.25"><path d="M7.955 4.392q-.294 0-.592-.083-.293-.087-.426-.22l.215-.436q.138.11.349.193.21.078.43.078.785 0 .785-.638 0-.27-.215-.435-.211-.166-.574-.166-.252 0-.426.028l.844-1.312H7.079v-.45h2.178l-.954 1.363q.29.01.51.138.224.128.343.339.12.206.12.459 0 .33-.156.591-.156.257-.454.404-.298.147-.711.147ZM9.958.952h1.476v.45h-.967v.93h.78v.459h-.78v1.078h1.119v.454H9.958ZM12.098.952h1.477v.45h-.968v.93h.78v.459h-.78v1.078h1.12v.454h-1.629zM16.936 4.369q-.5 0-.894-.23-.394-.229-.619-.628-.22-.404-.22-.903 0-.487.225-.876.224-.39.623-.61.4-.22.9-.22.27 0 .485.05.22.046.358.11.138.06.188.105l-.202.432q-.284-.23-.839-.23-.367 0-.637.16-.271.161-.413.436-.142.276-.142.615 0 .385.151.688.156.303.426.472.276.165.62.165.215 0 .412-.05.198-.055.335-.17v-.651h-.692v-.472h1.201v1.32q-.165.207-.5.349-.33.138-.766.138zM20.01.947l1.623 3.376h-.591l-.29-.66h-1.545l-.289.66h-.573L19.959.947Zm-.23 1.436-.366.816h1.137l-.362-.812-.198-.463h-.009zM22.787 2.75l-.211-.477-.096.477-.312 1.573h-.51l.698-3.371h.055l.926 1.82.275.61.276-.61.908-1.82h.05l.725 3.37h-.505l-.34-1.572-.1-.477-.184.477-.816 1.573H23.6zM26.018.952h1.477v.45h-.968v.93h.78v.459h-.78v1.078h1.119v.454h-1.628zM28.938 4.369q-.275 0-.545-.097-.271-.096-.39-.215l.243-.436q.096.087.298.183.206.092.394.092.243 0 .395-.114.156-.115.156-.317 0-.156-.083-.27-.082-.115-.202-.188-.119-.078-.339-.189-.261-.128-.358-.192-.445-.298-.445-.826 0-.435.29-.665.288-.234.729-.234.472 0 .802.271l-.243.417q-.087-.091-.248-.156-.156-.068-.334-.068-.23 0-.363.105-.128.101-.128.303 0 .142.082.257.083.11.207.192.128.083.344.202.206.115.316.184.11.064.207.155.133.12.215.285.083.165.083.362 0 .307-.142.523-.138.215-.386.326-.243.11-.555.11z"></path></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" class="s-fjJKdSXdEtef svelte-16qfog0" viewBox="0 0 6 5"><defs class="s-fjJKdSXdEtef"><clipPath id="three-games-logo-svg-header" class="s-fjJKdSXdEtef"><ellipse cx="106.822" cy="119.364" fill="none" stroke="#c43b37" stroke-width=".825" rx="49.117" ry="39.162" class="s-fjJKdSXdEtef"></ellipse></clipPath></defs><g transform="matrix(.04573 0 0 .04594 2.319 2.243)" class="s-fjJKdSXdEtef"><ellipse class="logo-eye-color s-fjJKdSXdEtef svelte-16qfog0" cx="16.269" cy="9.431" fill="#3899ed" stroke="#000" stroke-width="2.628" rx="59.737" ry="49.977"></ellipse><g clip-path="url(#three-games-logo-svg-header)" transform="translate(-119.654 -141.447) scale(1.26422)" class="s-fjJKdSXdEtef"><ellipse cx="107.576" cy="119.667" rx="26.46" ry="25.524" class="s-fjJKdSXdEtef"></ellipse><path d="M77.486 89.412 65.352 77.278l14.94-.163c42.264-.462 61.806-.685 65.178-.743l3.732-.065-12.144 12.145-12.143 12.144-.543-.409c-5.324-4.013-12.023-6.001-18.474-5.483-3.756.302-6.754 1.11-9.997 2.696-2.075 1.014-3.781 2.098-5.245 3.33-.532.449-.983.816-1.002.816-.02 0-5.495-5.46-12.168-12.134zm-.1 60.876L65.352 162.52l14.94.042c42.267.118 61.81.182 65.182.213l3.732.034-12.242-12.045-12.242-12.045-.538.413c-5.292 4.056-11.975 6.099-18.43 5.633-3.758-.272-6.762-1.055-10.019-2.614-2.082-.997-3.797-2.067-5.27-3.288-.536-.444-.99-.808-1.01-.808-.019 0-5.45 5.505-12.069 12.233z" class="s-fjJKdSXdEtef"></path></g><ellipse cx="29.051" cy="-1.073" fill="#fff" rx="6.69" ry="6.212" class="s-fjJKdSXdEtef"></ellipse></g></svg></a></nav>
<div class="search-container svelte-39tot0"><input type="text" placeholder="Search 3ee Games" class="svelte-39tot0" value="">
</div>
<nav class="svelte-1qhiw35"><button class="svelte-1qhiw35"><ion-icon class="icon svelte-1qhiw35" name="reorder-three-outline"></ion-icon></button>
</nav>
<nav class="svelte-1wxzkl">
</nav></header>
<div class="search-results svelte-1sv4ykx">
</div>
<main class="svelte-1l4pbsd">
<div id="__saos-0.316667616281346__" style=""><div style="animation: fade-in 1s cubic-bezier(0.35, 0.5, 0.65, 0.95) both; "><section class="homepage"><div class="welcome svelte-13p8o9u"><div class="stars animate svelte-1iakc8d"><div class="star single-star svelte-1iakc8d"></div>
<div class="star2 single-star svelte-1iakc8d"></div>
<div class="star3 single-star svelte-1iakc8d"></div>
<div class="star4 single-star svelte-1iakc8d"></div>
<div class="star5 single-star svelte-1iakc8d"></div>
<div class="star6 single-star svelte-1iakc8d"></div>
<div class="star7 single-star svelte-1iakc8d"></div>
<div class="star8 single-star svelte-1iakc8d"></div>
<div class="star9 single-star svelte-1iakc8d"></div>
<div class="star10 single-star svelte-1iakc8d"></div>
<div class="star11 single-star svelte-1iakc8d"></div>
<div class="star12 single-star svelte-1iakc8d"></div>
<div class="star13 single-star svelte-1iakc8d"></div>
<div class="star14 single-star svelte-1iakc8d"></div>
<div class="star15 single-star svelte-1iakc8d"></div>
<div class="star16 single-star svelte-1iakc8d"></div>
<div class="star17 single-star svelte-1iakc8d"></div>
<div class="star18 single-star svelte-1iakc8d"></div>
<div class="star19 single-star svelte-1iakc8d"></div></div>
<div class="clouds2 animate svelte-1iakc8d"></div>
<div class="light-effect animate svelte-1iakc8d"><svg width="283" height="192" viewBox="0 0 283 192" xmlns="http://www.w3.org/2000/svg" class="svelte-1iakc8d"><path d="M261.248.01c-.107.076-.441.575-.947 1.456l-.704 1.226 1.923.8a360.16 360.16 0 0 0 3.242 1.33l1.32.53 1.507-1.631c.945-1.024 1.51-1.871 1.518-2.272.01-.554-.095-.483-.78.528-.434.642-1.119 1.56-1.52 2.038l-.73.87-1.293-.92c-1.016-.722-1.652-.958-2.967-1.099-.921-.098-1.675-.228-1.675-.289 0-.06.31-.73.689-1.488.404-.809.525-1.155.417-1.079zm-47.124 4.538c-.085-.21-.147-.148-.16.16-.011.278.051.434.139.346.088-.088.097-.315.02-.506zm.14 1.106c.065.613.645 2.959 1.72 6.838l.395 1.424 2.544-.17c1.4-.093 7.593-.526 13.764-.961 6.17-.436 13.24-.917 15.708-1.07 2.468-.152 4.73-.327 5.027-.388.405-.082.69-.578 1.144-1.99.333-1.033.554-1.93.492-1.992-.062-.062-.442.661-.844 1.607-.402.946-.883 1.72-1.068 1.72-.185 0-1.508-.249-2.94-.553-2.824-.599-5.07-.596-20.199.026l-6.244.256-3.37 1.324c-1.853.728-3.403 1.323-3.444 1.323-.04 0-.632-1.725-1.314-3.835-.987-3.052-1.437-4.172-1.372-3.559zm41.124.662c-.144.088-.262.273-.262.41 0 .38.19.296.366-.162.09-.235.046-.34-.104-.248zm-62.524.405c-.604-.01-.615.031-.443 1.64.19 1.77 1.206 10.374 1.865 15.78.221 1.815.52 4.311.664 5.546 2.731 15.38 10.815 83.712-1.862-21.395v-.604l6.17.167 6.17.167 3.664 1.571 3.663 1.571-.099 3.187-.099 3.188h26.137c24 0 26.166.035 26.498.436.314.38.422-.065.81-3.33.245-2.071.483-3.796.527-3.832.045-.037 2.119.027 4.608.141l4.526.207 2.931 2.154c2.46 1.809 2.91 2.246 2.796 2.727-.484 2.05-4.087 20.207-4.087 20.597 0 .312.158.451.45.395.305-.059.558-.554.786-1.538.185-.798 1.232-5.432 2.327-10.298 1.095-4.867 2.052-9.044 2.127-9.284.1-.32-.859-1.173-3.635-3.23l-3.772-2.793-4.8-.006c-4.347-.005-4.812.038-4.934.456-.074.255-.214 1.77-.312 3.368l-.176 2.905h-3.469c-1.908 0-13.674.099-26.146.22l-22.678.22.148-3.016.149-3.016-4.04-1.916-4.039-1.915-5.903-.23c-3.246-.125-6.181-.234-6.522-.24zm28.382 3.209c-1.222-.074-1.42-.007-1.954.66-.327.408-.595.82-.595.917 0 .096.878-.2 1.954-.66l1.955-.835zM52.019 44.37c-.035-.13-.084 6.754-.11 15.299l-.046 15.536.868 1.076c.477.592 1.605 2.186 2.506 3.543l1.638 2.467-1.22 3.871c-.672 2.13-1.614 5-2.093 6.38-.479 1.38-.952 2.747-1.052 3.038-.225 1.158-.808.866-.544 1.864.083.298-.147 1.418-.51 2.489-.73 2.145-.723 2.117-.516 2.117.08 0 .66-1.099 1.286-2.442 1.47-3.15 2.536-6.293 3.692-10.895a418.504 418.504 0 0 1 1.526-5.899l.597-2.201-2.293-2.228c-1.725-1.677-2.324-2.439-2.421-3.08-.284-1.871-.376-4.73-.231-7.152.134-2.25.209-2.549.641-2.549.66 0 .646-1.149-.045-3.852-.381-1.492-.488-2.503-.372-3.542.2-1.795-.732-11.704-1.301-13.84zm2.958 59.057c-.059.065.405.282 1.36.686l1.717.726.186 1.973c.226 2.404.063 5.527-.309 5.899-.15.15-.255.636-.234 1.079l.04.805.115-.792c.063-.436.277-.974.476-1.196.227-.253.423-1.387.526-3.037.09-1.449.225-3.246.3-3.995.153-1.538.262-1.451-2.403-1.925-1.135-.203-1.716-.289-1.774-.223zm-9.608 9.245c-.188.188 1.44 6.574 1.784 7 .144.176 2.161 1.415 4.484 2.752 2.324 1.337 4.282 2.581 4.353 2.765.098.256.512.198 1.756-.244 1.495-.532 1.635-.648 1.71-1.425.107-1.104-.351-1.926-1.073-1.926-.317 0-1.472.31-2.566.69l-1.99.691L51 121.163l-2.828-1.813-.82-1.98c-.45-1.09-1.049-2.485-1.329-3.101-.28-.616-.509-1.26-.509-1.43 0-.172-.065-.246-.145-.166zm3.59 18.926 1.508 1.45c.83.797 1.545 1.413 1.59 1.369.044-.044-.26-.66-.674-1.368-.617-1.054-.905-1.302-1.589-1.37zm2.51 5.05c-.043 0 .036.564.176 1.254.14.69.286 1.625.324 2.078.039.452.142.94.23 1.081.143.232.41 1.327 1.657 6.811.198.872.523 2.258.721 3.082.36 1.488.358 1.502-.36 2.245-.885.915-3.994 10.105-4.587 13.557-1.192 6.934-2.83 15.53-3.059 16.056-.564 1.292-.385 1.172 1.06-.709.727-.947.784-1.102.31-.849-.318.17-.58.259-.58.197 0-.261 4.474-17.519 4.683-18.062.126-.33.055-.341-.44-.076-.325.174-.636.272-.69.217-.086-.086.902-3.074 1.107-3.346.042-.056 2.01-.38 4.375-.72 2.364-.34 7.98-1.157 12.482-1.816a5687.06 5687.06 0 0 1 13.991-2.032c3.195-.458 5.839-.853 5.876-.879.038-.025-.002-.396-.087-.824l-.156-.778-4.4.722c-2.42.398-5.53.912-6.909 1.143-1.379.231-5.477.891-9.107 1.466-3.63.576-8.535 1.36-10.9 1.74-2.365.383-4.367.627-4.45.544-.349-.349 1.379-4.829 2.225-5.771l.87-.968-.288-2.333c-.158-1.284-.513-3.221-.79-4.305-.276-1.085-.451-2.023-.388-2.085.109-.11 1.48.043 8.045.897 4.71.612 13.663 1.707 13.962 1.707.238 0-1.795-3.736-2.358-4.33-.132-.14-2.045-.114-4.66.063-2.44.166-6.397.425-8.792.575-2.396.15-4.84.34-5.434.42l-1.078.15-.585-1.604c-.62-1.701-1.864-4.518-1.996-4.518zm-27.134 7.876c-.041-.124-.59.966-1.22 2.42-2.065 4.772-5.318 9.66-7.896 11.864-.765.655-1.37 1.464-1.634 2.183-.357.977-.65 1.266-2.027 1.996-1.599.848-1.614.867-2.415 3.037a464.506 464.506 0 0 1-1.51 4.033c-.93 2.433-.687 2.129.912-1.143.723-1.478 1.415-2.686 1.539-2.686.124 0 1.405-.176 2.846-.391 4.832-.72 18.941-2.78 23.608-3.448 5.723-.818 5.808-.838 5.808-1.317 0-.516.018-.517-5.865.421-2.8.447-8.12 1.285-11.823 1.861-3.702.577-7.86 1.227-9.24 1.445-1.379.217-3.084.468-3.789.556l-1.281.16.419-.81c.24-.466 1.082-1.214 1.979-1.76.955-.58 1.619-1.18 1.711-1.55.083-.33 1.007-1.488 2.052-2.572 1.976-2.05 4.084-5.06 5.447-7.781.89-1.777 2.494-6.172 2.379-6.518zm66.758 3.526c-2.848.582-4.112.92-4.01 1.252.807 2.605 1.15 3.5 1.17 3.059.014-.291-.101-.985-.256-1.544-.155-.558-.238-1.06-.183-1.113.103-.104 1.355-.991 3.28-1.654zm-79.901 24.78c-.13 0-.543.14-.918.31-.738.337-.905.598-5.543 8.67-1.71 2.977-3.476 5.8-3.921 6.274l-.81.86 1.44-.422c.791-.232 1.538-.516 1.658-.63.121-.116.07-.45-.113-.743-.298-.477.12-1.244 4.056-7.426 2.413-3.791 4.28-6.893 4.151-6.893zm49.008 6.057c-.2.043-.74.269-1.75.706-1.234.533-3.67 1.482-5.412 2.107-3.294 1.183-3.315 1.47-.052.74 2.06-.46 5.646-2.097 6.916-3.157.356-.297.498-.438.298-.396zm-11.32 4.068c-.182.074-.033.133.33.133s.511-.06.33-.133a1.018 1.018 0 0 0-.66 0zm-45.914 6.64c-.293.014-.12.176.482.487 2.435 1.259 7.813 2.13 11.548 1.871a93.37 93.37 0 0 1 2.376-.137c1.792-.064-2.16-.744-5.913-1.017-2.106-.154-4.888-.515-6.184-.803-1.26-.28-2.017-.415-2.31-.401z" class="svelte-1iakc8d"></path></svg>
</div>
<picture><source srcset="portal_small.webp" media="(max-width: 480px)" type="image/webp">
<source srcset="portal_med.webp" media="(max-width: 1024px)" type="image/webp">
<source srcset="portal_large.webp" media="(max-width: 2560px)" type="image/webp">
<img src="portal_large.png" alt="3ee Games Portal"></picture></div></section></div></div>
<div id="__saos-0.10654053655129059__" style=""><div style="animation: fade-in 1s cubic-bezier(0.35, 0.5, 0.65, 0.95) both; "><section class="background svelte-13p8o9u"><ul class="flex-3-cols main-homepage svelte-1eflwkb"><li><div class="svg-blitter archer"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" viewBox="0 0 394 520"><defs><path id="reuse-archer--1" fill="#9b1c29" d="m60.1089 147.0632 105.2143 119.0674 1.1487-3.471s7.3926 15.4392 7.464 15.762c.071.3216-14.0673-9.959-14.0673-9.959l3.437-.7596L57.313 146.1764l2.796.8868"></path>
<path id="reuse-archer--2" fill="#9b1c29" d="m68.1089 143.0632 105.2143 119.0674 1.1487-3.471s7.3926 15.4392 7.464 15.762c.071.3216-14.0673-9.959-14.0673-9.959l3.437-.7596L65.313 142.1764l2.796.8868"></path>
<path id="reuse-archer--30" d="m54.042 140.4264 4.1433-3.7599.576 4.9042 2.027-1.369.6214 4.1854 1.881-1.2337-1.983 6.4976-7.2657-9.2246M53.3839 150.8007c.0822-.0494 2.5418-1.7926 2.5418-1.7926s-5.5695-2.5544-5.4873-2.6038c.0835-.0503 3.1501-1.4616 3.1501-1.4616s-5.4458-2.8921-5.1827-3.0184c.2625-.124 4.3775-1.3982 4.3775-1.3982l8.5243 9.125s-8.0059 1.199-7.9237 1.1496z"></path>
<path id="reuse-archer--0" d="m61.2417 135.6853 4.1433-3.7599.576 4.9042 2.027-1.3691.6214 4.1855 1.881-1.2337-1.983 6.4976-7.2657-9.2246M60.5836 146.0596c.0822-.0494 2.5418-1.7926 2.5418-1.7926s-5.5694-2.5544-5.4873-2.6038c.0835-.0503 3.1501-1.4616 3.1501-1.4616s-5.4458-2.8921-5.1827-3.0184c.2625-.124 4.3775-1.3982 4.3775-1.3982l8.5243 9.1249s-8.0059 1.199-7.9237 1.1497z"></path><path id="reuse-archer--3" class="shared-hair" fill="#373434" d="M82.05 145.492s-11.4107 6.296-27.8373 4.9813c-16.4267-1.3146-36.96 15.8254-44 27.716-7.04 11.8894-11.2934 31.1774-9.9734 32.9734 1.32 1.796 15.6934-11.2574 19.2134-12.284 0 0-5.72 13.3466-4.9867 13.4933.7333.148 24.3467-10.56 29.48-20.68 5.1333-10.12 53.3453-35.932 54.0987-42.3867.7546-6.452-15.9947-3.8133-15.9947-3.8133"></path><path id="reuse-archer--4" fill="#8f5934" d="M118.4527 262.3853s-32.4134 50.4547-37.2534 80.08c-13.4933 9.8267-38.28 46.788-56.1733 107.2147-.88 1.1733 3.2267 0 3.2267 0s55.44-60.7213 62.48-98.8547c17.8933-15.84 45.6093-44.5866 45.8306-47.812.2227-3.228 21.832-2.0693 21.832-2.0693s16.8173 37.6973 39.6973 57.7227c1.4667 21.1986 2.4934 30.3653 12.1734 51.7053 9.68 21.34 26.62 45.1 26.62 45.1h6.38s-27.94-81.6187-31.68-98.56c-14.3-45.1-26.4774-87.16-34.76-94.5267-8.2827-7.3653-58.3733 0-58.3733 0"></path><path id="reuse-archer--5" fill="#693b9a" d="M115.3727 263.192s-6.38 16.5-6.7467 22.7347c4.0333-1.32 8.5067-12.2467 8.2133-11.808-.2933.44-3.96 19.2866-3.4466 22.5133 3.96-2.712 6.0133-11.1467 6.0133-11.1467s-2.86 15.6947-1.8333 22.5867c3.1533.2933 5.7933-14.3733 5.7933-14.3733s-2.64 16.28-1.0267 23.468c4.1067-4.3267 5.5734-12.32 5.5-12.1014-.0733.22-2.7866 20.4814.3667 28.5374 3.96-9.176 4.3267-15.6307 4.3267-15.6307s-1.54 18.5533 1.54 25.9613c2.86-9.388 3.736-15.0346 3.5173-14.8146-.2174.2213.8826 24.6413 3.376 26.7666 4.18-8.6533 3.4466-23.2466 3.4466-23.2466s3.6294 14.9613 3.868 15.0346c3.6854-9.24 3.172-22.2213 3.172-22.2213s2.42 10.12 4.2534 9.68c3.1533-9.8267 1.3933-19.0667 1.3933-19.0667s3.6667 10.4867 4.6933 10.4867c1.98-6.6733.44-19.58.44-19.58l4.4734 12.468c3.1533-8.8013.9533-22.8813.9533-22.8813s2.2 11 4.4 13.5666c2.2-8.58.44-20.68.44-20.68s4.7667 10.5614 5.6467 10.7067c1.3933-10.4853-2.7134-18.4067-2.7134-18.4067s5.4267 8.4347 6.16 8.4347c.88-6.0867-2.1266-14.888-2.1266-14.888s4.4733 8.8747 5.4266 8.2867c.5867-6.232-3.3733-17.7454-4.4733-18.5534-1.1-.8066-65.0466-1.8333-65.0466-1.8333"></path><path id="reuse-archer--6" fill="#dcccce" d="M133.3207 234.428s-1.5947-.4947-4.1254 3.1347c-2.5293 3.6293-5.3893 13.2-6.0493 13.7493-.66.5507-8.58 9.3507-8.4707 11.7707.1107 2.42 24.9707 71.5 27.5 70.5106 2.5307-.9906 39.82-62.92 39.7107-67.1013-.1107-4.18-8.2507-16.5-8.36-16.94-.1107-.44-4.4-23.4293-12.54-23.6493-9.1307 3.4093-27.6653 8.5253-27.6653 8.5253"></path><path id="reuse-archer--7" fill="#474053" d="M133.3207 234.428s7.2466 9.0747 18.0613 4.564c10.8133-4.5093 9.604-13.0893 9.604-13.0893l-27.6653 8.5253"></path><path id="reuse-archer--8" fill="#693b9a" d="m131.8913 230.412 1.4294 4.016s8.6906 4.0147 17.16.66c8.4706-3.356 10.5053-9.1853 10.5053-9.1853l-1.54-3.9054-27.5547 8.4147"></path><g id="reuse-archer--9" class="hand-right"><path fill="#8f5934" d="M165.5326 134.604s16.1334-18.5453 25.96-24.1413c9.8267-5.5974 46.9334-29.064 46.9334-29.064s4.84 6.8933 4.6933 7.3333c-.1467.4413-47.6667 48.84-66.2933 55.4413-3.52-1.028-11.2934-9.5693-11.2934-9.5693"></path><path class="finger" fill="#8f5934" d="M247.81 71.552s7.5013-3.004 7.3906-1.7947c-.1093 1.2107-4.2346 4.1254-4.2346 4.1254s1.8693 1.8706 2.0346 3.2453c.1654 1.3747 1.1867 5.764.044 6.044-1.144.28-3.6733.324-4.1693 0-.4947-.324 1.4853-2.2493 1.32-2.304-.164-.056-2.0627-.3507-2.3853-.7707-.3214-.42 1.0653-2.0346 1.0653-2.0346s-1.704-1.1-1.704-1.32c0-.22 1.484-2.0907 1.484-2.0907l-.8453-3.1"></path><path fill="#8f5934" d="M238.426 81.3987s1.5613-5.8907 2.0893-6.6907c.5293-.8 6.436-.3853 6.6.3293.1653.716 1.2107 4.62.88 4.7854-.3293.1653-2.4747-1.4307-2.4747-1.4307s2.0907 7.0413 1.3747 7.8653c-.7147.8254-3.776 2.4747-3.776 2.4747s-5.2107-5.4413-4.6933-7.3333"></path></g><path id="reuse-archer--10" fill="#474053" d="M109.286 179.2627s33.88 4.62 39.38 2.2-2.86-11.4707-2.86-11.4707l2.7493-.6293s11.7707 7.7373 5.94 14.96c-2.644 3.276-34.8733 4.888-53.6813-4.156-2.8587-1.4547 8.472-.904 8.472-.904"></path><path id="reuse-archer--11" fill="#693b9a" d="M78.5593 177.2453s19.8 4.2547 42.02 3.2267c22.22-1.0267 30.5067-7.6253 29.7-10.4133-.8067-2.7854-23.1733-10.7054-23.1733-10.7054l-3.3 2.272s-18.48 11.2947-18.8467 11.0734c-.3666-.22-22.88-.2934-22.88-.2934l-3.52 4.84"></path><path id="reuse-archer--12" fill="#8f5934" d="M84.106 174.5213s10.3667-8.2026 14.2533-6.588c3.8867 1.612 9.3867 1.4654 13.86 1.4654 4.4734 0 3.3734-5.0587 3.5934-5.0587.22 0 7.1866-2.7147 7.9933-2.7147.8067 0 18.7 9.0934 18.7733 9.5334.0733.4413-24.2 5.428-38.28 4.9133-8.8093-.32-20.1933-1.5507-20.1933-1.5507"></path><path id="reuse-archer--13" fill="#373434" d="M96.4527 97.7533c-.22 0-13.42-3.3013-21.12 1.3187-7.7 4.62-18.26 24.42-15.3267 34.028 2.9333 9.6053 12.9053 10.692 12.9053 10.692l3.5947 2.2507s14.3733 7.516 19.9467 2.9706c5.5733-4.548 0-51.26 0-51.26"></path><path id="reuse-archer--14" fill="#8f5934" d="M93.4593 136.3987s-3.9733 4.9133-9.18.5866c-5.2066-4.3266-.22-11.2186 4.0334-7.4066 4.1066-8.36 0-29.7 0-29.7s11.544-3.996 19.02-.696c7.4746 3.3 12.1466 5.1706 14.64 6.4173 2.4933 1.2467 4.84 0 5.28.8053.44.8067-1.1734 5.3547-1.1734 5.3547s3.8134 14.372 2.7867 22c-11.0733 6.892-35.4067 2.6387-35.4067 2.6387"></path><path id="reuse-archer--15" fill="#6d462b" d="M128.866 133.76s-22.0733 4.692-35.42 2.272c0 0 .4587 10.1093-1.6773 13.488 3.2173 3.2333 8.7906 18.852 7.984 19.8787-.8067 1.028 26.9866 4.3266 31.1666 0-12.76-3.812-21.12-12.6134-22.5133-17.3787-1.3933-4.7667 19.0667-12.8333 20.46-18.26"></path><path id="reuse-archer--16" fill="#373434" d="M112.5127 111.452c-.2934-.22-10.0467 2.5307-13.9334 6.8933 4.216-6.38 9.3134-7.6626 12.9067-7.8826.6227.0733 1.0267.9893 1.0267.9893M98.562 111.116c-.0613.0907 11.5133-1.7227 11.6973-3.8867 0 0-2.0453-1.2066-3.5773-1.0413s-6.84 3.044-8.12 4.928"></path><path id="reuse-archer--17" fill="#fff" d="M120.8353 125.7293c.0507.104-3.2626 5.1694-12.4666 4.1067 1.4306-2.896 11-7.1493 12.4666-4.1067"></path><path id="reuse-archer--18" fill="#dcccce" d="M106.858 98.9867s-26.5027 21.2053-30.352 47.056c-.3307.22-3.6307-1.8694-3.6307-1.8694s3.08-37.6426 23.2107-46.7613c2.7493-.6493 8.36-.1413 10.772 1.5747"></path><path id="reuse-archer--19" fill="#474053" d="M156.9526 217.5787s-17.5893 7.7746-25.4413 5.28c-7.852-2.4934 20.3813-8.14 19.9413-8.5054-.44-.368-30.7266-9.0933-31.3866-10.9266-.66-1.8334 19.9466.4386 19.8 0-.1467-.4414-23.2467-9.608-22.3667-10.048.88-.4387 32.4467-3.08 32.8333-2.0534.3867 1.028-9.5133 4.1867-7.7533 5.504 1.76 1.316 17.4533 19.0627 14.3733 20.7494M168.5753 253.1827s-18.0947 33.3306-22.1373 31.68c-4.0427-1.6507-10.4227-14.3-12.292-13.5294-1.8707.7694 11.5493 33.3294 16.6093 29.26 5.06-4.0706 20.02-49.2813 17.82-47.4106"></path><path id="reuse-archer--20" fill="#474053" d="M160.986 294.872c-.44-.3293-14.52 18.3707-16.3907 18.04-1.8693-.3293-7.92-10.34-8.0293-8.1387-.1107 2.1987 4.2893 19.0294 8.9093 15.5094 4.62-3.52 16.3907-24.7507 15.5107-25.4107M25.026 449.68s-3.52 7.4973-4.84 8.7627c-1.32 1.2653-10.12 11.1093-7.5347 12.3746 2.584 1.2654 16.6094 1.3747 17.984-1.044 1.376-2.42-1.4293-9.02-1.6493-10.836-.22-1.8146-.7333-9.2573-.7333-9.2573H25.026M236.886 455.472s-2.9334 10.2667-2.2 11c.7333.7333 18.8466 4.4 21.78 4.4 2.9333 0 4.5466-1.0253 4.62-1.612.0733-.5867-13.7134-8.728-15.18-10.1213-1.4667-1.3934-2.64-3.6667-2.64-3.6667h-6.38"></path><path id="reuse-archer--21" fill="#dcccce" d="M44.234 397.8827s12.0467 3.4293 22.6733 2.4226c.0214-.0333-2.9253 5.136-4.1066 5.988-4.1147 1.6587-19.9934-1.124-21.2934-2.2986 1.0454-3.7414 2.7267-6.112 2.7267-6.112M224.5713 399.5933s-10.2387 2.636-18.432 1.0974c.024.0626 1.7347 5.7893 2.6827 6.4426 1.444 1.4787 17.62-.7213 17.9466-.8306.3267-.1107-2.1973-6.7094-2.1973-6.7094"></path><path id="reuse-archer--22" class="bow" fill="#9b1c29" d="M154.9046 1.76s67.5347 31.972 90.1214 79.6387c22.5866 47.6666 16.72 121.3586 16.72 121.3586h4.4s5.5733-85.132-17.3067-128.8373C229.4793 26.9853 157.3513 0 157.3513 0l-2.4467 1.76"></path><path id="reuse-archer--25" fill="#f0e6d3" d="m162.854 1.6387-1.8627 4.0173 4.2027 2.2147s1.4293-4.4854 1.3053-4.5c-.1253-.0134-3.6453-1.732-3.6453-1.732M261.746 191.3987l-.1467 5.4306 5.1453 1.536.428-6.9666h-5.4266"></path><path id="reuse-archer--26" fill="#6d462b" d="M89.5953 133.268s-2.0346.7027-2.2266-.288c-.1934-.9893.3026-1.54-1.2654-1.6493-1.568-.1107-3.492 2.5026-.8253 4.2066 2.668 1.7054 5.308-.2213 4.3173-2.2693"></path><path id="reuse-archer--27" fill="#373434" d="M111.486 110.4627s-5.8649-2.0257-11.777 5.423c1.5428 1.222 3.9655 1.4256 7.616-.3527 3.3812-1.6481 4.161-5.0703 4.161-5.0703"></path><path id="reuse-archer--28" fill="#fff" d="M100.3547 115.9157s5.0623-5.7524 10.5077-4.8105c-1.4616 3.9562-6.6533 6.1737-10.5077 4.8105"></path><path id="reuse-archer--29" fill="#373434" d="M107.8864 112.2714c.2348.5463.788.8339 1.2364.6411.4483-.1927.6215-.7925.3866-1.3388-.2349-.5464-.7888-.8322-1.237-.6394-.4484.1927-.6209.7908-.386 1.3371"></path></defs><g class="archer-stand-left" fill="#9b1c29"><path d="m120.9953 65.3149-64.4057 190.046 5.5806-3.432-11.6441 19.2026.4885-20.8768 2.9922 4.0066 64.6591-189.2837 2.3294.3373"></path><path d="M126.8805 67.631 62.4748 257.677l5.5806-3.4319-11.6441 19.2025.4885-20.8768 2.9922 4.0066L124.551 67.2937l2.3294.3373"></path><path d="M132.7657 69.9471 68.36 259.9931l5.5806-3.4318-11.6441 19.2024.4885-20.8768 2.9922 4.0066L130.4363 69.61l2.3294.3372"></path><g fill="#f0e6d3"><path d="m126.8805 67.631 5.287 1.8305-4.026 2.859 2.174 1.1212-3.3737 2.554 1.985 1.058-6.652 1.3787 4.6057-10.8014"></path><path d="M117.4633 72.0327c.0827.0484 2.7925 1.3696 2.7925 1.3696s-.432-6.112-.3493-6.0637c.0843.0491 2.7942 2.0622 2.7942 2.0622s-.0764-6.1657.1607-5.9955c.2348.1708 3.3275 3.1693 3.3275 3.1693l-3.9141 11.8578s-4.8943-6.4481-4.8115-6.3997z"></path></g><path fill="#f0e6d3" d="m60.4402 57.2809 47.9106 118.7808 56.073 110.002.7573-2.6395-53.6974-109.3119L63.6492 58.2528l-3.209-.972"></path><path fill="#9b1c29" d="M55.9157 54.3834s113.882 65.2477 108.379 236.7999l2.1935.5088s13.521-77.7303-27.8733-153.1479c-37.0604-67.1441-81.7014-86.5105-81.7014-86.5105l-.9978 2.3497"></path><g fill="#f0e6d3"><path d="m120.6684 62.581 5.287 1.8305-4.0259 2.859 2.174 1.1212-3.3738 2.554 1.9851 1.058-6.652 1.3788 4.6056-10.8014M111.2512 66.9827c.0828.0484 2.7925 1.3696 2.7925 1.3696s-.432-6.112-.3492-6.0636c.0842.049 2.7941 2.0621 2.7941 2.0621s-.0764-6.1657.1607-5.9954c.2348.1707 3.3276 3.1693 3.3276 3.1693l-3.9142 11.8578s-4.8942-6.4482-4.8115-6.3998z"></path></g><g fill="#f0e6d3"><path d="m132.3214 70.5507 5.287 1.8305-4.026 2.859 2.174 1.1212-3.3737 2.554 1.985 1.058-6.652 1.3787 4.6057-10.8014M122.9041 74.9524c.0828.0484 2.7926 1.3696 2.7926 1.3696s-.432-6.112-.3493-6.0637c.0843.0491 2.7942 2.0622 2.7942 2.0622s-.0764-6.1657.1607-5.9955c.2348.1708 3.3275 3.1693 3.3275 3.1693l-3.9141 11.8578s-4.8943-6.448-4.8116-6.3997z"></path></g><path fill="#8f5934" d="M123.449 234.0936c.8347.8187 4.6467 27.6987 35.0214 71.3787 3.4933 36.24 2.0533 36 9.9733 56.88 7.92 20.88 22.56 29.76 28.8 47.04l7.92-1.44s-27.84-63.36-32.16-105.12c-6.96-39.12-24.4-103.0693-27.2-109.8547-2.8-6.7853-22.3547 41.116-22.3547 41.116M111.2037 232.0323l-43.32 72.72s-5.76 34.8-7.44 45.36c-1.68 10.56-21.12 47.52-24.24 59.28-.72-.48-6.48 0-6.48 0s5.52-54 9.36-70.08 20.16-43.92 20.16-43.92 7.644-85.2453 36.5813-111.6227c12.1387 2.4227 15.3787 48.2627 15.3787 48.2627"></path><path fill="#693b9a" d="M95.5637 182.5923s-4.8 6.16-4.8 7.52c.72-1.52 5.3507-5.004 5.3507-5.004s-5.5907 17.484-5.9907 28.364c2.16-.8 10.08-17.44 10.08-17.44s-5.68 20.56-5.04 34.08c2.4-2.4 7.28-20.16 7.28-20.16s-5.36 28.32-1.84 42.16c1.68-4.24 4.96-17.12 4.96-17.12s-4.16 29.44 0 42.64c1.76-4.24 5.04-21.92 5.04-21.92s-.96 30.32 3.12 37.92c4.4-15.44 7.52-34.88 7.52-34.88s2.8 20.32 3.04 20.32c4-3.04 7.28-40.64 7.28-40.64s2.96 13.68 3.6 16.16c4.56-8.72 6.32-35.9067 6.32-35.9067s3.6 15.1867 4.4 16.6267c4.24-14.88 1.36-29.68 1.52-29.12.16.56 6.8 9.52 7.04 9.52.32-5.36-4.4507-17.6027-5.7453-18.8413-1.2947-1.2387-44.8947-15.7987-53.1347-14.2787"></path><path fill="#dcccce" d="M111.2037 164.1723s-2.6.34-5.4 3.78c-2.8 3.44-8.72 14-10.24 14.64 2.48 10.88 16 79.92 19.36 82.32 6.48-5.04 30.96-60 33.84-67.44-1.92-17.76-4.216-31.44-5.108-32.52-.892-1.08-25.612 6.96-32.452-.78"></path><path fill="#474053" d="M111.2037 164.1723s.96 8.88 10.08 11.4c9.12 2.52 22.844-8.4 22.372-10.62-.472-2.22-32.452-.78-32.452-.78"></path><path fill="#693b9a" d="M113.8437 158.2323c0 .18-2.64 5.94-2.64 5.94s7.2 6.06 14.94 6.06c7.74 0 17.512-5.28 17.512-5.28l-.472-6.72h-29.34"></path><g class="right-arm"><path fill="#8f5934" d="M159.0797 165.363s2.524 10.9893 8.764 19.3893c6.24 8.4 26.04 26.76 27.6 28.44 1.56 1.68 3.56 6.12 4.24 7.48.68 1.36 2.6 4.08 3.04 4.08.44 0 1-4.44 1-4.44s6.68 1.16 9.76 1.16 6.28-.48 5.72-1.08c-.56-.6-5.84-2.64-5.84-2.64s-3.28-4.72-5.36-6.64c-2.08-1.92-10.48-5.48-10.48-5.48s-20.84-38.64-23.96-42.8c-3.12-4.16-6-7.44-6.72-8.08-.72-.64-3.2-5.12-3.2-5.12s-7.288 4.5013-4.564 15.7307"></path><path fill="#6d462b" d="M160.937 162.195c.0507.076 4.0667 3.1573 4.9867 2.6373.92-.52-.8-6.68-1.4-7.36-.6-.68-4.092 3.9653-3.5867 4.7227"></path><path fill="#dcccce" d="M142.6837 137.3123s11.92 18.96 12.64 20.72c.72 1.76.24 18.8 1.12 19.2.88.4 3.6-24.64 8.72-27.2.56-2.32-1.6-2.08-1.6-2.08s-11.0013-20.1666-12.5347-23.088c-1.5346-2.9213-10.8253 1.248-8.3453 12.448"></path></g><path fill="#474053" d="M141.9877 97.787s3.416 17.6853 9.256 27.4453c.56 3.44-.24 16.16-2 14s-2.628-9.68-2.628-9.68-3.532 7.76-3.932 7.76c-.4 0-6.58-11.12-6.58-11.12s-1.9333-25.6893 5.884-28.4053"></path><g class="left-arm"><path fill="#8f5934" d="M57.3237 142.5923c-.32 1.04-5.84 11.52-5.84 11.52S40.585 165.2216 36.505 170.2616c-4.08 5.04-23.5813 38.7307-24.9013 38.7307-1.32 0-10.12-3.44-11.4-2.08-1.28 1.36 3.84 11.6 5.12 12.88 1.28 1.28 4.4-2.24 6.16-2.88 1.76-.64 4.64-4.16 4.64-4.16s38.56-32.2187 42.4-37.9093c3.84-5.6907 7.84-19.4507 7.84-19.4507l-9.04-12.8"></path><path fill="#6d462b" d="M50.1837 165.3123c-.3947 1.076 7.68-2.1 8.16-3.66.48-1.56-5.7-3.06-8.16 3.66M66.3637 305.7123s-8.24 5.36-8.96 7.28c-.72 1.92 5.44 4.4 8.96-7.28M163.7037 305.3523s7.56 7.98 7.14 9.36c-.42 1.38-9.06-.96-7.14-9.36"></path></g><path fill="#dcccce" d="M75.9637 88.9857s-.24.0066-1.52 2.1666c-1.28 2.16-12.32 37.52-15.12 43.12-2.8 5.6-6 9.2-5.52 10.72.48 1.52 12.96 30.48 14 29.84 1.04-.64 1.36-24.72 2.16-26.96.8-2.24 16.8-32.4 17.2-32.48.4-.08 28.08 27.92 28.56 30.16.48 2.24-2.4 9.52-3.2 10.88-.8 1.36 1.04 3.6 1.04 3.6s9.68 3.28 19.44 2.8c9.76-.48 11.04-3.76 11.36-5.76.32-2-3.76-14.4-3.84-16.16-.08-1.76.516-20.8.5373-20.8.0227 0 5.4627-4.24 4.6627-10.48-.8-6.24-3.2-9.04-3.2-9.04s-1.44-8.64-3.12-10.72c-1.68-2.08-46.8 4.788-63.44-.8866"></path><path fill="#8f5934" d="M98.237 75.0723s-12.6533 10.44-16.4933 10.5c10.98 5.7 53.58 3.24 54.36 0-7.98-2.88-19.22-9.72-22.06-17.22-2.78-4.74-15.8067 6.72-15.8067 6.72"></path><path class="hair" fill="#373434" d="M125.8237 39.9657s9.1627-7.0427 17.288-4.2334c8.1253 2.808 4.0627 5.636 15.2133 7.8694 11.152 2.2333 35.4414-.5667 36.7387-.6334 1.296-.068-1.6427 3.7827-1.6427 3.7827s17.2014.4013 23.08-2.5627c1.988 2.3187-19.968 16.992-28.3533 16.572 1.6427.7547 10.028.6707 9.6813 1.5934-.3453.9226-5.1 6.456-18.152 8.0493-13.0533 1.5933-20.7466-.9227-32.848 1.1733-12.1026 2.096-23.6853-5.7013-25.4146-15.008-1.728-9.3066 4.4093-16.6026 4.4093-16.6026"></path><path fill="#6d462b" d="M99.4837 61.6323s.3053 9.92-1.2467 13.44c8.2067 1.28 15.8067-6.72 15.8067-6.72s-1.2813-2.6666-.7413-5.804c.54-3.1373 4.7413-8.596 4.7413-9.156 0-.56-17.84 3.44-18.56 8.24"></path><path fill="#8f5934" d="M79.0277 28.7577s-2.3093 9.6786 1.0973 17.476c-.6773 2.012-2.8813 5.4706-2.8813 5.4706l5.1227 2.956s3.4346 9.8734 8.1026 12.012c4.668 2.1374 21.3294-5.7866 25.6734-11.2573 4.344-5.4707 12.836-6.4147 10.7613-18.4253-2.0747-12.0107-15.1707-30.5-25.8027-30.8774-10.632-.3773-21.652 16.236-22.0733 22.6454"></path><path fill="#373434" d="M93.2344 14.2243s3.9773 19.7894 24.636 26.1614c1.816-2.6 8.472-3.5214 7.348 1.844-1.124 5.3666-9.6814 7.7146-9.6814 7.7146l-2.3346 13.164s21.4386-8.636 15.82-24.148c.0853-3.0186 1.6413-4.444 1.6413-4.444s9.4227-19.1173-5.272-29.2213c-14.696-10.104-25.76-2.6413-25.76-2.6413s-15.4733-2.18-16.164 11.5706c-.8653 3.7734-3.2853 5.4507-3.2853 5.4507s-3.0254 5.2827-1.2107 9.3907c.9507-6.8747 13.3987-15.008 14.2627-14.8414"></path><path fill="#dcccce" d="m129.0224 38.9603-48.84-19.2853 3.2853-5.4507s35.6133 7.3787 47.196 20.292c.26.168-1.6413 4.444-1.6413 4.444"></path><path fill="#373434" d="M107.001 37.147c.2907.2-9.7253 1.384-15.1706-1.0373-.0974-.7867 4.02-1.6667 5.0893-1.7614 1.0693-.0946 8.6227 1.792 10.0813 2.7987M78.3917 35.7323s3.908-.3773 3.9733-.6613c.0654-.2827-3.112-2.264-3.5333-2.452-.4213-.188-1.6253 1.9813-.44 3.1133M92.197 43.195s8.904-.5453 11.368-.86c.0974.1573 0 1.1 0 1.1s-8.6333 1.8453-11.368-.24"></path><path fill="#fff" d="M90.153 56.2617s7.5667-.812 8.0414 0c.4733.8133-3.14 3.4333-4.8347 3.344-1.6933-.0907-3.2067-3.344-3.2067-3.344"></path><path fill="#373434" d="m78.8837 42.335 1.572.7907s-1.0947.7346-1.572.3786c-.4787-.3546 0-1.1693 0-1.1693"></path><path fill="#6d462b" d="M118.0224 45.699s2.2693-.5067 2.172-1.5107c-.0974-1.004-.7134-.9106-.4214-1.3813.2907-.472 2.56-1.9813 2.9174-.912.356 1.0693-1.492 4.1187-3.76 4.716-2.2694.5973-.908-.912-.908-.912"></path><path fill="#474053" d="M102.4437 94.7523s27.68 10.08 28.8 9.12c1.12-.96-3.44-11.36-3.44-11.36h7.28s5.68 15.6 3.04 18.16c-2.64 2.56-39.92-6.4-50.96-17.2 2.72-1.6 15.28 1.28 15.28 1.28"></path><path fill="#693b9a" d="M81.7437 84.6123s15.84 4.68 30.9 3.48c15.06-1.2 24-3.48 24-3.48s5.4 6.06 4.26 7.32c-1.14 1.26-22.08 4.32-40.86 4.08-18.78-.24-24.42-6.78-24.66-7.32-.24-.54 6.36-4.08 6.36-4.08"></path><path fill="#474053" d="M104.1237 117.3923s4.4 4.56 15.68 5.2c11.28.64 14.184-3.84 16.092-3.96 1.908-.12 4.708 1.392 4.708 1.392l-4.24.728s-10.48 11.124-13.04 11.1627c-2.56.0373-.32-4.9227-.32-4.9227s-17.12 1.92-18.88-9.6M122.3637 151.6323s10.88-8.8 12-8.64c1.12.16-4.48 10.64-3.12 10.72 1.36.08 8-10.16 8.24-13.28.24-3.12-12.64-.16-16.48 2.16-3.84 2.32-4.96 11.6-.64 9.04M107.0037 209.2323s9.72 34.8 11.16 35.16c1.44.36 22.32-49.8 21.72-51.36-.6-1.56-19.44 30.84-21.12 30.6-1.68-.24-10.92-16.08-11.76-14.4"></path><path fill="#474053" d="M115.4037 204.1923s10.92-6.36 15.36-15.36c.12 9-5.52 18.84-15.36 15.36"></path><path fill="#6d462b" d="M110.273 83.279s2.076 2.6933 3.676 2.02c1.6-.6733 1.3507-2.9827 1.3507-2.9827s-2.1507 1.636-5.0267.9627"></path><path fill="#474053" d="m87.1637 115.3923 10.1147 9.964s-.24-6.684-5.0574-9.964c4.1427.64-5.8573-9.68-7.7773-11.36-1.92-1.68 2.72 11.36 2.72 11.36M29.7237 409.3923s-7.24 13.6-6.84 14.48c.4.88 17.56 1.08 17.56 0s-2.04-4.76-2.56-7.36c-.52-2.6-1.68-7.12-1.68-7.12s-.42-1.38-6.48 0M197.2437 409.3923s-3.24 8.6-2.4 9.48c.84.88 28.12 1.24 28.4.2.28-1.04-18.08-11.12-18.08-11.12s-3.56-.16-7.92 1.44"></path><path fill="#dcccce" d="M36.9477 350.7696s21.4573-1.744 23.916-3.2813c-.0067.04.0413 4.024-1.2453 6.1547-1.648 1.504-23.5454 2.908-23.5454 2.908s.34-5.3654.8747-5.7814M163.4357 347.6296s16.74-1.3 19.7933.912c.0747.2414 1.5614 5.0027 1.5614 5.0027h-19.5467s-1.5347-4.1573-1.808-5.9147"></path><g class="eye"><path fill="#373434" d="M91.185 41.7217s4.588-4.1774 12.9613.3306c-.9346 1.732-3.08 2.876-7.136 2.684-3.7573-.1786-5.8253-3.0146-5.8253-3.0146"></path><path fill="#fff" d="M103.565 42.335s-6.9227-3.2853-11.5533-.2693c2.9053 3.0573 8.5506 3.044 11.5533.2693"></path><path fill="#373434" d="M95.2063 41.9617c0 .5946-.3946 1.0773-.8826 1.0773-.488 0-.884-.4827-.884-1.0773 0-.5947.396-1.076.884-1.076s.8826.4813.8826 1.076"></path></g></g><style>.shared-eyes {
transform-box: fill-box;
transform-origin: center;
visibility: visible;
animation: archer-shared-blink 5.1s infinite cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes archer-shared-blink {
0% {
visibility: visible;
}
20% {
visibility: hidden;
}
24% {
visibility: hidden;
}
25% {
visibility: visible;
}
55% {
visibility: hidden;
}
60% {
visibility: hidden;
}
61% {
visibility: hidden;
}
75% {
visibility: hidden;
}
94% {
visibility: hidden;
}
95% {
visibility: visible;
}
100% {
visibility: visible;
}
}
.shared-hair {
transform-box: fill-box;
transform-origin: top right;
transform: rotate(0deg);
animation: archer-shared-hair 2.1s alternate infinite cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes archer-shared-hair {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-31deg);
}
}
.archer-stand-left {
transform: translate(74px, 30px);
visibility: visible;
animation: archer-stand-left-visibility 3.2s forwards linear;
}
@keyframes archer-stand-left-visibility {
0% {
visibility: visible;
}
99% {
visibility: visible;
}
100% {
visibility: visible;
}
}
.archer-stand-left .hair {
transform-box: fill-box;
transform-origin: top left;
transform: rotate(31deg);
animation: archer-stand-left-hair 4.8s infinite cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes archer-stand-left-hair {
0% {
transform: rotate(31deg);
}
50% {
transform: rotate(10deg);
}
100% {
transform: rotate(31deg);
}
}
.archer-stand-left .eye {
transform-box: fill-box;
transform-origin: center;
visibility: visible;
animation: archer-stand-left-blink 3.8s infinite cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes archer-stand-left-blink {
0% {
visibility: visible;
}
20% {
visibility: hidden;
}
24% {
visibility: hidden;
}
25% {
visibility: visible;
}
55% {
visibility: hidden;
}
60% {
visibility: hidden;
}
61% {
visibility: visible;
}
100% {
visibility: visible;
}
}
.archer-stand-left .right-arm {
transform-box: fill-box;
transform-origin: top left;
transform: rotate(0deg);
animation: archer-stand-right-arm 5.1s alternate infinite cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes archer-stand-right-arm {
0% {
transform: rotate(0deg);
}
50% {
transform: rotate(15deg);
}
100% {
transform: rotate(-15deg);
}
}
/* archer standing animation */
.archer-standing {
transform: translate(117px, 10px);
animation: archer-stand-visibility 3.1s forwards linear;
}
@keyframes archer-stand-visibility {
0% {
visibility: visible;
}
99% {
visibility: visible;
}
100% {
visibility: visible;
}
}
.archer-standing .hair {
transform: rotate(19deg);
transform-origin: top right;
transform-box: fill-box;
animation: archer-standing-hair 5.8s alternate infinite cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes archer-standing-hair {
0% {
transform: rotate(19deg);
}
50% {
transform: rotate(38deg);
}
100% {
transform: rotate(-85deg);
}
}
.archer-standing .sleeve {
transform-box: fill-box;
transform-origin: top;
transform: rotate(0deg);
animation: archer-standing-sleeve 6.8s alternate infinite cubic-bezier(0.34, 1.56, 0.64, 1)
0.6s;
}
@keyframes archer-standing-sleeve {
0% {
transform: rotate(0deg);
}
50% {
transform: rotate(-38deg);
}
100% {
transform: rotate(20deg);
}
}
.archer-standing .eyes {
transform-box: fill-box;
transform-origin: center;
visibility: visible;
animation: archer-standing-blink 4.8s infinite cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes archer-standing-blink {
0% {
visibility: visible;
}
20% {
visibility: hidden;
}
24% {
visibility: hidden;
}
25% {
visibility: visible;
}
55% {
visibility: hidden;
}
60% {
visibility: hidden;
}
61% {
visibility: visible;
}
100% {
visibility: visible;
}
}
/* Preshot animation */
.archer-preshot {
/*was 5.1s */
animation: archer-preshot-visibility 5.1s forwards;
}
@keyframes archer-preshot-visibility {
0% {
visibility: visible;
}
99% {
visibility: visible;
}
100% {
visibility: visible;
}
}
.archer-preshot .arm {
transform-box: fill-box;
transform-origin: bottom left;
transform: translate(0px, 0px) rotate(0deg);
animation: archer-preshot-arm 5.1s infinite cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes archer-preshot-arm {
0% {
transform: rotate(0deg);
}
50% {
transform: translate(42px, -11px) rotate(-5deg);
}
100% {
transform: translate(-8px, 22px) rotate(-5deg);
}
}
.archer-preshot .string {
animation: jump-string-animation-duration 3.7s forwards linear;
}
.archer-preshot .string .top {
transform-box: fill-box;
transform-origin: top left;
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
animation: archer-string-top 5.1s infinite cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes archer-string-top {
0% {
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
}
50% {
transform: translate(0px, 0px) rotate(-11deg) scale(1, 1);
}
90% {
transform: translate(0px, 0px) rotate(18deg) scale(1, 1.3);
}
100% {
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
}
}
.archer-preshot .string .bottom {
transform-box: fill-box;
transform-origin: bottom right;
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
animation: archer-string-bottom 5.1s infinite cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes archer-string-bottom {
0% {
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
}
50% {
transform: translate(0px, 0px) rotate(11deg) scale(1, 1);
}
100% {
transform: translate(0px, 0px) rotate(-17deg) scale(1.2, 1);
}
}
.archer-preshot .arrow {
transform-box: fill-box;
transform-origin: bottom left;
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
animation: archer-arrow 5.1s forwards cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes archer-arrow {
0% {
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
}
50% {
transform: translate(22px, -13px) rotate(0deg) scale(1, 1);
}
100% {
transform: translate(-44px, 28px) rotate(-5deg) scale(1, 1);
}
}
/* pull back animation */
.archer-pull-back .top {
transform-box: fill-box;
transform-origin: top right;
transform: translate(0px, 0px) rotate(-29deg) scale(1, 1);
animation: archer-pull-string-top 2.8s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes archer-pull-string-top {
0% {
transform: translate(0px, 0px) rotate(-29deg) scale(1, 1);
}
50% {
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
}
100% {
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
}
}
.archer-pull-back .string .bottom {
transform-box: fill-box;
transform-origin: bottom right;
transform: translate(0px, 0px) rotate(8deg) scale(0.5, 1);
animation: archer-pull-string-bottom 2.8s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes archer-pull-string-bottom {
0% {
transform: translate(0px, 0px) rotate(8deg) scale(0.5, 1);
}
50% {
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
}
100% {
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
}
}
#reuse-archer--9.hand-right {
transform-box: fill-box;
transform-origin: bottom left;
animation: arm-right-shake 3.1s infinite linear 6.5s;
}
#reuse-archer--22.bow {
transform-box: fill-box;
transform-origin: left;
animation: arm-right-shake 6.1s infinite linear 6.5s;
}
@keyframes arm-right-shake {
0% {
transform: translate(1px, 1px) rotate(0deg);
}
10% {
transform: translate(-1px, -2px) rotate(-1deg);
}
20% {
transform: translate(-3px, 0px) rotate(1deg);
}
30% {
transform: translate(3px, 2px) rotate(0deg);
}
40% {
transform: translate(1px, -1px) rotate(1deg);
}
50% {
transform: translate(-1px, 2px) rotate(-1deg);
}
60% {
transform: translate(-3px, 1px) rotate(0deg);
}
70% {
transform: translate(3px, 1px) rotate(-1deg);
}
80% {
transform: translate(-1px, -1px) rotate(1deg);
}
90% {
transform: translate(1px, 2px) rotate(0deg);
}
100% {
transform: translate(1px, -2px) rotate(-1deg);
}
}
.arrow-container {
display: block;
transform: translate(-3vw, -47vh);
animation: arrow-travel 0.5s forwards linear;
position: absolute;
transform-box: fill-box;
transform-origin: center;
}
@keyframes arrow-travel {
0% {
transform: translate(-3vw, -47vh);
}
30% {
transform: translate(14vw, -58vh);
}
100% {
transform: translate(52vw, -32vh);
}
}
.arrow-container .arrow {
transform: rotate(-3deg);
animation: arrow-rotate 0.7s forwards linear;
transform-box: fill-box;
transform-origin: center;
}
@keyframes arrow-rotate {
0% {
transform: rotate(-3deg);
}
30% {
transform: rotate(12deg);
}
100% {
transform: rotate(60deg);
}
}
/* Archer draw */
.archer-draw {
transform-box: fill-box;
transform: translate(0%, 19%);
animation: archer-preshot-visibility 0.3s forwards;
}
@keyframes archer-preshot-visibility {
0% {
visibility: visible;
}
99% {
visibility: visible;
}
100% {
visibility: visible;
}
}
.archer-draw .hair {
transform-box: fill-box;
transform-origin: top left;
transform: rotate(0deg);
animation: archer-draw-hair 2.1s alternate infinite cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes archer-draw-hair {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-31deg);
}
}
/*Archer Jump */
.archer-jump {
transform-box: fill-box;
transform-origin: center;
transform: translate(0px, 29px);
animation: archer-jumping 2.8s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes archer-jumping {
0% {
transform: translate(0px, 29px);
}
45% {
transform: translate(0px, 0px);
}
75% {
transform: translate(0px, 29px);
}
95% {
transform: translate(0px, 0px);
}
100% {
transform: translate(0px, 32px);
}
}
.archer-jump .hair {
transform-box: fill-box;
transform-origin: top right;
transform: rotate(3deg);
animation: jump-hair 5.6s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes jump-hair {
0% {
transform: rotate(3deg);
}
40% {
transform: rotate(58deg);
}
100% {
transform: rotate(-2deg);
}
}
.archer-jump .string {
transform-box: fill-box;
animation: jump-string-animation-duration 2.6s forwards linear;
}
@keyframes jump-string-animation-duration {
0% {
visibility: visible;
}
100% {
visibility: visible;
}
}
.archer-jump .string .top {
transform-box: fill-box;
transform-origin: top right;
transform: translate(0px, 0px) rotate(-29deg) scale(1, 1);
animation: archer-jump-string-top 2.8s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes archer-jump-string-top {
0% {
transform: translate(0px, 0px) rotate(-29deg) scale(1, 1);
}
50% {
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
}
90% {
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
}
100% {
transform: translate(0px, 0px) rotate(-35deg) scale(0.8, 0.8);
}
}
.archer-jump .string .bottom {
transform-box: fill-box;
transform-origin: bottom right;
transform: translate(0px, 0px) rotate(8deg) scale(0.5, 1);
animation: archer-jump-string-bottom 2.8s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes archer-jump-string-bottom {
0% {
transform: translate(0px, 0px) rotate(8deg) scale(0.5, 1);
}
50% {
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
}
90% {
transform: translate(0px, 0px) rotate(0deg) scale(1, 1);
}
100% {
transform: translate(0px, 0px) rotate(30deg) scale(0.7, 0.7);
}
}
.archer-jump .arrow {
transform-box: fill-box;
transform-origin: left;
transform: translate(29px, 15px) rotate(-4deg) scale(1, 1);
animation: archer-jump-arrow 0.8s forwards cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes archer-jump-arrow {
0% {
transform: translate(29px, 15px) rotate(-4deg) scale(1, 1);
}
100% {
transform: translate(0, 0) rotate(0deg) scale(1, 1);
}
}
.archer-jump .left-arm {
transform-box: fill-box;
transform-origin: left;
transform: translate(90px, -6px) rotate(6deg) scale(1, 1);
animation: archer-jump-left-arm 2.8s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes archer-jump-left-arm {
0% {
transform: translate(90px, -6px) rotate(6deg) scale(1, 1);
}
50% {
transform: translate(6px, 4px) rotate(0deg) scale(1, 1);
}
90% {
transform: translate(6px, 4px) rotate(0deg) scale(1, 1);
}
95% {
transform: translate(6px, 26px) rotate(-95deg) scale(1, 1);
}
100% {
transform: translate(6px, 26px) rotate(-69deg) scale(1, 1);
}
}
@media (min-width: 800.98px) and (max-width: 1000.98px) {
.arrow-container {
transform: translate(-3vw, -47vh);
animation: arrow-travel-down 0.5s forwards linear;
}
@keyframes arrow-travel-down {
0% {
transform: translate(-3vw, -47vh);
}
30% {
transform: translate(47vw, -47vh);
}
100% {
transform: translate(47vw, 13vh);
}
}
.arrow-container .arrow {
transform: rotate(-3deg);
animation: arrow-rotate-down 0.7s forwards linear;
}
@keyframes arrow-rotate-down {
0% {
transform: rotate(-3deg);
}
70% {
transform: rotate(145deg);
}
100% {
transform: rotate(165deg);
}
}
}
@media (min-width: 500.98px) and (max-width: 800.98px) {
.arrow-container {
transform: translate(-3vw, -47vh);
animation: arrow-travel-down 0.5s forwards linear;
}
@keyframes arrow-travel-down {
0% {
transform: translate(-3vw, -47vh);
}
30% {
transform: translate(30vw, -47vh);
}
100% {
transform: translate(30vw, 13vh);
}
}
.arrow-container .arrow {
transform: rotate(-3deg);
animation: arrow-rotate-down 0.7s forwards linear;
}
@keyframes arrow-rotate-down {
0% {
transform: rotate(-3deg);
}
70% {
transform: rotate(145deg);
}
100% {
transform: rotate(165deg);
}
}
}
@media (min-width: 300px) and (max-width: 500.98px) {
.arrow-container {
transform: translate(-3vw, -47vh);
animation: arrow-travel-down 0.5s forwards linear;
}
@keyframes arrow-travel-down {
0% {
transform: translate(-3vw, -47vh);
}
30% {
transform: translate(10vw, -47vh);
}
100% {
transform: translate(10vw, 13vh);
}
}
.arrow-container .arrow {
transform: rotate(-3deg);
animation: arrow-rotate-down 0.7s forwards linear;
}
@keyframes arrow-rotate-down {
0% {
transform: rotate(-3deg);
}
70% {
transform: rotate(145deg);
}
100% {
transform: rotate(165deg);
}
}
}
/* no animation setting */
.archer-no-animation {
transform-box: fill-box;
transform-origin: center;
transform: translate(0px, 29px);
}
</style></svg>
</div></li>
<li class="middle-content svelte-1eflwkb"><h2>a portal to a new universe.</h2>
<p class="svelte-1ny94hl">Once through the portal, you can be <span class="highlight">whatever you want to be</span>. Fill
up your <span class="highlight">sense of wonder</span> and explore this magical, curious, and expanding
universe. Welcome to 3ee Games!
</p>
<p class="svelte-1ny94hl">Sign up for a 3ee Games account to enable you to play our games cross platform. From your computer,
to your phone, to your consoles: experience cross platform play with a 3ee Games account.
</p>
<button class="svelte-1eflwkb"><ion-icon class="icon svelte-1eflwkb" name="planet-sharp"></ion-icon>
<span>Sign Up Now</span></button>
<div class="footer svelte-1eflwkb"><p class="svelte-1eflwkb"><ion-icon class="small-icon filled-accent svelte-1eflwkb" name="caret-forward-circle-sharp"></ion-icon>
Already have an account? <a href="/account/login">Login Now</a>.
</p></div></li>
<li><div class="svg-blitter snake"><svg class="idle svelte-1x425li" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 103.2604 92.6458"><g class="vector-container svelte-1x425li"><g class="bottom svelte-1x425li"><path class="snake-skin svelte-1x425li" fill="#752523" d="M76.674 76.7297c.2077-.1866 24.6411 10.727 24.5582 11.1397-.0825.4127-27.8783.3926-31.5154-2.588-3.6371-2.981 6.9571-8.5517 6.9571-8.5517M18.4377 73.9844s4.0421-13.7263 9.499-14.5578c5.457-.8318 41.8305 12.232 41.8305 12.232l-23.0226 8.3103-28.3069-5.9845"></path></g><g class="bottom svelte-1x425li"><path class="snake-skin svelte-1x425li" fill="#853626" d="M18.0151 69.3072s4.3152-.7366 5.3206-.7672c1.0061-.031 11.921 5.3064 14.1386 5.1142 2.218-.193 37.6643-5.8427 38.6384-5.043.9743.7998 4.8348 11.9687 4.0308 13.7404-.8043 1.7713-17.846 7.682-26.1087 8.4317-8.2624.7497-34.9836-9.9988-34.9836-9.9988l-1.0361-11.4773"></path></g><g class="bottom svelte-1x425li"><path class="snake-skin svelte-1x425li" fill="#db8e2f" d="m38.7143 81.5342-20.6992-12.227S7.6117 81.3882 7.5062 84.1567c-.1058 2.769 23.8428 7.8518 24.9245 7.6052 1.0805-.2466 19.0443-.5909 19.0443-.5909l-12.7607-9.6368"></path></g><g class="bottom svelte-1x425li"><path class="snake-skin svelte-1x425li" fill="#bd5e22" d="M37.7823 79.627s-9.8446 5.2399-10.8504 5.2706c-1.0058.031-19.0052-.03-19.0052-.03S28.7491 91.691 32.417 92.108c3.6682.4173 17.3164-.9338 17.3164-.9338L37.7823 79.627"></path></g><g class="bottom svelte-1x425li"><path class="snake-skin svelte-1x425li" fill="#db8e2f" d="M31.6186 72.46c4.4936-3.4544 9.0982-9.145 11.0183-9.8229 1.5091.3745 3.4255.9078 3.4156 1.1657-.037.969 5.6906 18.5082 6.3464 18.8797.6555.3718 11.5422 2.9358 11.5422 2.9358s-10.8468 6.9342-11.382 6.9137c-.5348-.02-11.0991-1.3935-12.0791-2.4708-.6844-.7515-5.6963-10.0733-8.8614-17.6012"></path></g><g class="bottom svelte-1x425li"><path class="snake-skin svelte-1x425li" fill="#bd5e22" d="M32.4169 92.108c-21.6874-3.6516-24.4902-7.2404-24.4902-7.2404L32.417 92.108"></path></g><g class="front svelte-1x425li"><g class="top svelte-1x425li"><path class="snake-skin svelte-1x425li" fill="#a4512b" d="M58.4539 6.727S75.0913 30.563 73.0262 39.6652c-2.0655 9.1024-20.332 24.5852-20.3536 25.624-.0217 1.0387 12.7108 19.325 11.6977 19.8555-1.0127.5303-7.7683 3.437-7.7683 3.437L46.1752 86.977 35.3628 57.529S55.8755 41.869 56.1684 41.4596c.2932-.4097-3.1164-24.1504-3.1164-24.1504S54.3619 7.126 58.4539 6.727"></path></g><g class="top svelte-1x425li"><path class="snake-skin svelte-1x425li" fill="#fbc648" d="M58.5726 18.6185s10.4355 17.914 9.9162 20.328c-.5192 2.4142-21.5053 23.1055-21.5258 24.0751-.0203.9696 5.1572 19.0227 5.819 19.3832.662.3599 11.591 2.7373 11.591 2.7373s-10.7268 7.119-11.2619 7.1074c-.5354-.011-11.1213-1.2032-12.12-2.2633-.9986-1.06-11.1875-19.5653-11.8698-25.3302-.6827-5.7648 4.9164-17.3563 22.7421-24.6036 4.13-2.1997 2.5847-8.3287 1.6448-11.397-.9396-3.068-2.2845-6.7684-2.2845-6.7684l7.3489-3.2685"></path></g><g class="top svelte-1x425li"><path class="snake-skin svelte-1x425li" fill="#db8e2f" d="M66.7477 33.8657c-4.1374-1.9632-9.6576-4.1606-13.3536-5.5672-.9308-2.9905-2.1731-6.409-2.1731-6.409l7.3491-3.2689s5.3253 9.1424 8.1776 15.245"></path></g><g class="top svelte-1x425li"><path class="snake-skin svelte-1x425li" fill="#fbf3af" d="M51.8154 42.3382S37.2338 44.942 29.997 61.2105c-.013.623 3.9146 8.0497 3.9146 8.0497l.3053-8.169s6.978-13.5027 17.5986-18.753"></path></g><g class="mouth-closed snake-skin svelte-1x425li"><path fill="#a31e27" d="M44.6037 11.9588c-.002.0166-2.8666-.2037-2.9002.4116-.8121.149-.2533 3.071-.2533 3.071l6.098 1.001 9.5703-1.2465s-1.0674-2.7862-1.5854-2.9437c-.5183-.1576-10.9294-.2934-10.9294-.2934"></path><path fill="#c97631" d="M40.5631 12.729s4.8274-.349 5.1969-.4107c.3694-.0614 3.2384 2.0078 3.2384 2.0078s5.895-.1878 6.0892.1279c.1942.316.7842.1421.7134.3138-.0705.172-5.369 1.1713-5.369 1.1713s-9.766-2.4934-9.9102-2.0115c-.1442.482.9627 4.4003 1.4565 4.3682.4941-.0314 17.4188-2.6211 17.6246-2.8593.2059-.2381-2.4943-1.5983-2.2511-2.0089.2427-.4106 1.7572-5.5748 1.7572-5.5748s-6.0926-4.7703-6.4268-4.7773c-.3346-.007-10.4887 2.1358-11.1176 3.404-.6292 1.269-1.6938 5.7498-1.0015 6.2496"></path><path fill="#f9f07b" d="M52.992 13.2976 51.8322 18.34l-.9613-5.573-4.325-.5848-3.332-.7035-.9414 5.4133s-1.3055-4.7821-1.2744-5.067c.4557-1.3364 11.0118.589 11.9939 1.4726"></path><path fill="#c97631" d="M40.5631 12.729s4.8274-.349 5.1969-.4107c.3694-.0614 3.2384 2.0078 3.2384 2.0078s.519-5.6278.7132-5.3122c-11.0036 2.7897 5.5897 7.7986 7.6402 4.4137.2427-.4106 1.7572-5.5748 1.7572-5.5748s-6.0926-4.7703-6.4268-4.7773c-.3346-.007-10.4887 2.1358-11.1176 3.404-.6292 1.269-1.6938 5.7498-1.0015 6.2496"></path><path fill="#a4512b" d="M57.2543 6.9132s-1.8476 5.902-2.3354 6.013c-.4878.1111-8.2882-4.608-8.5044-4.6816-.2161-.074-5.3529 2.2778-5.3491 2.0872.0037-.1902.5636-3.9448.5636-3.9448l3.3962-1.3068.908 1.37 2.5265-2.3543.3375 2.2756 8.457.5417"></path></g><g class="eyes-open mouth-closed svelte-1x425li" fill="#040606"><path d="m53.453 7.9953 2.1245.0447s-1.3221 1.6006-1.7217 1.5054c-.4-.095-1.7478-1.2494-1.7478-1.2494l1.345-.3007M43.5951 7.2172s-1.0706.7741-1.302.6306c-.2315-.1435-.4099-1.2035-.4099-1.2035l.8613.018.8506.555"></path></g><g class="eyes-close mouth-closed svelte-1x425li" fill="#040606"><path d="m53.7185 8.0466 2.1234-.0182s-1.3431.377-1.7414.361c-.3986-.016-1.7308-.2574-1.7308-.2574l1.3488-.0854M44.3972 7.7037s-1.7852.251-2.164.2145c-.3787-.0366-.6484-.342-.6484-.342l1.4212-.0147 1.3912.1422"></path></g><g class="brows snake-skin close svelte-1x425li" fill="#f78e3a"><path d="M59.4362 6.008c.0274.0998-7.0206 2.7626-7.6881 2.6792-.6676-.0831-4.0047-2.1627-4.0047-2.1627s6.1081-3.9597 6.5095-3.951c.4016.0083 4.6858 1.6224 5.1833 3.4345M44.0485 2.3595l2.0261 3.9226s-2.347 1.7867-2.5467 1.7478c-.2004-.0393-2.943-3.318-2.9657-3.8385-.0223-.52 3.4863-1.832 3.4863-1.832"></path></g></g></g></svg>
</div></li></ul></section></div></div>
<div id="__saos-0.5576327762505411__" style=""><div style="animation: fade-in 1s cubic-bezier(0.35, 0.5, 0.65, 0.95) both; "><section class="background alternate svelte-13p8o9u"><ul class="flex-3-cols main-homepage svelte-mmroks"><li><div class="tree-green svelte-mmroks"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.1 72.231" class="svelte-uawh2p"><g class="hover-board"><path fill="#6d6c20" d="M.695 64.642s.337 3.25.531 3.59c.194.338 6.645 4.268 19.257 3.88 12.612-.388 16.69-2.28 17.076-2.814.387-.534.413-3.541.413-3.541L.695 64.642"></path><path fill="#a7a820" d="M19.27 59.451S-.374 58.63.742 64.91c1.115 6.28 35.507 7.347 37.108 1.72 1.6-5.627-12.809-7.23-18.578-7.179"></path></g><g class="tree-green"><path fill="#623f1a" d="M14.711 52.175s.145 12.127 0 12.37c-.146.242 7.664.436 8.1.339.437-.097-.388-12.078-.388-12.078l-7.712-.63"></path><path fill="#7b6a1e" d="M10.523 26.418S.822 37.22 1.403 38.19c.583.97 7.244 1.293 7.244 1.293S-.73 51.383.046 52.742c.776 1.357 37.382 3.298 37.512.581.129-2.716-9.572-13.517-9.572-13.517s6.726-.453 6.92-1.358c.194-.906-7.761-12.03-7.761-12.03s4.204.518 4.01-1.746C30.96 22.408 20.613 1.065 19.578.03c-1.035-1.034-13.323 24.771-13 25.482.323.712 3.945.906 3.945.906"></path><path fill="#5d5119" d="M21.938 8.956s4.366 9.41 3.93 10.331c-.437.922-1.553-2.134-1.553-2.134s.146 4.075-.873 3.687c-1.019-.388-1.504-2.474-1.504-2.474s-.242 3.981-1.212 2.5c-.97-1.482-1.601-8.127-1.019-8.176.582-.048 1.019 1.795 1.019 1.795s-.68-3.201 0-3.347c.679-.145 1.31.485 1.31.485s-.922-3.59-.098-2.667M11.995 28.65s-4.172 6.887-3.445 7.178c.728.291 1.892-.727 1.892-.727s-1.018 3.007.097 3.201c1.116.194 2.28-2.474 2.28-2.474s-.68 2.28.388 1.456c1.067-.825 2.91-6.791 2.571-7.713-.34-.922-2.668 2.377-2.668 2.377s.388-1.843.097-2.231c-.291-.389-1.31 1.455-1.261 1.31.049-.146.97-3.105.049-2.378M23.49 38.108s7.374 6.791 6.743 8.246c-.63 1.455-3.352-1.455-3.352-1.455s1.17 3.978-.237 3.444c-1.407-.534-2.183-2.91-2.183-2.91s.436 2.328-.146 2.085c-.582-.242-2.668-4.365-2.231-4.85.436-.485 1.245.372 1.245.275 0-.097-1.229-2.2-.744-2.749.485-.55 1.262.356 1.262.356s-1.165-2.2-1.197-2.587c-.033-.388.383-.284.84.145"></path><path fill="#a6911f" d="M29.517 33.277c-.855-1.564-1.731-3.117-2.598-4.675-.99-1.78-3.75-.344-2.806 1.466.824 1.58 1.639 3.166 2.474 4.74.272.513.82.88 1.407.887.669.008 1.102-.218 1.466-.786a1.65 1.65 0 0 0 .057-1.632M21.207 32.388c-.009-.752-.502-1.397-1.258-1.52-.725-.12-1.469.313-1.68 1.037-.106.367-.226.73-.293 1.108-.042.228-.115.526-.123.743a1.85 1.85 0 0 0 .077.571l.11.299c.192.56.55.984 1.167 1.085.585.096 1.121-.169 1.454-.653.167-.242.354-.475.429-.77.06-.24.08-.5.103-.746.036-.383.019-.768.014-1.154"></path><path fill="#a6911f" d="M18.04 34.626c0-.002 0-.003-.002-.004.055.148.052.14.002.004M11.535 43.83l-.99 1.569c-.397.63-.77 1.151-.86 1.912-.066.544.357 1.11.829 1.313.547.235 1.055.108 1.519-.243.505-.38.736-1.027 1.021-1.576l.806-1.545c.802-1.54-1.376-2.934-2.325-1.43M21.281 46.267c-.06-.838-.619-1.672-1.552-1.665-.803.006-1.721.655-1.665 1.553.055.883.08 1.769.236 2.64.316 1.771 3.013 1.46 3.086-.288.03-.749-.05-1.493-.105-2.24M14.57 14.688c-1.088 1.21-1.775 2.76-2.133 4.338-.404 1.776 2.28 2.618 2.736.82.323-1.272.913-2.253 1.602-3.354.834-1.334-1.095-3.038-2.204-1.804M17.851 5.87c-.674.644-.967 1.528-1.338 2.362-.305.688.225 1.536.84 1.81.622.28 1.592.11 1.91-.578.377-.82.846-1.627.884-2.549.049-1.173-1.44-1.864-2.296-1.046"></path></g></svg></div>
<div class="dragon svelte-mmroks"><svg id="dragon-animation" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 130.41668 127"><g class="hover-board"><path fill="#6d6c20" d="M61.929 116.112s.402 4.8.943 5.295c.541.495 11.67 3.602 29.498 4.303 17.829.701 33.112-3.933 34.104-5.216.993-1.283.289-4.747.289-4.747l-64.834.365"></path><path fill="#a7a820" d="M73.57 112.372s-12.785.282-11.641 3.74c1.143 3.457 24.316 5.585 39.004 5.496 14.688-.088 26.542-3.287 25.83-5.86-.713-2.574-27.75-5.415-53.193-3.376"></path></g><g class="dragon-idle-animation dragon-tail"><g class="dragon-standing-tail-loop"><g><path fill="#f3b90b" d="M55.278 63.158s-5.219 22.045 1.51 31.756c6.729 9.712 23.939 12.172 23.939 12.172s-1.922-5.673-5.552-7.702c-3.629-2.029-6.573-2.825-12.618-10.964s-7.28-25.262-7.28-25.262"></path><path fill="#cf9c18" d="M56.92 89.72c1.28-1.281 3.022-2.12 4.352-3.306-.401-.66-.79-1.352-1.163-2.068-1.807.69-3.518 2.445-4.725 3.75-.389.421-.663.671-1.013 1.12.223 1.02.454 1.819.78 2.583a17.588 17.588 0 0 1 1.77-2.08"></path><path fill="#cf9c18" d="M54.292 81.035c1.097-.567 2.626-.595 3.392-1.68a.792.792 0 0 0 .09-.179 91.26 91.26 0 0 1-.359-.96c-1.315-.67-2.694.1-3.874.699-.069.035-.133.076-.202.113-.028.808-.065 1.666.041 2.47.222-.137.679-.343.912-.463"></path><path fill="#cf9c18" d="M61.34 95.407c-.365 1.13-.635 2.268-.877 3.42.629.542 1.305 1.05 1.944 1.464a40.641 40.641 0 0 1 1.008-3.52c.37-1.095.712-2.374 1.324-3.357.274-.441.678-.727 1.036-1.064a48.925 48.925 0 0 1-1.557-1.835c-1.781.887-2.286 3.057-2.878 4.892"></path><path fill="#cf9c18" d="M69.094 103.806c.845.376 1.734.687 2.508.949-.05-1.45.038-2.939.274-4.38.134-.82.402-1.635.663-2.448a22.601 22.601 0 0 1-2.59-1.652c-.46 1.425-.61 3.049-.755 4.324-.12 1.06-.228 2.122-.185 3.172"></path></g><path fill="#982226" stroke="#982226" stroke-width=".025" d="M75.17 94.644c-8.92 2.059-11.22-2.429-13.512-10.988-2.293-8.56-6.868-27.208-6.995-30.265-1.68-2.586-8.03-7.771-8.03-7.771s3.883-.746 4.122-.612c.24.133.957 3.46.957 3.46s3.868.79 4.1 1.077c.233.287-1.149 3.846-1.149 3.846s3.365-.26 3.608-.026c.243.233-1.24 4.166-1.24 4.166s2.823.527 2.982.91c.16.384-.48 3.641-.48 3.641s1.386 1.246 1.66 1.768-.776 3.931-.776 3.931 1.576 1.999 1.751 2.352c.176.353-1.26 3.433-1.26 3.433s1.254 1.434 1.65 1.852c.395.417-.9 3.406-.9 3.406s1.758.333 1.95.833c.192.5-.804 3.833-.804 3.833s2.996-.37 3.285.027c.29.397-.825 4.292-.825 4.292s4.346-.854 4.532-.554c.186.3 1.093 4.833 1.093 4.833s1.529-3.055 1.742-2.914c.212.142 2.539 5.47 2.539 5.47"></path><path fill="#b43323" d="M78.075 93.399c-5.764 3.069-14.57-4.278-16.675-16.826-2.104-12.548-3.71-29.107-18.03-34.101 0 0 3.088-2.006 2.226-2.672-.863-.666-13.332.272-12.916 1.412.416 1.138 8.882 9.46 10.202 8.41 1.32-1.051-.499-4.053-.358-3.95.142.104 11.16 5.53 11.833 24.908.673 19.377 10.522 26.831 22.016 31.722"></path></g></g><g class="dragon-idle-animation dragon-standing"><g class="dragon-fireball"><path fill="#982226" d="M91.06 16.14c-.075.12-5.314-1.282-5.46-1.212-.148.07-.038 2.11-.038 2.11s-3.64.081-3.765.297c-.125.216-.042 2.38-.042 2.38s-4.424.55-4.648.885c-.225.336.602 3.019.602 3.019s-4.047 1.142-3.98 1.507c.066.364 1.264 2.593 1.264 2.593s-4.11 1.965-3.904 2.648c.206.683 2.234 2.635 2.234 2.635s-3.207 3.049-3.262 3.436c-.056.387 2.398 1.546 2.398 1.546s-1.737 3.632-1.643 3.804c.094.171 1.676 1.242 1.748 1.267.072.026-.913 2.264-.8 2.776.112.511 1.674 1.315 1.674 1.315s-.724 2.583-.727 2.752c-.003.17 2.13 1.615 2.13 1.615s-.979 3.257-.647 3.7c.332.442 2.574 1.233 2.574 1.233s-.797 2.558-.806 3.067c-.009.51 3.292 1.78 3.292 1.78s-.855 3.114-.617 3.385c.238.271 2.796.971 2.796.971s-1.17 4.492-.884 4.787c.286.297 2.995.757 2.995.757s-1.97 4.38-1.566 4.896c.403.517 4.245 1.385 4.245 1.385s-3.204 2.854-2.971 3.416c.232.562 2.568 2.908 2.568 2.908s-4.076.05-4.035.511c.04.462 1.821 4.01 1.821 4.01s-4.12-1.673-4.547-1.462c-.427.21-1.139 4.783-1.139 4.783s-2.39-3.85-2.552-4.048c-.477 1.13.452 7.316 2.687 7.518 9.134.613 14.424-12.028 11.29-20.04-3.133-8.01-14.99-32.735-13.784-38.73 1.205-5.994 15.499-20.2 15.499-20.2"></path><path class="dragon-tongue" fill="#982226" d="M103.729 21.46s5.202.998 6.358 2.958c1.156 1.961-1.8 2.33.144 4.11 1.946 1.781 11.614 1.919 11.773 2.05.16.133-3.592 1.458-3.572 1.458.021 0 2.917.86 2.487 1.37-.429.51-12.822-1.034-16.158-4.424-3.336-3.39-1.032-7.521-1.032-7.521"></path><g class="dragon-jaw"><path fill="#dededa" d="M101.37 26.394s4.058-.915 3.775-.294c-.284.62-1.79 2.17-1.79 2.17s3.465-.972 3.287-.56c-.178.413-3.113 3.08-2.764 3.005.35-.074 3.696-1.228 3.542-.883-.154.344-2.18 2.185-1.926 2.122.253-.063 3.557-.755 3.37-.407-.185.348-2.374 2.045-2.302 2.037.072-.01 3.714-.938 3.431-.415-.283.523-2.898 2.598-2.81 2.522.089-.076 4.405-1.282 4.22-.934-.186.349-3.437 2.565-3.814 2.676-.378.111-7.176-8.642-6.22-11.039"></path><path fill="#b43323" d="m103.753 22.464-.073.001a40.998 40.998 0 0 1-.905.002 70.953 70.953 0 0 1-1.153-.017 107.213 107.213 0 0 1-2.258-.068 214.165 214.165 0 0 1-1.848-.077c-.024.043-1.644 2.988-1.26 3.435.388.452 2.605.717 4.164 3.689 1.558 2.972 2.618 12.1 4.086 11.984 1.468-.116 6.983-3.556 7.012-3.943.03-.387-3.515-.687-3.569-.838-.053-.15-4.899-10.247-5.126-11.529-.15-.848.143-1.887.93-2.64z"></path></g><path fill="#dededa" d="M108.331 19.705c-.094.022-1.77 3.171-1.612 3.4.158.23 4.055-2.548 4.055-2.548s-1.116 2.826-.859 2.863c.259.037 4.416-2.8 4.414-2.704-.002.097-1.374 2.757-1.083 2.763.29.005 3.632-2.395 3.632-2.395s-.878 3.968-.291 3.685c.587-.284 2.934-3.185 2.932-3.088 0 .097-.709 3.545-.158 3.49.551-.055 3.36-3.466 3.264-3.533-.096-.066-7.605-3.433-14.294-1.933"></path><path fill="#b43323" d="M105.692-.314c-1.394-.158.099 7.116.099 7.116S93.913-1.945 93.86.998c-.052 2.942 6.092 6.705 6.146 7.288.055.583-10.916-4.558-10.676-1.643.24 2.915 6.99 5.265 6.99 5.265S77.007 18.09 72.404 35.86c-2.262 8.732 12.635 30.66 13.774 45.434-2.244 5.531-.306 9.586-5.227 12.398 0 0-13.388-2.646-10.852 6.149 3.132 3.936 2.719 10.915-.679 16.548-1.196 1.79 15.32.592 16.8 1.006 1.48.414 1.434 2.16 2.065 2.147.63-.014.779-1.515.944-1.27.166.246 1.425 1.749 1.966 1.321.541-.427.606-1.323.606-1.323s1.064 1.522 1.605 1.144c.54-.379.51-1.447.582-1.397.072.05 1.435 1.165 2.17.766.734-.4.598-2.788.598-2.788s2.379 2.694 3.939 2.27c1.56-.426 2.072-2.002 2.072-2.002s1.97 2.008 2.948 1.604c.977-.403.356-1.837.453-1.836.097.003 4.466 1.664 4.65.374.185-1.29-2.681-5.676-2.681-5.676l1.317-3.21s2.161 7.735 4.216 8.58c2.055.845 1.936-1.584 1.999-1.486.063.099 1.5 1.177 2.347.843.846-.333.78-2.081.842-1.983.064.098 3.647 2.328 4.123 1.01.476-1.317-5.636-12.389-5.951-20.221-.316-7.833-3.026-16.83-12.398-28.005-4.3-5.127-15.289-6.07-21.529-13.147-4.06-4.604-6.02-8.42-4.7-17.243 1.317-8.81 14.07-18.81 19.032-13.202l.02.028-.004.009h.01c.769 1.188 2.023 1.897 3.362 1.897 1.67 0 3.175-1.099 3.804-2.777.195-.102.384-.209.614-.28 1.95-.613 15.611.597 16.916 1.784 1.305 1.188.995 4.082 1.448 4.063.453-.019 4.428-9.005 4.454-10.46.025-1.455-2.825.598-3.266-.057-.441-.655.098-1.875-.994-2.347-1.091-.472-1.794.875-2.865 1.082-1.071.208-5.232-.415-6.901-3-1.669-2.584-6.105-11.492-8.022-12.787a.736.736 0 0 0-.32-.134z"></path><path fill="#91301f" d="M81.843 65.53s4.091 10.578 3.806 15.764c-.69 3.406-2.624 10.926-7.811 11.996 0 0 6.077 2.325 12.45-3.49 3.944-3.6-1.477-8.984-1.477-8.984s2.091-1.467.416-6.348c-1.674-4.88-7.384-8.938-7.384-8.938"></path><path fill="#91301f" d="M110.004 108.862c-.001.097-.24 4.514 4.752.052 4.63-4.138 3.186-10.842 2.972-11.364-.214-.521-7.724 11.312-7.724 11.312"></path><g><path fill="#f3b90b" d="M107.473 111.188S130.861 96.328 120 73.884c-10.86-22.442-24.622-12.377-34.023-29.533-1.108-2.022-1.79-3.86-2.133-5.533C81.279 26.304 97.782 23.18 97.782 23.18s-.444-1.196-2.507-2.112c-1.852-.098-17.739-.714-17.735 17.528.002 18.242 13.397 27.195 22.06 36.701 8.662 9.507 6.032 15.379 2.892 22.891-.41 1.255-.783 9.541 1.32 11.292"></path><g><g fill="#cf9c18"><path d="M98.349 60.802c1.7-1.343 3.535-2.216 5.386-3.117-.832-.344-2.058-.922-3.077-1.33a47.659 47.659 0 0 0-3.349 2.446c-2.635 2.09-4.89 4.565-6.793 7.31.474.487.95.967 1.427 1.444 1.815-2.53 3.938-4.803 6.406-6.753"></path><path d="M94.281 53.4a35.395 35.395 0 0 1-2.336-1.651c-2.76 2.18-5.069 5.063-7.028 7.947.412.542.83 1.076 1.26 1.6 2.513-3.077 4.527-5.558 7.643-7.602"></path><path d="M101.417 77.36c.538.629 1.05 1.235 1.529 1.838 5.2-2.551 10.532-5.424 15.117-8.905a38.95 38.95 0 0 0-1.642-2.569c-2.436 1.703-4.822 3.498-7.324 5.087-2.512 1.596-5.131 3.047-7.73 4.482"></path><path d="M104.506 92.998c-.21.675-.59 1.64-.826 2.336 5.442.669 11.426.969 16.926.644.441-.935.788-1.794 1.147-3.016-5.72.423-10.427.617-16.18.179"></path><path d="M103.2 100.783c.25.85.564 1.785.925 2.729a35.76 35.76 0 0 0 5.8 1.81c.952.21 2.414.78 3.482.957a46.197 46.197 0 0 0 2.386-2.669c-4.121-.14-8.862-1.247-12.593-2.827"></path><path d="M87.025 46.124c-.413-.64-.735-1.245-1.105-1.919-.089-.162-.168-.32-.251-.48-2.513.8-4.954 2.235-6.96 3.816.188.666.395 1.316.62 1.954a19.43 19.43 0 0 1 5.015-2.74c.897-.326 1.45-.453 2.355-.592"></path><path d="M90.16 50.13c-.555-.557-1.046-1.18-1.582-1.849a25.198 25.198 0 0 0-7.282 5.775 37.17 37.17 0 0 0 1.075 1.887c2.165-2.546 4.334-4.395 7.366-5.716"></path><path d="M82.169 32.363c.81.298 1.068.492 1.823.896.275-.773.555-1.43.925-2.113-1.802-.889-3.546-1.342-5.585-1.655-.349.568-.545 1.247-.758 1.877 1.129.236 2.494.589 3.595.995"></path><path d="M84.369 27.853a8.7 8.7 0 0 1 1.51 1.842c.367-.431 1.021-1.089 1.328-1.405-.456-.673-.767-1.006-1.286-1.499a13.961 13.961 0 0 0-2.906-2.092c-.5.406-.836.754-1.25 1.163 1.016.597 1.75 1.185 2.604 1.99"></path><path d="M106.673 86.848c5.705-.932 10.803-2.535 15.886-5.066-.144-.905-.4-2.006-.67-2.95-5.341 2.573-10.907 4.652-16.792 5.876.271.822.309 1.753.366 2.414"></path><path d="M77.771 39.52c2.125-.546 3.885-.779 6.065-.722-.135-.736-.254-1.608-.263-2.318-2.112.015-3.951.472-6.015 1.103-.015.295-.017.605-.018.898-.002.403-.005.758.013 1.109"></path><path d="M88.155 25.537c.218.423.507.99.667 1.44.549-.375 1.11-.734 1.655-1.048-.71-1.52-1.469-2.603-2.618-3.862-.536.152-1.05.385-1.595.627.83.966 1.3 1.693 1.891 2.843"></path><path d="M96.085 71.654c.582.58 1.154 1.156 1.713 1.733 4.858-3.379 9.78-6.799 14.394-10.503a24.101 24.101 0 0 0-2.49-1.99c-4.678 3.394-9.165 7.086-13.617 10.76"></path><path d="M91.715 21.184c.42 1.447.648 2.24.863 3.713.69-.332 1.465-.596 1.992-.817-.182-1.358-.19-1.76-.681-3.046-.5-.033-1.25.042-1.965.125"></path></g></g></g><path fill="#91301f" d="M96.756 118.112s-.075-3.074-3.216-4.681c-3.142-1.608-9.9-1.662-9.9-1.662s9.99-7.118 1.861-13.908c5.037-2.24 6.818 1.285 6.818 1.285s-.25 5.914 1.034 10.206c1.283 4.292 4.674 6.421 3.403 8.76"></path><path fill="#d33823" d="M107.473 111.188s-4.373-7.823-4.684-15.009c-.31-7.185-8.993-1.727-8.667 7.31.326 9.038 4.997 11.013 7.672 10.671 2.674-.34 1.17-3.108 1.7-2.88.53.227 1.115 1.45 2.254 1.494 1.14.045 2.39-.298 1.725-1.586"></path><path fill="#d33823" d="M82.008 112.547c.156-.033 8.44-2.65 7.2-9.463-1.238-6.814-8.6-7.445-11.226-4.402-2.624 3.043 2.899 3.48 2.967 5.13.068 1.651-4.566 3.073-4.02 5.169.544 2.096 4.05 1.381 4.05 1.381s-1.748 2.773 1.029 2.185"></path><g class="dragon-eyes-closed"><path fill="#91301f" d="M104.98 12.259c.28.118 3.013 1.508 3.881 3.626.869 2.117 7.369.323 7.915.56.545.235-7.942 2.835-9.359 2.487-1.417-.348-.007-1.423-.007-1.423s-5.251.651-5.172-.156c.079-.807 3.036-1.628 3.036-1.628s-2.29-.332-1.993-.682c.297-.35 2.596-.472 2.596-.472s-2.664-3.055-.898-2.312"></path><path fill="#d33823" d="M103.527 11.15c-.334 1.797 1.333 3.721 3.33 5.122 2.568 1.803 5.624 1 7.502.732 1.05-.15 2.784-.883 2.203-.708-1.624.49-4.406.166-5.435-.036-.87-.17-1.324-.539-2.763-1.482-.992-.65.373-1.744-2.947-2.469"></path></g><g class="dragon-eyes-opened"><path fill="#91301f" d="M105.273 12.578c.28.118 3.013 1.508 3.882 3.626.868 2.117 7.368.323 7.914.56.546.235-7.942 2.835-9.359 2.487-1.416-.348-.007-1.423-.007-1.423s-5.25.651-5.172-.156c.079-.807 3.037-1.628 3.037-1.628s-2.291-.331-1.994-.682c.297-.35 2.596-.472 2.596-.472s-2.663-3.055-.897-2.312"></path><path fill="#fff" d="m107.902 15.252 1.164.754s.266.81 1.213 1.052c.468.105 1.045.17 1.045.17s-1.316.353-2.295.166c-.98-.187-1.127-2.142-1.127-2.142"></path><path fill="#d33823" d="M103.82 11.469c-.023.043 4.125 1.819 4.851 3.724.727 1.905 2.122 2.576 3.578 2.52 1.457-.055 5.047-.8 4.851-1.272-.195-.473-4.698-.956-5.581-1.311-.884-.356.682-2.026-1.175-3.094-1.857-1.067-6.323-.935-6.523-.567"></path></g></g></g><style>#dragon-animation {
transform: scale(1.544444);
width: 100%;
height: 100%;
}
@media (min-width: 100px) and (max-width: 530.98px) {
#dragon-animation {
transform: scale(1.944444);
}
}
.dragon .hover-board {
transform-box: fill-box;
transform-origin: center;
transform: translate(1%, 0) scale(1, 1);
}
/* Dragon tail is shared */
.dragon-tail {
transform-origin: bottom right 2px;
transform: translate(5%, -4%) rotate(-6deg) scale(1, 1);
}
@keyframes dragon-standing-tail {
0% {
transform: translate(1%, 0%) rotate(14deg) scale(1, 1);
}
100% {
transform: translate(1%, 0%) rotate(-14deg) scale(1, 1);
}
}
@keyframes dragon-standing-eyes-closed {
0% {
opacity: 0;
}
20% {
opacity: 0;
}
21% {
opacity: 1;
}
23% {