-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1710 lines (1561 loc) · 128 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>
<!-- saved from url=(0025)https://shahnameh-bot.io/ -->
<html lang="en-US" class=""><div id="in-page-channel-node-id" data-channel-name="in_page_channel_LffLCd"></div><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<title>Shahnameh – Story of the Kings</title>
<meta name="robots" content="max-image-preview:large">
<link rel="alternate" type="application/rss+xml" title="Shahnameh » Feed" href="https://shahnameh-bot.io/feed/">
<link rel="alternate" type="application/rss+xml" title="Shahnameh » Comments Feed" href="https://shahnameh-bot.io/comments/feed/">
<script type="text/javascript">
/* <![CDATA[ */
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/shahnameh-bot.io\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.6.2"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
/* ]]> */
</script>
<link rel="stylesheet" id="hfe-widgets-style-css" href="./index_files/frontend.css" type="text/css" media="all">
<style id="wp-emoji-styles-inline-css" type="text/css">
img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<style id="classic-theme-styles-inline-css" type="text/css">
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<style id="global-styles-inline-css" type="text/css">
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--inter: "Inter", sans-serif;--wp--preset--font-family--cardo: Cardo;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
</style>
<link rel="stylesheet" id="contact-form-7-css" href="./index_files/styles.css" type="text/css" media="all">
<link rel="stylesheet" id="woocommerce-layout-css" href="./index_files/woocommerce-layout.css" type="text/css" media="all">
<style id="woocommerce-layout-inline-css" type="text/css">
.infinite-scroll .woocommerce-pagination {
display: none;
}
</style>
<link rel="stylesheet" id="woocommerce-smallscreen-css" href="./index_files/woocommerce-smallscreen.css" type="text/css" media="only screen and (max-width: 768px)">
<link rel="stylesheet" id="woocommerce-general-css" href="./index_files/woocommerce.css" type="text/css" media="all">
<style id="woocommerce-inline-inline-css" type="text/css">
.woocommerce form .form-row .required { visibility: visible; }
</style>
<link rel="stylesheet" id="hfe-style-css" href="./index_files/header-footer-elementor.css" type="text/css" media="all">
<link rel="stylesheet" id="elementor-frontend-css" href="./index_files/frontend.min.css" type="text/css" media="all">
<link rel="stylesheet" id="swiper-css" href="./index_files/swiper.min.css" type="text/css" media="all">
<link rel="stylesheet" id="e-swiper-css" href="./index_files/e-swiper.min.css" type="text/css" media="all">
<link rel="stylesheet" id="elementor-post-11-css" href="./index_files/post-11.css" type="text/css" media="all">
<link rel="stylesheet" id="elementor-global-css" href="./index_files/global.css" type="text/css" media="all">
<link rel="stylesheet" id="widget-heading-css" href="./index_files/widget-heading.min.css" type="text/css" media="all">
<link rel="stylesheet" id="widget-image-css" href="./index_files/widget-image.min.css" type="text/css" media="all">
<link rel="stylesheet" id="elementor-post-965-css" href="./index_files/post-965.css" type="text/css" media="all">
<link rel="stylesheet" id="elementor-post-772-css" href="./index_files/post-772.css" type="text/css" media="all">
<link rel="stylesheet" id="mykd-custom-css" href="./index_files/mykd-custom.css" type="text/css" media="all">
<style id="mykd-custom-inline-css" type="text/css">
html:root { --tg-theme-primary: #45f882}html:root { --unit-primary-color: #45f882}
html:root { --tg-common-color-teal: #68fb9a}
html:root { --tg-theme-secondary: #ffbe18}html:root { --unit-secondary-color: #ffbe18}
html:root { --tg-common-color-black: #0f161b}
</style>
<link rel="stylesheet" id="xotric-fonts-css" href="./index_files/mykd-fonts.css" type="text/css" media="all">
<link rel="stylesheet" id="bootstrap-css" href="./index_files/bootstrap.min.css" type="text/css" media="all">
<link rel="stylesheet" id="mykd-animate-css" href="./index_files/animate.min.css" type="text/css" media="all">
<link rel="stylesheet" id="magnific-popup-css" href="./index_files/magnific-popup.css" type="text/css" media="all">
<link rel="stylesheet" id="font-awesome-free-css" href="./index_files/fontawesome-all.min.css" type="text/css" media="all">
<link rel="stylesheet" id="swiper-bundle-css" href="./index_files/swiper-bundle.css" type="text/css" media="all">
<link rel="stylesheet" id="tg-cursor-css" href="./index_files/tg-cursor.css" type="text/css" media="all">
<link rel="stylesheet" id="odometer-css" href="./index_files/odometer.css" type="text/css" media="all">
<link rel="stylesheet" id="slick-css" href="./index_files/slick.css" type="text/css" media="all">
<link rel="stylesheet" id="flaticon-css" href="./index_files/flaticon.css" type="text/css" media="all">
<link rel="stylesheet" id="mykd-spacing-css" href="./index_files/spacing.css" type="text/css" media="all">
<link rel="stylesheet" id="mykd-core-css" href="./index_files/mykd-core.css" type="text/css" media="all">
<link rel="stylesheet" id="mykd-unit-css" href="./index_files/mykd-unit.css" type="text/css" media="all">
<link rel="stylesheet" id="mykd-woo-css" href="./index_files/mykd-woo.css" type="text/css" media="all">
<link rel="stylesheet" id="mykd-style-css" href="./index_files/style.css" type="text/css" media="all">
<link rel="stylesheet" id="hfe-icons-list-css" href="./index_files/widget-icon-list.min.css" type="text/css" media="all">
<link rel="stylesheet" id="hfe-social-icons-css" href="./index_files/widget-social-icons.min.css" type="text/css" media="all">
<link rel="stylesheet" id="hfe-social-share-icons-brands-css" href="./index_files/brands.css" type="text/css" media="all">
<link rel="stylesheet" id="hfe-social-share-icons-fontawesome-css" href="./index_files/fontawesome.css" type="text/css" media="all">
<link rel="stylesheet" id="hfe-nav-menu-icons-css" href="./index_files/solid.css" type="text/css" media="all">
<link rel="stylesheet" id="google-fonts-1-css" href="./index_files/css" type="text/css" media="all">
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin=""><script type="text/javascript" src="./index_files/jquery.min.js.download" id="jquery-core-js"></script><script src="chrome-extension://idnnbdplmphpflfnlkomgpfbpcgelopg/inpage.js" id="xverse-wallet-provider" data-is-priority="true"></script>
<script type="text/javascript" src="./index_files/jquery-migrate.min.js.download" id="jquery-migrate-js"></script>
<script type="text/javascript" src="./index_files/jquery.blockUI.min.js.download" id="jquery-blockui-js" defer="defer" data-wp-strategy="defer"></script>
<script type="text/javascript" id="wc-add-to-cart-js-extra">
/* <![CDATA[ */
var wc_add_to_cart_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"https:\/\/shahnameh-bot.io\/cart\/","is_cart":"","cart_redirect_after_add":"no"};
/* ]]> */
</script>
<script type="text/javascript" src="./index_files/add-to-cart.min.js.download" id="wc-add-to-cart-js" defer="defer" data-wp-strategy="defer"></script>
<script type="text/javascript" src="./index_files/js.cookie.min.js.download" id="js-cookie-js" defer="defer" data-wp-strategy="defer"></script>
<script type="text/javascript" id="woocommerce-js-extra">
/* <![CDATA[ */
var woocommerce_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%"};
/* ]]> */
</script>
<script type="text/javascript" src="./index_files/woocommerce.min.js.download" id="woocommerce-js" defer="defer" data-wp-strategy="defer"></script>
<script type="text/javascript" src="./index_files/tg-page-head.js.download" id="tg-page-head-js"></script>
<link rel="https://api.w.org/" href="https://shahnameh-bot.io/wp-json/"><link rel="alternate" title="JSON" type="application/json" href="https://shahnameh-bot.io/wp-json/wp/v2/pages/965"><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://shahnameh-bot.io/xmlrpc.php?rsd">
<meta name="generator" content="WordPress 6.6.2">
<meta name="generator" content="WooCommerce 9.3.3">
<link rel="canonical" href="https://shahnameh-bot.io/">
<link rel="shortlink" href="https://shahnameh-bot.io/">
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://shahnameh-bot.io/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fshahnameh-bot.io%2F">
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://shahnameh-bot.io/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fshahnameh-bot.io%2F&format=xml">
<noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>
<meta name="generator" content="Elementor 3.24.6; features: e_font_icon_svg, additional_custom_breakpoints, e_optimized_control_loading, e_element_cache; settings: css_print_method-external, google_font-enabled, font_display-swap">
<style>
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
@media screen and (max-height: 1024px) {
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}
@media screen and (max-height: 640px) {
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}
</style>
<style id="wp-fonts-local" type="text/css">
@font-face{font-family:Inter;font-style:normal;font-weight:300 900;font-display:fallback;src:url('https://shahnameh-bot.io/wp-content/plugins/woocommerce/assets/fonts/Inter-VariableFont_slnt,wght.woff2') format('woff2');font-stretch:normal;}
@font-face{font-family:Cardo;font-style:normal;font-weight:400;font-display:fallback;src:url('https://shahnameh-bot.io/wp-content/plugins/woocommerce/assets/fonts/cardo_normal_400.woff2') format('woff2');}
</style>
<link rel="icon" href="./index_files/Screenshot-2024-09-15-232415.png" sizes="32x32">
<link rel="icon" href="./index_files/Screenshot-2024-09-15-232415.png" sizes="192x192">
<link rel="apple-touch-icon" href="./index_files/Screenshot-2024-09-15-232415.png">
<meta name="msapplication-TileImage" content="https://shahnameh-bot.io/wp-content/uploads/2024/09/Screenshot-2024-09-15-232415.png">
<style id="kirki-inline-styles"></style><style>
@keyframes slide-in-one-tap {
from {
transform: translateY(80px);
}
to {
transform: translateY(0px);
}
}
.trust-hide-gracefully {
opacity: 0;
}
.trust-wallet-one-tap .hidden {
display: none;
}
.trust-wallet-one-tap .semibold {
font-weight: 500;
}
.trust-wallet-one-tap .binance-plex {
font-family: 'Binance';
}
.trust-wallet-one-tap .rounded-full {
border-radius: 50%;
}
.trust-wallet-one-tap .flex {
display: flex;
}
.trust-wallet-one-tap .flex-col {
flex-direction: column;
}
.trust-wallet-one-tap .items-center {
align-items: center;
}
.trust-wallet-one-tap .space-between {
justify-content: space-between;
}
.trust-wallet-one-tap .justify-center {
justify-content: center;
}
.trust-wallet-one-tap .w-full {
width: 100%;
}
.trust-wallet-one-tap .box {
transition: all 0.5s cubic-bezier(0, 0, 0, 1.43);
animation: slide-in-one-tap 0.5s cubic-bezier(0, 0, 0, 1.43);
width: 384px;
border-radius: 15px;
background: #FFF;
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
position: fixed;
right: 30px;
bottom: 30px;
z-index: 1020;
}
.trust-wallet-one-tap .header {
gap: 15px;
border-bottom: 1px solid #E6E6E6;
padding: 10px 18px;
}
.trust-wallet-one-tap .header .left-items {
gap: 15px
}
.trust-wallet-one-tap .header .title {
color: #1E2329;
font-size: 18px;
font-weight: 600;
line-height: 28px;
}
.trust-wallet-one-tap .header .subtitle {
color: #474D57;
font-size: 14px;
line-height: 20px;
}
.trust-wallet-one-tap .header .close {
color: #1E2329;
cursor: pointer;
}
.trust-wallet-one-tap .body {
padding: 9px 18px;
gap: 10px;
}
.trust-wallet-one-tap .body .right-items {
gap: 10px;
width: 100%;
}
.trust-wallet-one-tap .body .right-items .wallet-title {
color: #1E2329;
font-size: 16px;
font-weight: 600;
line-height: 20px;
}
.trust-wallet-one-tap .body .right-items .wallet-subtitle {
color: #474D57;
font-size: 14px;
line-height: 20px;
}
.trust-wallet-one-tap .connect-indicator {
gap: 15px;
padding: 8px 0;
}
.trust-wallet-one-tap .connect-indicator .flow-icon {
color: #474D57;
}
.trust-wallet-one-tap .loading-color {
color: #FFF;
}
.trust-wallet-one-tap .button {
border-radius: 50px;
outline: 2px solid transparent;
outline-offset: 2px;
background-color: rgb(5, 0, 255);
border-color: rgb(229, 231, 235);
cursor: pointer;
text-align: center;
height: 45px;
}
.trust-wallet-one-tap .button .button-text {
color: #FFF;
font-size: 16px;
font-weight: 600;
line-height: 20px;
}
.trust-wallet-one-tap .footer {
margin: 20px 30px;
}
.trust-wallet-one-tap .check-icon {
color: #FFF;
}
@font-face {
font-family: 'Binance';
src: url(chrome-extension://egjidjbpglichdcondbcbdnbeeppgdph/fonts/BinancePlex-Regular.otf) format('opentype');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Binance';
src: url(chrome-extension://egjidjbpglichdcondbcbdnbeeppgdph/fonts/BinancePlex-Medium.otf) format('opentype');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Binance';
src: url(chrome-extension://egjidjbpglichdcondbcbdnbeeppgdph/fonts/BinancePlex-SemiBold.otf) format('opentype');
font-weight: 600;
font-style: normal;
}
</style><script src="chrome-extension://lpilbniiabackdjcionkobglmddfbcjo/inpage.js"></script><script src="./index_files/wp-emoji-release.min.js.download" defer=""></script></head><div class="page-revealer"></div>
<body class="home page-template page-template-elementor_header_footer page page-id-965 wp-custom-logo wp-embed-responsive theme-mykd woocommerce-js ehf-footer ehf-template-mykd ehf-stylesheet-mykd no-sidebar elementor-default elementor-template-full-width elementor-kit-11 elementor-page elementor-page-965 e--ua-blink e--ua-chrome e--ua-webkit" style="" data-elementor-device-mode="desktop">
<script>
jQuery(document).ready(function($) {
/*===========================================
= Click Sound Active =
=============================================*/
$('.search a, .tg-btn-1, .side-toggle-icon, .mobile-nav-toggler, .dropdown-btn').on('click', () => new Audio('https://shahnameh-bot.io/wp-content/themes/mykd/assets/audio/click.wav').play());
$('.search__close, .offCanvas__toggle, .offCanvas__overlay, .close-btn').on('click', () => new Audio('https://shahnameh-bot.io/wp-content/themes/mykd/assets/audio/remove.wav').play());
});
</script>
<!-- Scroll-top -->
<button class="scroll__top scroll-to-target" data-target="html">
<i class="flaticon-right-arrow"></i>
</button>
<!-- Scroll-top-end-->
<!-- header-area -->
<header>
<div id="sticky-default" class="tg-header__area transparent-header mykd-menu-not-showing">
<div class="container custom-container">
<div class="row">
<div class="col-12">
<div class="tgmenu__wrap">
<nav class="tgmenu__nav">
<div class="logo">
<a class="main-logo" href="https://shahnameh-bot.io/">
<img src="./index_files/logoshah.png" style="max-height: 40px" alt="Logo">
</a>
</div>
<div class="tgmenu__navbar-wrap tgmenu__main-menu d-none d-xl-flex">
</div>
</nav>
</div>
</div>
</div>
</div>
</div>
<!-- Mobile Menu -->
<div class="tgmobile__menu">
<nav class="tgmobile__menu-box">
<div class="close-btn"><i class="flaticon-swords-in-cross-arrangement"></i></div>
<div class="nav-logo">
<a class="main-logo" href="https://shahnameh-bot.io/">
<img src="./index_files/logoshah.png" style="max-height: 40px" alt="Logo">
</a>
</div>
<div class="tgmobile__menu-outer">
<!--Here Menu Will Come Automatically Via Javascript / Same Menu as in Header-->
</div>
<div class="social-links">
<ul class="clearfix list-wrap">
<li class="instagram">
<a href="https://www.instagram.com/shahnameh.game"><i class="fab fa-instagram"></i></a>
</li>
<li class="telegram">
<a href="https://t.me/shahnameh_bot?start=ref2585723486"><i class="fab fa-telegram-plane"></i></a>
</li>
</ul>
</div>
</nav>
</div>
<div class="tgmobile__menu-backdrop"></div>
<!-- End Mobile Menu -->
</header>
<!-- header-area-end -->
<!-- main-area -->
<main class="main-area">
<div data-elementor-type="wp-page" data-elementor-id="965" class="elementor elementor-965">
<div class="elementor-element elementor-element-936eda5 e-con-full slider__area e-flex e-con e-parent e-lazyloaded" data-id="936eda5" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="elementor-element elementor-element-e9d7a13 elementor-widget__width-inherit elementor-absolute h-100 elementor-widget elementor-widget-bg-shapes" data-id="e9d7a13" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="bg-shapes.default">
<div class="elementor-widget-container">
<div class="slider__shapes">
<img decoding="async" src="./index_files/slider_shape01.png" width="35" alt="">
<img decoding="async" src="./index_files/slider_shape02.png" width="35" alt="">
<img decoding="async" src="./index_files/slider_shape03.png" width="33" alt="">
<img decoding="async" src="./index_files/slider_shape04.png" width="61" alt="">
</div>
</div>
</div>
<div class="elementor-element elementor-element-4311c99 e-flex e-con-boxed e-con e-child" data-id="4311c99" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-fc0b115 e-con-full e-flex e-con e-child" data-id="fc0b115" data-element_type="container">
<div class="elementor-element elementor-element-6fee237 elementor-widget elementor-widget-tg-content" data-id="6fee237" data-element_type="widget" data-widget_type="tg-content.default">
<div class="elementor-widget-container">
<div class="slider__content tg-content">
<h6 class="sub-title show-shape wow fadeInUp" data-wow-delay=".2s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInUp;">
T2E game </h6>
<h2 class="title wow fadeInUp" data-wow-delay=".5s" style="visibility: visible; animation-delay: 0.5s; animation-name: fadeInUp;">Shah
nameh</h2> <p class="wow fadeInUp" data-wow-delay=".8s" style="visibility: visible; animation-delay: 0.8s; animation-name: fadeInUp;">Story of the Kings</p>
<div class="slider__btn wow fadeInUp" data-wow-delay="1.2s" style="visibility: visible; animation-delay: 1.2s; animation-name: fadeInUp;">
<a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank" rel="nofollow" class="tg-btn-1 genix-btn">
<span>PLAY NOW</span>
<svg preserveAspectRatio="none" viewBox="0 0 197 60" fill="none" xmlns="http://www.w3.org/2000/svg">
<path class="cls-1" fill-rule="evenodd" clip-rule="evenodd" d="M30.976 0.755987L0.75499 30.977L29.717 58.677H165.717L195.938 30.977L165.717 0.755987H30.976Z" stroke="white" stroke-width="1.5"></path>
<path class="cls-2" fill-rule="evenodd" clip-rule="evenodd" d="M166.712 2.01899L196.933 30.98L166.712 58.68L188.118 29.719L166.712 2.01899Z" fill="white"></path>
<path class="cls-2" fill-rule="evenodd" clip-rule="evenodd" d="M30.235 2.01899L0.0139923 30.977L30.235 58.677L8.82899 29.719L30.235 2.01899Z" fill="white"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-293231b e-con-full e-flex e-con e-child" data-id="293231b" data-element_type="container">
<div class="elementor-element elementor-element-db61684 elementor-widget elementor-widget-genix-banner-image" data-id="db61684" data-element_type="widget" data-widget_type="genix-banner-image.default">
<div class="elementor-widget-container">
<div class="slider__img text-center">
<img decoding="async" src="./index_files/shahen-768x768.png" data-magnetic="" alt="" style="transform: translate3d(0px, 0px, 0px);">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-acaa84b e-flex e-con-boxed e-con e-child" data-id="acaa84b" data-element_type="container" data-settings="{"position":"absolute"}">
<div class="e-con-inner">
</div>
</div>
</div>
<div class="elementor-element elementor-element-41cf278 e-flex e-con-boxed e-con e-parent e-lazyloaded" data-id="41cf278" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-71e6cc0 elementor-widget elementor-widget-tg-nft" data-id="71e6cc0" data-element_type="widget" data-widget_type="tg-nft.default">
<div class="elementor-widget-container">
<div class="nft-item__area">
<div class="row justify-content-center">
<div class="col-xxl-4 col-xl-5 col-lg-6 col-md-9">
<div class="nft-item__box">
<div class="nft-item__thumb">
<a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">
<img decoding="async" src="./index_files/photo_5771658236292874800_y.jpg" alt="NFT Image">
</a>
</div>
<div class="nft-item__content">
<h4 class="title">
<a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">Esteghlal FC</a>
</h4>
<div class="nft-item__avatar">
<div class="avatar-img">
<a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">
<img decoding="async" src="./index_files/Screenshot-2024-09-15-232415.png" width="38" alt="NFT Author">
</a>
</div>
<div class="avatar-name">
<h5 class="name">
<a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">Specials</a>
</h5>
<span class="designation">
Creatures </span>
</div>
</div>
<div class="nft-item__bid">
<div class="nft-item__price">
<p>22700 <span class="currency">Rial</span></p>
<a href="https://t.me/shahnameh_bot?start=ref7408716519" class="bid-btn" target="_blank">Buy <i class="fas fa-long-arrow-alt-right"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-4 col-xl-5 col-lg-6 col-md-9">
<div class="nft-item__box">
<div class="nft-item__thumb">
<a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">
<img decoding="async" src="./index_files/14-Damavand.jpg" alt="NFT Image">
</a>
</div>
<div class="nft-item__content">
<h4 class="title">
<a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">Damavand</a>
</h4>
<div class="nft-item__avatar">
<div class="avatar-img">
<a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">
<img decoding="async" src="./index_files/Screenshot-2024-09-15-232415.png" width="38" alt="NFT Author">
</a>
</div>
<div class="avatar-name">
<h5 class="name">
<a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">Mountain</a>
</h5>
<span class="designation">
Place </span>
</div>
</div>
<div class="nft-item__bid">
<div class="nft-item__price">
<p>1.000 <span class="currency">Rial</span></p>
<a href="https://t.me/shahnameh_bot?start=ref7408716519" class="bid-btn" target="_blank">Buy <i class="fas fa-long-arrow-alt-right"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xxl-4 col-xl-5 col-lg-6 col-md-9">
<div class="nft-item__box">
<div class="nft-item__thumb">
<a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">
<img decoding="async" src="./index_files/5-Azhdaha.jpg" alt="NFT Image">
</a>
</div>
<div class="nft-item__content">
<h4 class="title">
<a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">Azhdaha</a>
</h4>
<div class="nft-item__avatar">
<div class="avatar-img">
<a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">
<img decoding="async" src="./index_files/Screenshot-2024-09-15-232415.png" width="38" alt="NFT Author">
</a>
</div>
<div class="avatar-name">
<h5 class="name">
<a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">Animal</a>
</h5>
<span class="designation">
Creatres </span>
</div>
</div>
<div class="nft-item__bid">
<div class="nft-item__price">
<p>1.000 <span class="currency">Rial</span></p>
<a href="https://t.me/shahnameh_bot?start=ref7408716519" class="bid-btn" target="_blank">Buy <i class="fas fa-long-arrow-alt-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-319a82d e-flex e-con-boxed e-con e-parent" data-id="319a82d" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-78e84e0 elementor-widget elementor-widget-tg-heading" data-id="78e84e0" data-element_type="widget" data-widget_type="tg-heading.default">
<div class="elementor-widget-container">
<div class="section__title center">
<span class="sub-title tg__animate-text ready"><em>321...</em></span>
<h2 class="title tg-element-title">Unleash your inner warrior</h2> </div>
</div>
</div>
<div class="elementor-element elementor-element-1edc65f e-flex e-con-boxed e-con e-child" data-id="1edc65f" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-4ca12ed e-flex e-con-boxed e-con e-child" data-id="4ca12ed" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-b7c58df elementor-widget elementor-widget-tg-btn" data-id="b7c58df" data-element_type="widget" data-widget_type="tg-btn.default">
<div class="elementor-widget-container">
<a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank" rel="nofollow" class="tg-btn-2">
Play now <svg preserveAspectRatio="none" viewBox="0 0 167 53" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M166 1H1V52H166V1Z" stroke-width="2"></path>
<path d="M166 22L161 27L166 33" stroke-width="2"></path>
<path d="M166 14L154 28L166 40" stroke-width="2"></path>
<path d="M8 1V21" stroke-width="2"></path>
<path d="M159 1V22" stroke-width="2"></path>
<path d="M159 33V52" stroke-width="2"></path>
<path d="M8 34V52" stroke-width="2"></path>
<path d="M1 22L8 27L1 33" stroke-width="2"></path>
<path d="M1 14L15 28L1 40" stroke-width="2"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-023de15 e-flex e-con-boxed e-con e-child" data-id="023de15" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-959cfbd elementor-widget elementor-widget-tg-btn" data-id="959cfbd" data-element_type="widget" data-widget_type="tg-btn.default">
<div class="elementor-widget-container">
<a href="https://shahnameh-bot.io/wp-content/uploads/2024/10/Shahnameh-T2E-White-Paper-October-2024.pdf" target="_blank" rel="nofollow" class="tg-btn-2">
Whitepaper <svg preserveAspectRatio="none" viewBox="0 0 167 53" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M166 1H1V52H166V1Z" stroke-width="2"></path>
<path d="M166 22L161 27L166 33" stroke-width="2"></path>
<path d="M166 14L154 28L166 40" stroke-width="2"></path>
<path d="M8 1V21" stroke-width="2"></path>
<path d="M159 1V22" stroke-width="2"></path>
<path d="M159 33V52" stroke-width="2"></path>
<path d="M8 34V52" stroke-width="2"></path>
<path d="M1 22L8 27L1 33" stroke-width="2"></path>
<path d="M1 14L15 28L1 40" stroke-width="2"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-3a52bcd elementor-widget elementor-widget-tg-about-tab" data-id="3a52bcd" data-element_type="widget" data-widget_type="tg-about-tab.default">
<div class="elementor-widget-container">
<script>
jQuery(document).ready(function($) {
$('.about__tab-wrap ul button').on('click', () => new Audio('https://shahnameh-bot.io/wp-content/themes/mykd/assets/audio/tab.mp3').play());
});
</script>
<div class="about__area">
<div class="row justify-content-center">
<div class="col-xl-10">
<div class="about__tab-wrap">
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="about-tab-0" data-bs-toggle="tab" data-bs-target="#about-0" type="button" role="tab" aria-controls="about-0" aria-selected="true"><span class="img-shape"></span><img decoding="async" src="./index_files/4-Gordafarid.jpg" width="77" alt="Image"></button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link " id="about-tab-1" data-bs-toggle="tab" data-bs-target="#about-1" type="button" role="tab" aria-controls="about-1" aria-selected="true"><span class="img-shape"></span><img decoding="async" src="./index_files/6-Fariborz.jpg" width="77" alt="Image"></button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link " id="about-tab-2" data-bs-toggle="tab" data-bs-target="#about-2" type="button" role="tab" aria-controls="about-2" aria-selected="true"><span class="img-shape"></span><img decoding="async" src="./index_files/8-Shahbanou-e-Honar.jpg" width="77" alt="Image"></button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link " id="about-tab-3" data-bs-toggle="tab" data-bs-target="#about-3" type="button" role="tab" aria-controls="about-3" aria-selected="true"><span class="img-shape"></span><img decoding="async" src="./index_files/10-Jamshid.jpg" width="77" alt="Image"></button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link " id="about-tab-4" data-bs-toggle="tab" data-bs-target="#about-4" type="button" role="tab" aria-controls="about-4" aria-selected="true"><span class="img-shape"></span><img decoding="async" src="./index_files/5-Manijeh.jpg" width="77" alt="Image"></button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link " id="about-tab-5" data-bs-toggle="tab" data-bs-target="#about-5" type="button" role="tab" aria-controls="about-5" aria-selected="true"><span class="img-shape"></span><img decoding="async" src="./index_files/9-Keikhosrow.jpg" width="77" alt="Image"></button>
</li>
</ul>
</div>
</div>
</div>
<div class="tab-content" id="myTabContent">
<div class="tab-pane show active" id="about-0" role="tabpanel" aria-labelledby="about-tab-0">
<div class="row justify-content-center">
<div class="col-xl-5 col-lg-10">
<div class="about__img">
<img decoding="async" src="./index_files/4-Gordafarid.jpg" alt="Image">
</div>
</div>
<div class="col-xl-7 col-lg-10">
<div class="about__flex-wrap">
<div class="about__content-wrap">
<div class="about__content">
<h4 class="title">Gordafarid</h4>
<span class="rate">Rate 50%</span>
<p>Gordafarid is a significant female warrior in the Shahnameh, celebrated for her bravery, intelligence, and independence. She is one of the few female combatants in Persian epic literature and is known for her strategic prowess in battle.<br><br>
Gordafarid's story emphasizes themes of bravery, intelligence, and strategic thinking, making her one of the most remarkable female characters in the Shahnameh.</p>
</div>
<div class="about__content-list">
<ul class="list-wrap">
<li> A Fearless Warrior</li>
<li> Master of Strategy</li>
<li> Symbol of Female Power</li>
</ul>
</div>
</div>
<div class="about__btn-wrap">
<ul class="list-wrap">
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">Buy this card</a></li>
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">Play Shahnameh</a></li>
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">Invite & earn</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane " id="about-1" role="tabpanel" aria-labelledby="about-tab-1">
<div class="row justify-content-center">
<div class="col-xl-5 col-lg-10">
<div class="about__img">
<img decoding="async" src="./index_files/6-Fariborz.jpg" alt="Image">
</div>
</div>
<div class="col-xl-7 col-lg-10">
<div class="about__flex-wrap">
<div class="about__content-wrap">
<div class="about__content">
<h4 class="title">Fariborz</h4>
<span class="rate">Rate 60%</span>
<p>
Fariborz is a notable character in the Shahnameh, known primarily for his role as the son of Kavous and brother to the tragic hero Siyavash. He is depicted as a loyal and dedicated figure, playing a crucial part in the Persian royal family and the complex political dynamics of Iran.<br><br>Fariborz may not have the legendary status of heroes like Rostam, but his contributions to the defense of Iran and his role within the royal family make him a key figure in the Shahnameh.</p>
</div>
<div class="about__content-list">
<ul class="list-wrap">
<li> Connection to Siyavash</li>
<li> Military Leader</li>
<li> The Royal Lineage</li>
</ul>
</div>
</div>
<div class="about__btn-wrap">
<ul class="list-wrap">
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">buy this card</a></li>
<li><a href="https://t.me/shahnameh_bot?start=ref2585723486" target="_blank">Play shahnameh</a></li>
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">Invite & earn</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane " id="about-2" role="tabpanel" aria-labelledby="about-tab-2">
<div class="row justify-content-center">
<div class="col-xl-5 col-lg-10">
<div class="about__img">
<img decoding="async" src="./index_files/8-Shahbanou-e-Honar.jpg" alt="Image">
</div>
</div>
<div class="col-xl-7 col-lg-10">
<div class="about__flex-wrap">
<div class="about__content-wrap">
<div class="about__content">
<h4 class="title">Shahbanou-e-Honar</h4>
<span class="rate">rate 75%</span>
<p>Shahbanou-e-Honar is a royal embodiment of creativity, culture, and wisdom. She represents the union of artistry and leadership, weaving the values of her heritage into the fabric of art and culture. With a regal touch, she nurtures artistic talent, preserving cultural traditions while also inspiring innovation. Her wisdom guides her kingdom to embrace beauty, creativity, and intellectual growth, making her not only a queen of the people but also a guardian of artistic expression.
Shahbanou-e-Honar symbolizes the harmonious balance between creativity and wisdom, leading her people with a deep understanding of art's power to shape culture and inspire future generations.</p>
</div>
<div class="about__content-list">
<ul class="list-wrap">
<li> Creativity</li>
<li> Culture</li>
<li> Wisdom</li>
</ul>
</div>
</div>
<div class="about__btn-wrap">
<ul class="list-wrap">
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">buy this card</a></li>
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">Play shahnameh</a></li>
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">Invite & earn</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane " id="about-3" role="tabpanel" aria-labelledby="about-tab-3">
<div class="row justify-content-center">
<div class="col-xl-5 col-lg-10">
<div class="about__img">
<img decoding="async" src="./index_files/10-Jamshid.jpg" alt="Image">
</div>
</div>
<div class="col-xl-7 col-lg-10">
<div class="about__flex-wrap">
<div class="about__content-wrap">
<div class="about__content">
<h4 class="title">Jamshid</h4>
<span class="rate">rate 65%</span>
<p>Jamshid is one of the legendary kings of Iran, central to Persian mythology and the Shahnameh. Revered as a ruler of great wisdom, Jamshid is credited with leading his people through a golden age of prosperity, knowledge, and progress. He is known for introducing many civilizational advancements, such as the art of weaving, metalworking, and shipbuilding, along with rituals connected to Zoroastrianism.
In the Shahnameh, Jamshid's reign is marked by divine favor, as he receives the "Far" (divine glory) that allows him to maintain power. However, as his pride grows, he loses this divine support, leading to his eventual downfall. </p>
</div>
<div class="about__content-list">
<ul class="list-wrap">
<li> Civilizational Advancements</li>
<li> Creation of the Nowruz</li>
<li> Divine Glory</li>
</ul>
</div>
</div>
<div class="about__btn-wrap">
<ul class="list-wrap">
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">buy this card</a></li>
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">play shahnameh</a></li>
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">invite & earn</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane " id="about-4" role="tabpanel" aria-labelledby="about-tab-4">
<div class="row justify-content-center">
<div class="col-xl-5 col-lg-10">
<div class="about__img">
<img decoding="async" src="./index_files/5-Manijeh.jpg" alt="Image">
</div>
</div>
<div class="col-xl-7 col-lg-10">
<div class="about__flex-wrap">
<div class="about__content-wrap">
<div class="about__content">
<h4 class="title">Manijeh</h4>
<span class="rate">rate 75%</span>
<p>Manijeh is a central character in the Shahnameh, known for her unwavering love and loyalty. She is the daughter of Afrasiab, the king of Turan, and her story is deeply intertwined with that of Bizhan, an Iranian hero.
<br>
Manijeh’s story is one of profound love, loyalty, and courage in the face of adversity, making her a memorable figure in Persian literature.</p>
</div>
<div class="about__content-list">
<ul class="list-wrap">
<li> Loyalty and Love</li>
<li> Symbol of Courage</li>
<li> Reconciliation and Resolution</li>
</ul>
</div>
</div>
<div class="about__btn-wrap">
<ul class="list-wrap">
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">by this card</a></li>
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">play shahnameh</a></li>
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">invite & earn</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane " id="about-5" role="tabpanel" aria-labelledby="about-tab-5">
<div class="row justify-content-center">
<div class="col-xl-5 col-lg-10">
<div class="about__img">
<img decoding="async" src="./index_files/9-Keikhosrow.jpg" alt="Image">
</div>
</div>
<div class="col-xl-7 col-lg-10">
<div class="about__flex-wrap">
<div class="about__content-wrap">
<div class="about__content">
<h4 class="title">Keikhosrow</h4>
<span class="rate">rate 85%</span>
<p>Keikhosrow is one of the most revered kings in Persian mythology, particularly in the Shahnameh, and is celebrated for his wisdom, justice, and strong spiritual insight. He is the son of Siyavash and grandson of Kay Kavus, and his reign is marked by righteousness, spiritual elevation, and an eventual voluntary abdication of the throne.
<br><br>
Keikhosrow's reign is often seen as the ideal kingship in Persian mythology, embodying the perfect balance between worldly power and spiritual wisdom.</p>
</div>
<div class="about__content-list">
<ul class="list-wrap">
<li> Just and Wise Ruler</li>
<li> Spiritual Journey & Ascension</li>
<li> Victory over Turan</li>
</ul>
</div>
</div>
<div class="about__btn-wrap">
<ul class="list-wrap">
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">buy this card</a></li>
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">play shahnameh</a></li>
<li><a href="https://t.me/shahnameh_bot?start=ref7408716519" target="_blank">invite & earn</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-0c926d7 video-bg tg-jarallax e-flex e-con-boxed e-con e-parent" data-id="0c926d7" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-5feb058 elementor-widget elementor-widget-tg-video-btn" data-id="5feb058" data-element_type="widget" data-widget_type="tg-video-btn.default">
<div class="elementor-widget-container">
<a href="https://www.youtube.com/watch?v=WjlDL7ABju0" class="popup-video d-inline-block">
<i class="flaticon-play"></i>
</a>
</div>
</div>
<div class="elementor-element elementor-element-6325cdb elementor-widget elementor-widget-heading" data-id="6325cdb" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">JOIN THE <span style="color: var(--tg-theme-primary)">COMMUNITY</span></h2> </div>
</div>
<div class="elementor-element elementor-element-23dfbb6 elementor-widget elementor-widget-heading" data-id="23dfbb6" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default">Join our Telegram channel and be updated about our news and offers!</p> </div>
</div>
<div class="elementor-element elementor-element-20b19fa elementor-widget elementor-widget-tg-btn" data-id="20b19fa" data-element_type="widget" data-widget_type="tg-btn.default">
<div class="elementor-widget-container">
<a href="https://t.me/Shahnameh_news" target="_blank" rel="nofollow" class="tg-btn-1 genix-btn">
<span>Join our Telegram channel</span>
<svg preserveAspectRatio="none" viewBox="0 0 197 60" fill="none" xmlns="http://www.w3.org/2000/svg">
<path class="cls-1" fill-rule="evenodd" clip-rule="evenodd" d="M30.976 0.755987L0.75499 30.977L29.717 58.677H165.717L195.938 30.977L165.717 0.755987H30.976Z" stroke="white" stroke-width="1.5"></path>
<path class="cls-2" fill-rule="evenodd" clip-rule="evenodd" d="M166.712 2.01899L196.933 30.98L166.712 58.68L188.118 29.719L166.712 2.01899Z" fill="white"></path>
<path class="cls-2" fill-rule="evenodd" clip-rule="evenodd" d="M30.235 2.01899L0.0139923 30.977L30.235 58.677L8.82899 29.719L30.235 2.01899Z" fill="white"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-d0de1f6 e-flex e-con-boxed e-con e-parent" data-id="d0de1f6" data-element_type="container" data-settings="{"background_background":"classic"}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-4138d42 e-con-full e-flex e-con e-child" data-id="4138d42" data-element_type="container">
<div class="elementor-element elementor-element-a021374 elementor-widget elementor-widget-heading" data-id="a021374" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">a look into our roadmap</h2> </div>
</div>
<div class="elementor-element elementor-element-d676b92 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="d676b92" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default"><a href="https://t.me/shahnameh_bot?start=ref7408716519">Shahnameh game were released on October 2024 <br>
The first Airdrop will be at: 02.02.2025</a></p> </div>
</div>
<div class="elementor-element elementor-element-5df7b0d elementor-widget elementor-widget-genix-image" data-id="5df7b0d" data-element_type="widget" data-widget_type="genix-image.default">
<div class="elementor-widget-container">
<img decoding="async" src="./index_files/mockuper.png" class="tg-parallax" data-scale="1.5" data-orientation="down" alt="" style="will-change: transform; transform: translate3d(0px, -80px, 0px); transition: transform 1s cubic-bezier(0, 0, 0, 1);">
</div>
</div>
</div>
<div class="elementor-element elementor-element-902f7c0 e-con-full e-flex e-con e-child" data-id="902f7c0" data-element_type="container">
<div class="elementor-element elementor-element-42485c4 roadMap__steps-wrap e-flex e-con-boxed e-con e-child" data-id="42485c4" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-7f0f0fc elementor-widget elementor-widget-roadmap" data-id="7f0f0fc" data-element_type="widget" data-widget_type="roadmap.default">
<div class="elementor-widget-container">