-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathindex.html
More file actions
1923 lines (1841 loc) · 126 KB
/
index.html
File metadata and controls
1923 lines (1841 loc) · 126 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
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="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
<title>Interactive Periodic Table & Chemical Equation Balancer | Free Chemistry Tool – Zperiod</title>
<!-- SEO Meta Tags -->
<meta name="description"
content="Zperiod is a free interactive chemistry platform with an animated periodic table, 3D atom models, a chemical equation balancer, empirical formula calculator, and exam-ready tools for Grade 9-12 students.">
<meta name="keywords"
content="periodic table, interactive periodic table, chemistry elements, chemical equation balancer, balance chemical equations, empirical formula calculator, molar mass calculator, 3D atom model, chemistry learning tool, free chemistry tool, ion table, chemistry education">
<meta name="author" content="Philip">
<meta name="robots" content="index, follow, max-image-preview:large">
<link rel="canonical" href="https://zperiod.app/">
<!-- Open Graph (Facebook, LinkedIn, Discord, Reddit) -->
<meta property="og:title" content="Interactive Periodic Table & Chemical Equation Balancer | Zperiod">
<meta property="og:description"
content="Free interactive chemistry platform with 3D atom models, a chemical equation balancer, empirical formula calculator, and 118 elements at your fingertips.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://zperiod.app/">
<meta property="og:image" content="https://zperiod.app/images/preview-modal.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Zperiod interactive periodic table showing a 3D atom model">
<meta property="og:site_name" content="Zperiod">
<meta property="og:locale" content="en_US">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Interactive Periodic Table & Chemical Equation Balancer | Zperiod">
<meta name="twitter:description"
content="Free interactive chemistry platform with 3D atom models, equation balancer, and 118 elements.">
<meta name="twitter:image" content="https://zperiod.app/images/preview-modal.png">
<meta name="twitter:image:alt" content="Zperiod interactive periodic table showing a 3D atom model">
<!-- Structured Data (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Zperiod",
"url": "https://zperiod.app/",
"description": "Free interactive periodic table with 3D atom models, chemical equation balancer, empirical formula calculator, and chemistry learning tools for Grade 9-12 students.",
"applicationCategory": "EducationalApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"screenshot": "https://zperiod.app/images/preview-modal.png",
"featureList": [
"Interactive Periodic Table with 118 elements",
"3D Atom Models with electron shell visualization",
"Chemical Equation Balancer with scale animation",
"Empirical & Molecular Formula Calculator",
"Molar Mass Calculator",
"Ion Reference Table",
"Worksheet Generator with PDF export"
],
"educationalLevel": "Grade 9-12",
"about": {
"@type": "Thing",
"name": "Chemistry"
}
}
</script>
<link rel="icon" type="image/svg+xml" href="logo.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/base.css?v=2.1.2">
<link rel="stylesheet" href="css/grid.css?v=2.1.2">
<link rel="stylesheet" href="css/modal.css?v=2.1.2">
<link rel="stylesheet" href="css/tools.css?v=2.1.2">
<link rel="stylesheet" href="css/ions.css?v=2.1.2">
<link rel="stylesheet" href="css/worksheet-styles.css?v=2.1.2">
<link rel="stylesheet" href="css/ion-animations.css?v=2.1.2">
<link rel="stylesheet" href="css/mobile-landing.css?v=2.1.8">
<link rel="stylesheet" href="css/tool-modals/shared.css?v=2.1.2">
<script type="text/javascript">
(function (c, l, a, r, i, t, y) {
c[a] = c[a] || function () { (c[a].q = c[a].q || []).push(arguments) };
t = l.createElement(r); t.async = 1; t.src = "https://www.clarity.ms/tag/" + i;
y = l.getElementsByTagName(r)[0]; y.parentNode.insertBefore(t, y);
})(window, document, "clarity", "script", "ve9finzs2n");
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-S4S9V7C7VQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-S4S9V7C7VQ');
</script>
</head>
<body>
<!-- Rotate Device Overlay (iPad portrait) -->
<div id="rotate-device-overlay" class="rotate-device-overlay">
<div class="rotate-device-content">
<div class="rotate-device-icon">
<svg width="64" height="64" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
<!-- Phone outline (portrait) -->
<rect x="6" y="3" width="12" height="18" rx="2" ry="2"/>
<line x1="12" y1="18" x2="12" y2="18.01"/>
</svg>
<!-- Rotation arrow -->
<svg class="rotate-arrow-svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="1 4 1 10 7 10"/>
<path d="M3.51 15a9 9 0 1 0 2.13-9.36L1 10"/>
</svg>
</div>
<h2 class="rotate-device-title" data-i18n="mobile.rotateTitle">Rotate Your Device</h2>
<p class="rotate-device-text" data-i18n="mobile.rotateText">Zperiod works best in landscape mode on tablets.</p>
</div>
</div>
<!-- Desktop Only Overlay / Mobile Landing Page -->
<div id="desktop-only-overlay" class="desktop-only-overlay">
<!-- Fallback for desktop (hidden by CSS) -->
<div class="desktop-only-content">
<h2 class="desktop-only-title" data-i18n="mobile.desktopOnlyTitle">Desktop Experience Only</h2>
<p class="desktop-only-text" data-i18n="mobile.desktopOnlyText">Please access Zperiod on a desktop browser.</p>
</div>
<!-- Mobile Landing Page -->
<div class="mobile-landing">
<!-- Hero Section -->
<section class="ml-hero">
<div class="ml-hero-bg"></div>
<div class="ml-bg-stream" id="ml-bg-stream" aria-hidden="true"></div>
<div class="ml-hero-content">
<img src="logo.svg" alt="Zperiod – Interactive Periodic Table" class="ml-logo">
<h1 class="ml-title">Zperiod</h1>
<p class="ml-subtitle">Master Chemistry.<br>Visually & Instantly.</p>
<div class="ml-badge-row">
<span class="ml-badge">118 Elements</span>
<span class="ml-badge">3D Models</span>
<span class="ml-badge">Free</span>
</div>
</div>
<div class="ml-scroll-indicator">
<div class="ml-scroll-pill">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
<polyline points="6 9 12 15 18 9"></polyline>
</svg>
<span>Scroll down to explore</span>
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
<polyline points="6 9 12 15 18 9"></polyline>
</svg>
</div>
</div>
</section>
<!-- Section: Features -->
<div class="ml-section-header ml-reveal">
<span class="ml-section-label">Features</span>
<h2 class="ml-section-title">Everything you need<br>for Chemistry.</h2>
</div>
<section class="ml-features">
<!-- Feature 1: Periodic Table -->
<div class="ml-feature ml-reveal">
<div class="ml-feature-tag">Interactive</div>
<h3 class="ml-feature-title">Periodic Table</h3>
<p class="ml-feature-desc">All 118 elements with category color-coding, phase data at STP, and
instant access to comprehensive chemical information.</p>
<div class="ml-img-frame ml-img-frame-table">
<picture>
<source srcset="images/preview-table.avif" type="image/avif">
<img src="images/preview-table.png"
alt="Interactive periodic table with color-coded element categories and phase data"
loading="lazy" decoding="async" width="2940" height="1846">
</picture>
</div>
</div>
<!-- Feature 2: Atom Models -->
<div class="ml-feature ml-reveal">
<div class="ml-feature-tag">3D Visualization</div>
<h3 class="ml-feature-title">Atom Models</h3>
<p class="ml-feature-desc">Interactive 3D atom structures with electron shells, swipeable info
cards, and detailed properties for every element.</p>
<div class="ml-img-frame ml-img-frame-modal">
<picture>
<source srcset="images/mobile-atom-2.png?v=1" type="image/png">
<img src="images/mobile-atom-2.png?v=1"
alt="3D atom model showing electron shells and element properties" loading="lazy"
decoding="async" width="2940" height="1846">
</picture>
</div>
</div>
<!-- Feature 3: Chemistry Tools -->
<div class="ml-feature ml-reveal">
<div class="ml-feature-tag">Chemistry Tools</div>
<h3 class="ml-feature-title">Tools Workspace</h3>
<p class="ml-feature-desc">A cleaner tools workspace with faster access to balancing, molar mass,
solubility, and virtual lab workflows.</p>
<div class="ml-img-frame ml-img-frame-tools">
<picture>
<source srcset="images/preview-tools.avif" type="image/avif">
<img src="images/preview-tools.png"
alt="Updated chemistry tools workspace on mobile" loading="lazy"
decoding="async" width="2940" height="1846">
</picture>
</div>
</div>
<!-- Feature 4: Worksheet -->
<div class="ml-feature ml-reveal">
<div class="ml-feature-tag">Education</div>
<h3 class="ml-feature-title">Worksheet Generator</h3>
<p class="ml-feature-desc">Generate print-ready balanced equation worksheets with adjustable
difficulty, multiple reaction types, and PDF export.</p>
<div class="ml-img-frame ml-img-frame-worksheet">
<picture>
<source srcset="images/preview-worksheet.avif" type="image/avif">
<img src="images/preview-worksheet.png"
alt="Chemistry worksheet generator with balanced equation exercises" loading="lazy"
decoding="async" width="2940" height="1846">
</picture>
</div>
</div>
</section>
<!-- Stats Strip -->
<section class="ml-stats ml-reveal">
<div class="ml-stat">
<span class="ml-stat-number">118</span>
<span class="ml-stat-label">Elements</span>
</div>
<div class="ml-stat">
<span class="ml-stat-number">50+</span>
<span class="ml-stat-label">Ions</span>
</div>
<div class="ml-stat">
<span class="ml-stat-number">4</span>
<span class="ml-stat-label">Tools</span>
</div>
<div class="ml-stat">
<span class="ml-stat-number">3D</span>
<span class="ml-stat-label">Atoms</span>
</div>
</section>
<!-- CTA -->
<section class="ml-cta ml-reveal">
<div class="ml-cta-card">
<svg class="ml-cta-icon" width="48" height="48" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
<rect x="2" y="3" width="20" height="14" rx="2" ry="2"></rect>
<line x1="8" y1="21" x2="16" y2="21"></line>
<line x1="12" y1="17" x2="12" y2="21"></line>
</svg>
<h2 class="ml-cta-title">Best on Desktop</h2>
<p class="ml-cta-text">Zperiod is a professional-grade educational tool. For the full interactive 3D
experience, visit on a desktop browser.</p>
<a href="https://zperiod.app" class="ml-cta-btn">Visit zperiod.app</a>
</div>
</section>
<!-- Footer -->
<footer class="ml-footer">
<img src="logo.svg" alt="Zperiod logo" class="ml-footer-logo">
<p>© 2026 Philip. All rights reserved.</p>
</footer>
</div>
</div>
<!-- Welcome Intro Modal -->
<div id="welcome-modal" class="modal-overlay">
<div class="modal-content welcome-redesign">
<div class="modal-top-buttons">
<button class="modal-close" id="welcome-close-btn" aria-label="Close welcome dialog" data-i18n-aria-label="aria.closeWelcomeDialog">×</button>
</div>
<div class="about-container">
<!-- Left: Product Preview - Apple Style Minimal -->
<div class="about-left">
<div class="about-content-wrapper">
<span class="welcome-eyebrow" data-i18n="welcome.eyebrow">Introducing</span>
<h1 class="welcome-title">Zperiod</h1>
<h2 class="welcome-subtitle"><span data-i18n="welcome.subtitleLine1">Master Chemistry.</span><br><span data-i18n="welcome.subtitleLine2">Visually & Instantly.</span></h2>
<p class="welcome-description" data-i18n="welcome.description">
The interactive periodic table designed for Grade 9-12 students.
Stop memorizing — start visualizing.
</p>
<div class="welcome-features">
<span class="feature-pill" data-i18n="welcome.pill1">Interactive Atoms</span>
<span class="feature-pill" data-i18n="welcome.pill2">Ion Engine</span>
<span class="feature-pill" data-i18n="welcome.pill3">Exam Ready</span>
</div>
<button id="welcome-start-btn" class="welcome-cta" data-i18n="welcome.cta">
Get Started
</button>
<div
style="display: flex; align-items: center; justify-content: space-between; margin-top: 10px;">
<p class="welcome-footer" style="margin: 0;" data-i18n="welcome.footer">v2.0 · Precision Lab Edition</p>
<button id="show-changelog-btn" title="View Update History" data-i18n-title="welcome.viewUpdateHistory"
style="width: 28px; height: 28px; border-radius: 50%; border: none; background: rgba(99,102,241,0.1); color: #6366f1; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s;">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 20h9"></path>
<path d="M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- Right: Author Profile -->
<div class="about-right">
<div class="author-card">
<div class="logos-connector">
<div class="logo-circle z-logo">
<img src="logo.svg" alt="Zperiod">
</div>
<div class="connector-line"></div>
<div class="logo-circle school-logo">
<img src="image.png" alt="Aurora High School">
</div>
</div>
<div class="author-details">
<h2>Philip Zhao</h2>
<span class="author-role" data-i18n="welcome.authorRole">Creator & Full Stack Developer</span>
<div class="author-meta">
<div class="meta-row">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2">
<path d="M22 10v6M2 10l10-5 10 5-10 5z" />
<path d="M6 12v5c3 3 9 3 12 0v-5" />
</svg>
<span data-i18n="welcome.schoolInfo">Aurora High School · Grade 11 (2027)</span>
</div>
<div class="meta-row">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2">
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path>
<circle cx="12" cy="10" r="3"></circle>
</svg>
<span data-i18n="welcome.location">Toronto, Canada</span>
</div>
<div class="meta-divider"></div>
<div class="email-group">
<button class="email-row" onclick="copyEmail('zhilips123123@gmail.com', this)">
<div class="email-icon">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="4"></circle>
<path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"></path>
</svg>
</div>
<span class="email-text">zhilips123123@gmail.com</span>
<div class="copy-feedback">
<svg class="icon-copy" width="12" height="12" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2">
<rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect>
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1">
</path>
</svg>
<svg class="icon-check" width="12" height="12" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2"
style="display:none;">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
</div>
</button>
<button class="email-row" onclick="copyEmail('440016162@gapps.yrdsb.ca', this)">
<div class="email-icon">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2">
<path
d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z">
</path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg>
</div>
<span class="email-text">440016162@gapps.yrdsb.ca</span>
<div class="copy-feedback">
<svg class="icon-copy" width="12" height="12" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2">
<rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect>
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1">
</path>
</svg>
<svg class="icon-check" width="12" height="12" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2"
style="display:none;">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
</div>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ===== Changelog Modal (shown once per version for ALL users) ===== -->
<div id="changelog-modal" class="modal-overlay">
<div class="modal-content welcome-redesign">
<div class="modal-top-buttons">
<button class="modal-close" id="changelog-close-btn" aria-label="Close changelog" data-i18n-aria-label="aria.closeChangelog">×</button>
</div>
<div class="about-container">
<!-- Left: Header & CTA (reuses welcome layout) -->
<div class="about-left" style="flex: 1;">
<div class="about-content-wrapper" style="max-width: 320px;">
<span class="welcome-eyebrow" data-i18n="changelog.eyebrow">What's New</span>
<h1 class="welcome-title">v2.0</h1>
<h2 class="welcome-subtitle"><span data-i18n="changelog.subtitleLine1">Version 2.0.</span><br><span data-i18n="changelog.subtitleLine2">Guided Chemistry Experience.</span></h2>
<p class="welcome-description" data-i18n="changelog.description">
Guided tutorials are now available across every chemistry tool and every element detail page, with a new virtual lab, removed legacy tool clutter, and expanded language coverage.
</p>
<div class="welcome-features">
<span class="feature-pill" data-i18n="changelog.pill1">Virtual Lab</span>
<span class="feature-pill" data-i18n="changelog.pill2">Guided Tours</span>
<span class="feature-pill" data-i18n="changelog.pill3">Multilingual</span>
</div>
<button id="changelog-dismiss-btn" class="welcome-cta" data-i18n="changelog.cta">
Got it — Let's go!
</button>
<p class="welcome-footer" data-i18n="changelog.footerDate">April 1, 2026</p>
</div>
</div>
<!-- Right: Changelog Cards -->
<div class="about-right"
style="flex: 1.5; background: #fff; padding: 40px 55px; border-radius: 0 32px 32px 0; display: flex; align-items: center;">
<div class="changelog-list" style="display: flex; flex-direction: column; gap: 14px; width: 100%;">
<div class="changelog-card">
<span class="changelog-badge badge-new" data-i18n="changelog.badgeNew">NEW</span>
<div class="changelog-card-content">
<strong data-i18n="changelog.card1Title">Interactive Virtual Lab</strong>
<p data-i18n="changelog.card1Body">A brand-new virtual chemistry lab has been added for playful, hands-on exploration with real-time physics interactions.
</p>
</div>
</div>
<div class="changelog-card">
<span class="changelog-badge badge-ui" data-i18n="changelog.badgeUi">UI</span>
<div class="changelog-card-content">
<strong data-i18n="changelog.card2Title">Guided Interactive Tutorials</strong>
<p data-i18n="changelog.card2Body">Every chemistry tool and every element detail page now includes step-by-step guided tutorials.</p>
</div>
</div>
<div class="changelog-card">
<span class="changelog-badge badge-perf" data-i18n="changelog.badgePerf">LANG</span>
<div class="changelog-card-content">
<strong data-i18n="changelog.card3Title">Expanded Multilingual Support</strong>
<p data-i18n="changelog.card3Body">Core pages, tools, and key chemistry content have been translated more completely across supported languages.</p>
</div>
</div>
<div class="changelog-card">
<span class="changelog-badge badge-data" data-i18n="changelog.badgeData">DATA</span>
<div class="changelog-card-content">
<strong data-i18n="changelog.card4Title">Tool Workspace Cleanup</strong>
<p data-i18n="changelog.card4Body">A redundant legacy tool has been removed to keep the tools workspace cleaner and easier to use.</p>
</div>
</div>
<div class="changelog-card">
<span class="changelog-badge badge-ui" data-i18n="changelog.badgeUi">UI</span>
<div class="changelog-card-content">
<strong data-i18n="changelog.card5Title">Refresh & Stability</strong>
<p data-i18n="changelog.card5Body">Release-based forced reload is enabled so all users receive the newest features, translations, and fixes immediately.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Visually hidden H1 for desktop app (SEO) -->
<h1 class="sr-only">Zperiod – Interactive Periodic Table & Chemical Equation Balancer</h1>
<!-- Global Fixed Navigation -->
<nav class="global-nav" id="global-nav">
<!-- 左侧:品牌区 -->
<div class="nav-brand-section">
<a href="#" class="nav-logo-link" data-page="table">
<img src="logo.svg" alt="Zperiod home" class="nav-logo">
</a>
<a href="#" class="nav-brand" data-page="table">Zperiod</a>
</div>
<!-- 中间:版本切换 + 导航链接 -->
<div class="nav-center-group">
<div class="version-dropdown" id="version-dropdown">
<button class="version-dropdown-toggle" id="version-dropdown-toggle">
<span class="version-current-label" data-i18n="nav.standard">Standard</span>
<svg class="version-chevron" width="10" height="10" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round">
<polyline points="6 9 12 15 18 9"></polyline>
</svg>
</button>
<div class="version-dropdown-menu" id="version-dropdown-menu">
<button class="version-dropdown-option" id="version-dropdown-option" data-i18n="nav.advanced">Advanced</button>
</div>
</div>
<div class="global-nav-pill">
<button class="nav-pill-btn active" data-page="table" data-i18n="nav.table">Table</button>
<button class="nav-pill-btn" data-page="ions" data-i18n="nav.ions">Ions</button>
<button class="nav-pill-btn" data-page="tools" data-i18n="nav.tools">Tools</button>
<button class="nav-pill-btn" data-page="worksheet" data-i18n="nav.worksheet">Worksheet</button>
<button class="nav-pill-btn" data-page="settings" data-i18n="nav.settings">Settings</button>
</div>
</div>
<!-- 右侧:语言切换 + 元素搜索 -->
<div class="nav-right-section">
<div class="element-search-wrapper" id="element-search-wrapper">
<svg class="element-search-icon" width="14" height="14" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
<circle cx="11" cy="11" r="8"></circle>
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
</svg>
<input type="text" class="element-search-input" id="element-search-input"
placeholder="Search..." autocomplete="off" spellcheck="false" data-i18n-placeholder="search.placeholder" />
<div class="element-search-results" id="element-search-results"></div>
</div>
</div>
</nav>
<div class="container" id="main-container">
<div class="periodic-table" id="periodic-table">
</div>
</div>
<!-- Ions Table Page -->
<div id="ions-page" class="blank-page ions-table-page">
<div class="container ions-container">
<div class="periodic-table ions-table" id="ions-table">
<!-- Ion cards will be generated by JavaScript -->
</div>
</div>
</div>
<!-- Chemistry Tools Page (Blank Page 1) -->
<div id="blank-page-1" class="blank-page chemistry-tools-page">
<div class="blank-page-content" id="page-tools">
<div class="chem-tools-container">
<h1 class="chem-tools-title" data-i18n="tools.pageTitle">Chemistry Tools</h1>
<p class="chem-tools-subtitle" data-i18n="tools.pageSubtitle">Grade 9-12 Chemistry Calculators</p>
<div class="chem-tools-grid">
<!-- Equation Balancer (Position 1) -->
<div class="chem-tool-card" data-tool="balancer">
<div class="chem-tool-header">
<div class="chem-tool-icon-box balancer-icon">
<span class="chem-tool-number">1</span>
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M12 3v18" />
<path d="M3 9l9-4 9 4" />
<path d="M3 9v4c0 2 2 4 4 4s4-2 4-4" />
<path d="M21 9v4c0 2-2 4-4 4s-4-2-4-4" />
<line x1="8" y1="21" x2="16" y2="21" />
</svg>
</div>
<span class="chem-tool-arrow">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</span>
</div>
<div class="chem-tool-info">
<h3 class="chem-tool-name" data-i18n="tools.balancerName">Equation Balancer</h3>
<p class="chem-tool-desc" data-i18n="tools.balancerDesc">Balance complex chemical equations automatically with visual
stoichiometry feedback.</p>
</div>
</div>
<!-- Molar Mass Calculator (Position 2) -->
<div class="chem-tool-card" data-tool="molar-mass">
<div class="chem-tool-header">
<div class="chem-tool-icon-box molar-icon">
<span class="chem-tool-number">2</span>
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<rect x="4" y="4" width="16" height="16" rx="3" ry="3" />
<line x1="8" y1="9" x2="16" y2="9" />
<line x1="8" y1="13" x2="10" y2="13" />
<line x1="14" y1="13" x2="16" y2="13" />
<line x1="8" y1="17" x2="10" y2="17" />
<line x1="14" y1="17" x2="16" y2="17" />
</svg>
</div>
<span class="chem-tool-arrow">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</span>
</div>
<div class="chem-tool-info">
<h3 class="chem-tool-name" data-i18n="tools.molarMassName">Molar Mass</h3>
<p class="chem-tool-desc" data-i18n="tools.molarMassDesc">Instantly compute molecular weights with a detailed
element-by-element mass breakdown.</p>
</div>
</div>
<!-- Solubility Table (Position 3) -->
<div class="chem-tool-card" data-tool="solubility">
<div class="chem-tool-header">
<div class="chem-tool-icon-box solubility-icon"
style="background:linear-gradient(135deg, #d1f4e0 0%, #a7f3d0 100%);">
<span class="chem-tool-number">3</span>
<svg viewBox="0 0 24 24" fill="none" stroke="#059669" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M4.5 3h15" />
<path d="M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3" />
<path d="M6 14h12" />
<circle cx="10" cy="18" r="1.5" fill="#059669" stroke="none" />
<circle cx="14" cy="16" r="1.5" fill="#059669" stroke="none" />
</svg>
</div>
<span class="chem-tool-arrow">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</span>
</div>
<div class="chem-tool-info">
<h3 class="chem-tool-name" data-i18n="tools.solubilityName">Solubility Table</h3>
<p class="chem-tool-desc" data-i18n="tools.solubilityDesc">Quickly reference interactive charts and rules for ionic compound
solubilities.</p>
</div>
</div>
<!-- Virtual Lab (Position 4) -->
<div class="chem-tool-card" data-tool="virtual-lab">
<div class="chem-tool-header">
<div class="chem-tool-icon-box"
style="background:linear-gradient(135deg, #dbeafe 0%, #e9d5ff 52%, #dcfce7 100%); color:#312e81;">
<span class="chem-tool-number">4</span>
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M10 2v5l-4.5 7.5A4 4 0 0 0 8.9 21h6.2a4 4 0 0 0 3.4-6.5L14 7V2" />
<path d="M8 11h8" />
<path d="M9 15c1.2.4 2.5.6 3.8.6 1 0 2-.1 2.9-.4" />
</svg>
</div>
<span class="chem-tool-arrow">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</span>
</div>
<div class="chem-tool-info">
<h3 class="chem-tool-name" data-i18n="tools.virtualLabName">Virtual Lab</h3>
<p class="chem-tool-desc" data-i18n="tools.virtualLabDesc">Tilt a beaker and watch pseudo-liquid particles move and spill naturally.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Page 2: Worksheet Generator -->
<div id="blank-page-2" class="blank-page">
<div class="worksheet-generator-page">
<div class="worksheet-container">
<!-- Left Panel: Controls -->
<div class="worksheet-controls">
<div class="controls-header">
<h2 data-i18n="worksheet.title">Worksheet Generator</h2>
<p data-i18n="worksheet.subtitle">Create balanced equation worksheets for your class</p>
</div>
<!-- Number of Questions -->
<div class="control-group">
<label data-i18n="worksheet.numQuestions">Number of Questions</label>
<div class="button-group" id="question-count-group">
<button class="option-btn" data-value="5">5</button>
<button class="option-btn active" data-value="10">10</button>
<button class="option-btn" data-value="20">20</button>
<button class="option-btn" data-value="30">30</button>
<button class="option-btn" data-value="50">50</button>
</div>
</div>
<!-- Reaction Types -->
<div class="control-group">
<label data-i18n="worksheet.reactionTypes">Reaction Types</label>
<div class="checkbox-group" id="reaction-types-group">
<label class="checkbox-option">
<input type="checkbox" value="synthesis" checked>
<div class="checkbox-text-wrapper">
<span data-i18n="worksheet.synthesis">Synthesis</span>
<span class="checkbox-subtitle">A + B → AB</span>
</div>
</label>
<label class="checkbox-option">
<input type="checkbox" value="decomposition" checked>
<div class="checkbox-text-wrapper">
<span data-i18n="worksheet.decomposition">Decomposition</span>
<span class="checkbox-subtitle">AB → A + B</span>
</div>
</label>
<label class="checkbox-option">
<input type="checkbox" value="single-replacement">
<div class="checkbox-text-wrapper">
<span data-i18n="worksheet.singleReplacement">Single Replacement</span>
<span class="checkbox-subtitle">A + BC → AC + B</span>
</div>
</label>
<label class="checkbox-option">
<input type="checkbox" value="double-replacement">
<div class="checkbox-text-wrapper">
<span data-i18n="worksheet.doubleReplacement">Double Replacement</span>
<span class="checkbox-subtitle">AB + CD → AD + CB</span>
</div>
</label>
<label class="checkbox-option">
<input type="checkbox" value="combustion">
<div class="checkbox-text-wrapper">
<span data-i18n="worksheet.combustion">Combustion</span>
<span class="checkbox-subtitle">Hydrocarbon + O₂</span>
</div>
</label>
</div>
</div>
<!-- Difficulty -->
<div class="control-group">
<label data-i18n="worksheet.difficulty">Difficulty</label>
<div class="button-group" id="difficulty-group">
<button class="option-btn" data-value="easy" data-i18n="worksheet.easy">Easy</button>
<button class="option-btn active" data-value="medium" data-i18n="worksheet.medium">Medium</button>
<button class="option-btn" data-value="hard" data-i18n="worksheet.hard">Hard</button>
</div>
</div>
<!-- Generate Button -->
<button class="generate-btn" id="generate-worksheet-btn">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2">
<path
d="M12 3v1m0 16v1m-9-9h1m16 0h1m-2.64-6.36l-.7.7m-12.02 12.02l-.7.7m0-12.72l.7.7m12.02 12.02l.7.7" />
<circle cx="12" cy="12" r="4" />
</svg>
<span data-i18n="worksheet.generate">Generate Worksheet</span>
</button>
<div class="trust-text" data-i18n="worksheet.trustText">Questions are generated from real, commonly taught reactions.</div>
</div>
<!-- Right Panel: Preview -->
<div class="worksheet-preview">
<div class="preview-header">
<div class="preview-tabs">
<button class="preview-tab active" data-mode="student" data-i18n="worksheet.print">Print</button>
<button class="preview-tab" data-mode="practice" data-i18n="worksheet.practice">Practice</button>
<button class="preview-tab" data-mode="answer" data-i18n="worksheet.answerKey">Answer Key</button>
</div>
<div class="export-buttons">
<button class="export-btn" id="export-pdf-btn" disabled>
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<line x1="16" y1="13" x2="8" y2="13"></line>
<line x1="16" y1="17" x2="8" y2="17"></line>
<polyline points="10 9 9 9 8 9"></polyline>
</svg>
<span data-i18n="worksheet.print">Print</span>
</button>
<button class="export-btn" id="fill-date-btn" disabled>
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2">
<rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect>
<line x1="16" y1="2" x2="16" y2="6"></line>
<line x1="8" y1="2" x2="8" y2="6"></line>
<line x1="3" y1="10" x2="21" y2="10"></line>
</svg>
<span data-i18n="worksheet.today">Today</span>
</button>
</div>
</div>
<div class="preview-content" id="worksheet-preview-content">
<div class="preview-placeholder">
<svg width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1.5">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<line x1="16" y1="13" x2="8" y2="13"></line>
<line x1="16" y1="17" x2="8" y2="17"></line>
<line x1="10" y1="9" x2="8" y2="9"></line>
</svg>
<p data-i18n="worksheet.placeholder">Click 'Generate Worksheet' to create practice problems</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Page 5: Settings -->
<div id="settings-page" class="blank-page">
<div class="settings-viewport" id="page-settings">
<!-- Left column: quick links -->
<aside class="sv-sidebar">
<div class="sv-links-group">
<a href="https://github.com/Zhilips/Zperiod" target="_blank" rel="noopener noreferrer" class="sv-link-card sv-link-card-github">
<div class="sv-link-card-icon">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
<path
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" />
</svg>
</div>
<div class="sv-link-card-text">
<span class="sv-link-card-title" data-i18n="settings.github">GitHub</span>
<span class="sv-link-card-desc" data-i18n="settings.githubDesc">给我个星星</span>
</div>
<svg class="sv-link-arrow" width="14" height="14" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2.5">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</a>
<a href="https://buymeacoffee.com/zperiod" target="_blank" rel="noopener noreferrer" class="sv-link-card sv-link-card-coffee">
<div class="sv-link-card-icon">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M18 8h1a4 4 0 0 1 0 8h-1"></path>
<path d="M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z"></path>
<line x1="6" y1="1" x2="6" y2="4"></line>
<line x1="10" y1="1" x2="10" y2="4"></line>
<line x1="14" y1="1" x2="14" y2="4"></line>
</svg>
</div>
<div class="sv-link-card-text">
<span class="sv-link-card-title" data-i18n="settings.coffee">Buy Me a Coffee</span>
<span class="sv-link-card-desc" data-i18n="settings.coffeeDesc">Support development</span>
</div>
<svg class="sv-link-arrow" width="14" height="14" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2.5">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</a>
<button class="sv-link-card sv-link-card-about" id="settings-open-welcome">
<div class="sv-link-card-icon">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="10"></circle>
<line x1="12" y1="16" x2="12" y2="12"></line>
<line x1="12" y1="8" x2="12.01" y2="8"></line>
</svg>
</div>
<div class="sv-link-card-text">
<span class="sv-link-card-title" data-i18n="settings.helpAbout">Help / About</span>
<span class="sv-link-card-desc" data-i18n="settings.helpAboutDesc">Introduction & how to use</span>
</div>
<svg class="sv-link-arrow" width="14" height="14" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2.5">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</button>
</div>
<!-- Electron animation control -->
<section class="sv-card sv-card-anim">
<div class="sv-card-icon-row">
<div class="sv-icon-circle">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2">
<circle cx="12" cy="12" r="10"></circle>
<polygon points="10 8 16 12 10 16 10 8"></polygon>
</svg>
</div>
<h3 data-i18n="settings.electronAnimation">Electron Animation</h3>
</div>
<div class="sv-anim-controls">
<div class="sv-anim-row">
<span class="sv-anim-label" data-i18n="settings.playback">Playback</span>
<button class="sv-play-btn" id="anim-play-toggle" title="Pause / Play">
<svg class="icon-pause" width="16" height="16" viewBox="0 0 24 24" fill="currentColor">
<rect x="6" y="4" width="4" height="16"></rect>
<rect x="14" y="4" width="4" height="16"></rect>
</svg>
<svg class="icon-play" width="16" height="16" viewBox="0 0 24 24" fill="currentColor">
<polygon points="5 3 19 12 5 21 5 3"></polygon>
</svg>
</button>
</div>
<div class="sv-anim-row">
<span class="sv-anim-label"><span data-i18n="settings.speed">Speed</span> <span class="sv-speed-val"
id="speed-value-label">0.6×</span></span>
<input type="range" id="anim-speed-slider" class="sv-slider" min="0.2" max="2.0" step="0.05"
value="0.6">
</div>
</div>
</section>
<div class="sv-sidebar-footer">
<div class="lang-dropdown" id="lang-dropdown">
<button class="lang-dropdown-toggle" id="lang-dropdown-toggle">
<svg class="lang-globe-icon" width="15" height="15" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="10"></circle>
<line x1="2" y1="12" x2="22" y2="12"></line>
<path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path>
</svg>
<svg class="lang-chevron" width="9" height="9" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="3">
<polyline points="6 9 12 15 18 9"></polyline>
</svg>
</button>
<div class="lang-dropdown-menu" id="lang-dropdown-menu">
<button class="lang-option active" data-lang="en">English</button>
<button class="lang-option" data-lang="zh">Simplified Chinese</button>
<button class="lang-option" data-lang="zh-Hant">Traditional Chinese</button>
<button class="lang-option" data-lang="fr">Francais</button>
<button class="lang-option" data-lang="ru">Русский</button>
<button class="lang-option" data-lang="fa">Farsi</button>
<button class="lang-option" data-lang="ur">Urdu</button>
<button class="lang-option" data-lang="tl">Tagalog</button>
</div>
</div>
<div class="footer-separator"></div>
<a href="https://discord.gg/xfKQD65udk" target="_blank" rel="noopener noreferrer" class="sv-footer-discord" title="Join Discord">
<svg width="22" height="22" viewBox="0 0 24 24" fill="currentColor">
<path d="M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.666 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028 14.09 14.09 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.196.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.994a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.419 0 1.334-.956 2.419-2.157 2.419zm7.974 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.419 0 1.334-.946 2.419-2.157 2.419z"/>
</svg>
</a>
<a href="https://www.reddit.com/user/Zhilips/" target="_blank" rel="noopener noreferrer" class="sv-footer-reddit" title="Visit Reddit">
<svg width="22" height="22" viewBox="0 0 512 512" fill="currentColor">
<path d="M0 256C0 114.6 114.6 0 256 0S512 114.6 512 256s-114.6 256-256 256L37.1 512c-13.7 0-20.5-16.5-10.9-26.2L75 437C28.7 390.7 0 326.7 0 256zM349.6 153.6c23.6 0 42.7-19.1 42.7-42.7s-19.1-42.7-42.7-42.7c-20.6 0-37.8 14.6-41.8 34c-34.5 3.7-61.4 33-61.4 68.4l0 .2c-37.5 1.6-71.8 12.3-99 29.1c-10.1-7.8-22.8-12.5-36.5-12.5c-33 0-59.8 26.8-59.8 59.8c0 24 14.1 44.6 34.4 54.1c2 69.4 77.6 125.2 170.6 125.2s168.7-55.9 170.6-125.3c20.2-9.6 34.1-30.2 34.1-54c0-33-26.8-59.8-59.8-59.8c-13.7 0-26.3 4.6-36.4 12.4c-27.4-17-62.1-27.7-100-29.1l0-.2c0-25.4 18.9-46.5 43.4-49.9l0 0c4.4 18.8 21.3 32.8 41.5 32.8zM177.1 246.9c16.7 0 29.5 17.6 28.5 39.3s-13.5 29.6-30.3 29.6s-31.4-8.8-30.4-30.5s15.4-38.3 32.1-38.3zm190.1 38.3c1 21.7-13.7 30.5-30.4 30.5s-29.3-7.9-30.3-29.6c-1-21.7 11.8-39.3 28.5-39.3s31.2 16.6 32.1 38.3zm-48.1 56.7c-10.3 24.6-34.6 41.9-63 41.9s-52.7-17.3-63-41.9c-1.2-2.9 .8-6.2 3.9-6.5c18.4-1.9 38.3-2.9 59.1-2.9s40.7 1 59.1 2.9c3.1 .3 5.1 3.6 3.9 6.5z"/>
</svg>
</a>
</div>
</aside>
<!-- Center column: controls -->
<main class="sv-main">
<!-- Global Units control -->
<section class="sv-card sv-card-units">
<div class="sv-card-icon-row">
<div class="sv-icon-circle sv-unit-icon">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="4" y1="21" x2="4" y2="14"></line>
<line x1="4" y1="10" x2="4" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="12"></line>
<line x1="12" y1="8" x2="12" y2="3"></line>
<line x1="20" y1="21" x2="20" y2="16"></line>
<line x1="20" y1="12" x2="20" y2="3"></line>
<line x1="1" y1="14" x2="7" y2="14"></line>
<line x1="9" y1="8" x2="15" y2="8"></line>
<line x1="17" y1="16" x2="23" y2="16"></line>
</svg>
</div>
<h3 data-i18n="settings.globalUnits">Global Units</h3>
</div>
<div class="sv-anim-controls sv-unit-controls">
<div class="sv-anim-row sv-unit-row">
<span class="sv-anim-label sv-unit-label" data-i18n="settings.temperature">Temperature</span>
<div class="global-nav-pill sv-unit-pill">
<div class="sv-nav-pill-slider"></div>
<button class="nav-pill-btn active unit-setting-btn" data-type="temp" data-idx="0">°C</button>
<button class="nav-pill-btn unit-setting-btn" data-type="temp" data-idx="1">°F</button>
<button class="nav-pill-btn unit-setting-btn" data-type="temp" data-idx="2">K</button>
</div>
</div>
<div class="sv-anim-row sv-unit-row">
<span class="sv-anim-label sv-unit-label" data-i18n="settings.density">Density</span>
<div class="global-nav-pill sv-unit-pill">
<div class="sv-nav-pill-slider"></div>
<button class="nav-pill-btn active unit-setting-btn" data-type="density" data-idx="0">g/cm³</button>