-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathen.html
More file actions
1374 lines (1206 loc) · 48.1 KB
/
en.html
File metadata and controls
1374 lines (1206 loc) · 48.1 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>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-6JTGMLLK8S"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-6JTGMLLK8S');
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Original Scripts -->
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
<!-- Material Design 3 CSS Files -->
<link rel="stylesheet" href="css/light.css">
<link rel="stylesheet" href="css/dark.css">
<script src="script.js"></script>
<!-- Material Icons -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<!-- Roboto Font -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="icon" href="./icon/favicon.ico" sizes="any">
<link rel="apple-touch-icon" href="./icon/icon-512.png">
<meta name="description" content="A YouTube Music client with Material Design 3, for Android">
<title>OpenTune</title>
</head>
<body class="light">
<!-- Top App Bar -->
<header class="top-app-bar">
<div class="app-bar-container">
<div class="app-bar-leading">
<img id="logo" class="app-bar-logo" src="./icon/icon-512-maskable.png" alt="OpenTune Logo" width="40"
height="40">
<span class="app-bar-title">OpenTune</span>
</div>
<div class="app-bar-actions">
<button id="languageSelector" class="icon-button">
<span class="material-symbols-rounded">language</span>
<span id="languageText" class="button-text">English</span>
<span class="material-symbols-rounded">arrow_drop_down</span>
</button>
<button id="themeSelector" class="icon-button">
<span class="material-symbols-rounded" id="themeIcon">brightness_6</span>
</button>
</div>
</div>
</header>
<!-- Language Selection Dialog -->
<dialog id="languageDialog" class="md3-dialog">
<div class="dialog-header">
<h2 class="dialog-title">Select Language</h2>
<button class="icon-button" onclick="closeDialog()">
<span class="material-symbols-rounded">close</span>
</button>
</div>
<div class="dialog-content">
<div class="language-options">
<button class="list-item" onclick="setLanguage('Español', 'index.html')">
<img src="https://flagicons.lipis.dev/flags/4x3/es.svg" alt="Español" class="flag-icon">
<span>Español</span>
</button>
<button class="list-item" onclick="setLanguage('English', 'en.html')">
<img src="https://flagicons.lipis.dev/flags/4x3/gb.svg" alt="English" class="flag-icon">
<span>English</span>
</button>
<button class="list-item" onclick="setLanguage('Português', 'Pt_BR.html')">
<img src="https://flagicons.lipis.dev/flags/4x3/br.svg" alt="Português" class="flag-icon">
<span>Português</span>
</button>
</div>
</div>
<div class="dialog-actions">
<button class="text-button" onclick="closeDialog()">Cancel</button>
</div>
</dialog>
<!-- Main Content -->
<main class="main-content">
<!-- Hero Section -->
<section class="hero-section">
<div class="hero-content">
<div class="hero-image">
<img src="./img/mock.png" alt="OpenTune App Preview" class="mockup-image">
</div>
<div class="hero-text">
<h1 class="hero-title">OpenTune</h1>
<div class="developer-chip">
<span class="material-symbols-rounded">code</span>
<span>Dev By Arthur Dev Studio</span>
</div>
<br>
<p class="hero-description">A YouTube Music client with Material Design 3, for Android.</p>
<br>
<div class="hero-actions">
<a href="#downloads" class="primary-button">
<span class="material-symbols-rounded">download</span>
<span>Download</span>
</a>
<button id="triggerDialogButton" class="outlined-button">
<span class="material-symbols-rounded">play_circle</span>
<span>Try Demo</span>
</button>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="features-section">
<div class="section-header">
<h2 class="section-title">
<span class="material-symbols-rounded">star</span>
Features
</h2>
</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">
<span class="material-symbols-rounded">music_note</span>
</div>
<h3 class="feature-title">YouTube Music Client with Material Design 3</h3>
<p class="feature-description">Offers a modern and elegant YouTube Music experience on Android, with an intuitive interface optimized according to Material Design 3.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<span class="material-symbols-rounded">palette</span>
</div>
<h3 class="feature-title">Modern and Attractive Design</h3>
<p class="feature-description">Based on Material Design 3, with vibrant colors, modern typography, and smooth transitions, creating an aesthetic and engaging experience.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<span class="material-symbols-rounded">settings</span>
</div>
<h3 class="feature-title">Intuitive and Customizable Interface</h3>
<p class="feature-description">Simplified interface for quick access to all YouTube Music features, with customization options according to preferences.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<span class="material-symbols-rounded">search</span>
</div>
<h3 class="feature-title">Explore and Discover Music</h3>
<p class="feature-description">Access to a wide music catalog with advanced search and intelligent recommendations based on preferences and listening habits.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<span class="material-symbols-rounded">volume_up</span>
</div>
<h3 class="feature-title">High-Quality Playback</h3>
<p class="feature-description">High-quality music, optimized for different devices and network conditions, with support for various audio formats.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<span class="material-symbols-rounded">playlist_add</span>
</div>
<h3 class="feature-title">Playlists and Downloads</h3>
<p class="feature-description">Create and organize playlists, and download songs and albums to listen offline.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<span class="material-symbols-rounded">sync</span>
</div>
<h3 class="feature-title">Complete YouTube Music Integration</h3>
<p class="feature-description">Sync your YouTube Music account to access your libraries and receive notifications about releases and events.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<span class="material-symbols-rounded">build</span>
</div>
<h3 class="feature-title">Advanced Features</h3>
<p class="feature-description">Voice and gesture playback control, and support for Chromecast and Bluetooth, allowing streaming to external devices.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<span class="material-symbols-rounded">folder</span>
</div>
<h3 class="feature-title">Efficient Library Management</h3>
<p class="feature-description">Organize your music with advanced filtering and categorization tools, quickly accessing songs and albums.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<span class="material-symbols-rounded">translate</span>
</div>
<h3 class="feature-title">Multilingual Support</h3>
<p class="feature-description">Available in multiple languages with accurate translations and culturally relevant localization.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<span class="material-symbols-rounded">update</span>
</div>
<h3 class="feature-title">Continuous Updates and Improvements</h3>
<p class="feature-description">Regular updates for new features, security improvements, and performance optimization.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<span class="material-symbols-rounded">headphones</span>
</div>
<h3 class="feature-title">Optimized User Experience</h3>
<p class="feature-description">Intuitive navigation and agile performance, with a user-friendly interface that enhances the user experience.</p>
</div>
</div>
</section>
<!-- Support Section -->
<section class="support-section">
<div class="support-card">
<h3>Need help?</h3>
<p>Submit a request or report an issue</p>
<a href="./from.html" class="outlined-button">
<span class="material-symbols-rounded">support</span>
<span>Get help</span>
</a>
</div>
</section>
<!-- Downloads Section -->
<section id="downloads" class="downloads-section">
<div class="section-header">
<h2 class="section-title">
<span class="material-symbols-rounded">download</span>
Downloads
</h2>
</div>
<div class="download-cards">
<!-- Android Download -->
<div class="download-card">
<div class="download-header">
<div class="download-icon android">
<span class="material-symbols-rounded">android</span>
</div>
<div class="download-info">
<h3>Android</h3>
<p>OpenTune for Android. Download the latest stable version.</p>
</div>
</div>
<div class="download-badges">
<span class="version-badge stable">Stable Version</span>
<span id="currentVersion" class="version-badge">Loading...</span>
</div>
<div class="download-actions">
<button class="text-button" onclick="changelog.show()">
<span class="material-symbols-rounded">list</span>
<span>View changes</span>
</button>
<button class="text-button" onclick="versions.show()">
<span class="material-symbols-rounded">history</span>
<span>Previous versions</span>
</button>
<a id="downloadBtn" class="primary-button download-button" href="" download>
<span class="material-symbols-rounded">download</span>
<span id="downloadText">Download APK</span>
</a>
</div>
</div>
<!-- Windows Download -->
<div class="download-card">
<div class="download-header">
<div class="download-icon windows">
<span class="material-symbols-rounded">laptop_windows</span>
</div>
<div class="download-info">
<h3>Windows</h3>
<p>OpenTune for Windows. Download the latest stable version.</p>
</div>
</div>
<div class="download-badges">
<span class="version-badge stable">Closed</span>
<span id="currentVersionWindows" class="version-badge">Loading...</span>
</div>
<div class="download-actions">
<button class="text-button" onclick="showChangelogWindows()">
<span class="material-symbols-rounded">list</span>
<span>View changes</span>
</button>
<button class="text-button" onclick="showVersionsWindows()">
<span class="material-symbols-rounded">history</span>
<span>Previous versions</span>
</button>
<a id="downloadBtnWindows" class="primary-button download-button" href="" download>
<span class="material-symbols-rounded">download</span>
<span>Download EXE</span>
</a>
</div>
</div>
</div>
</section>
</main>
<!-- Dialog Overlay -->
<div class="overlay blur" id="dialogOverlay"></div>
<!-- Warning Dialog -->
<dialog id="warningDialog" class="md3-dialog">
<div class="dialog-header">
<h2 class="dialog-title">
<span class="material-symbols-rounded">warning</span>
Redirect Notice
</h2>
</div>
<div class="dialog-content">
<p>You will be redirected away from OpenTune Web</p>
</div>
<div class="dialog-actions">
<button class="text-button" id="dismissButton">Cancel</button>
<button class="filled-button" id="proceedButton">Confirm</button>
</div>
</dialog>
<!-- Changelog Dialog -->
<dialog id="changelog" class="md3-dialog large">
<div class="dialog-header">
<h2 class="dialog-title">Release Notes</h2>
<button class="icon-button" onclick="changelog.close()">
<span class="material-symbols-rounded">close</span>
</button>
</div>
<div class="dialog-content">
<div id="changelogContent" class="changelog-content">
<div class="loading-indicator">
<div class="circular-progress"></div>
</div>
</div>
</div>
<div class="dialog-actions">
<button class="text-button" onclick="changelog.close()">Close</button>
</div>
</dialog>
<center>
<!-- Versions Dialog -->
<dialog id="versions" class="md3-dialog large">
<div class="dialog-header">
<h2 class="dialog-title">Versions</h2>
<button class="icon-button" onclick="versions.close()">
<span class="material-symbols-rounded">close</span>
</button>
</div>
<div class="dialog-content">
<div id="versionsList" class="versions-content">
<div class="loading-indicator">
<div class="circular-progress"></div>
</div>
</div>
</div>
<div class="dialog-actions">
<button class="text-button" onclick="versions.close()">Close</button>
</div>
</dialog>
<!-- Windows Changelog Dialog -->
<dialog id="changelogWindows" class="md3-dialog large">
<div class="dialog-header">
<h2 class="dialog-title">Release Notes</h2>
<button class="icon-button" onclick="closeChangelogWindows()">
<span class="material-symbols-rounded">close</span>
</button>
</div>
<div class="dialog-content">
<div id="changelogContentWindows" class="changelog-content">
<div class="loading-indicator">
<div class="circular-progress"></div>
</div>
</div>
</div>
<div class="dialog-actions">
<button class="text-button" onclick="closeChangelogWindows()">Close</button>
</div>
</dialog>
<!-- Windows Versions Dialog -->
<dialog id="versionsWindows" class="md3-dialog large">
<div class="dialog-header">
<h2 class="dialog-title">Versions</h2>
<button class="icon-button" onclick="closeVersionsWindows()">
<span class="material-symbols-rounded">close</span>
</button>
</div>
<div class="dialog-content">
<div id="versionsListWindows" class="versions-content">
<div class="loading-indicator">
<div class="circular-progress"></div>
</div>
</div>
</div>
<div class="dialog-actions">
<button class="text-button" onclick="closeVersionsWindows()">Close</button>
</div>
</dialog>
</center>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="footer-links">
<a href="https://github.com/Arturo254/" class="footer-chip">
<span class="material-symbols-rounded">developer_mode</span>
<span>Dev</span>
</a>
<a href="https://github.com/Arturo254/OpenTune" class="footer-chip">
<span class="material-symbols-rounded">code</span>
<span>Project Code</span>
</a>
<a href="https://raw.githubusercontent.com/Arturo254/OpenTune/master/LICENSE" class="footer-chip">
<span class="material-symbols-rounded">description</span>
<span>License</span>
</a>
<a href="https://wa.me/5576847925" class="footer-chip">
<span class="material-symbols-rounded">phone</span>
<span>Contact</span>
</a>
<a href="./contribuidores/contribuidores.html" class="footer-chip">
<span class="material-symbols-rounded">groups</span>
<span>Contributors</span>
</a>
</div>
<div class="footer-divider"></div>
<div class="footer-copyright">
<p>© 2024 <a href="https://github.com/Arturo254">Arturo.inc™</a>. All Rights Reserved.</p>
</div>
</div>
</footer>
<!-- Material Design 3 Styles -->
<style>
/* Root Variables and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
background-color: var(--md-sys-color-background);
color: var(--md-sys-color-on-background);
line-height: 1.5;
transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}
/* Top App Bar */
.top-app-bar {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 64px;
background-color: var(--md-sys-color-surface);
border-bottom: 1px solid var(--md-sys-color-outline-variant);
z-index: 10;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}
.app-bar-container {
height: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 16px;
display: flex;
align-items: center;
justify-content: space-between;
}
.app-bar-leading {
display: flex;
align-items: center;
gap: 12px;
}
.app-bar-logo {
border-radius: 20%;
filter: brightness(1.1);
transition: transform 0.3s ease;
}
@keyframes logoGlow {
0%,
100% {
opacity: 0.9;
box-shadow: 0 0 10px var(--md-sys-color-primary, rgba(103, 80, 164, 0.3));
}
50% {
opacity: 1;
box-shadow: 0 0 20px var(--md-sys-color-primary, rgba(103, 80, 164, 0.5));
}
}
.app-bar-title {
font-size: 22px;
font-weight: 500;
color: var(--md-sys-color-on-surface);
}
.app-bar-actions {
display: flex;
align-items: center;
gap: 8px;
}
/* Buttons */
.icon-button {
width: 40px;
height: 40px;
border: none;
border-radius: 50%;
background-color: transparent;
color: var(--md-sys-color-on-surface-variant);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
padding: 0 8px;
min-width: auto;
transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
}
.icon-button:hover {
background-color: var(--md-sys-color-surface-variant);
}
.icon-button .button-text {
font-size: 14px;
white-space: nowrap;
}
.primary-button {
background-color: var(--md-sys-color-primary);
color: var(--md-sys-color-on-primary);
border: none;
border-radius: 24px;
padding: 10px 24px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
text-decoration: none;
transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.primary-button:hover {
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
transform: translateY(-1px);
}
.outlined-button {
background-color: transparent;
color: var(--md-sys-color-primary);
border: 1px solid var(--md-sys-color-outline);
border-radius: 24px;
padding: 10px 24px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
text-decoration: none;
transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
}
.outlined-button:hover {
background-color: var(--md-sys-color-primary-container);
border-color: var(--md-sys-color-primary);
}
.text-button {
background-color: transparent;
color: var(--md-sys-color-primary);
border: none;
border-radius: 20px;
padding: 10px 12px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
}
.text-button:hover {
background-color: var(--md-sys-color-primary-container);
}
.filled-button {
background-color: var(--md-sys-color-primary);
color: var(--md-sys-color-on-primary);
border: none;
border-radius: 20px;
padding: 10px 24px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
}
/* Main Content */
.main-content {
margin-top: 64px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
padding: 0 16px;
}
/* Hero Section */
.hero-section {
padding: 80px 0;
text-align: center;
}
.hero-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 32px;
}
.mockup-image {
width: 100%;
max-width: 350px;
height: auto;
border-radius: 24px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.hero-title {
font-size: 3.5rem;
font-weight: 400;
color: var(--md-sys-color-on-surface);
margin: 0;
}
.developer-chip {
background-color: var(--md-sys-color-primary-container);
color: var(--md-sys-color-on-primary-container);
padding: 8px 16px;
border-radius: 16px;
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
font-weight: 500;
animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.8;
transform: scale(1.05);
}
}
.hero-description {
font-size: 1.25rem;
color: var(--md-sys-color-on-surface-variant);
max-width: 600px;
margin: 0;
}
.hero-actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
justify-content: center;
}
/* Features Section */
.features-section {
padding: 80px 0;
}
.section-header {
text-align: center;
margin-bottom: 48px;
}
.section-title {
font-size: 2.5rem;
font-weight: 400;
color: var(--md-sys-color-on-surface);
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
margin: 0;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 24px;
}
.feature-card {
background-color: var(--md-sys-color-surface-container-low);
border-radius: 16px;
padding: 24px;
transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
border: 1px solid var(--md-sys-color-outline-variant);
}
.feature-card:hover {
background-color: var(--md-sys-color-surface-container);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.feature-icon {
width: 48px;
height: 48px;
border-radius: 12px;
background-color: var(--md-sys-color-primary-container);
color: var(--md-sys-color-on-primary-container);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 16px;
}
.feature-title {
font-size: 1.25rem;
font-weight: 500;
color: var(--md-sys-color-on-surface);
margin: 0 0 8px 0;
}
.feature-description {
font-size: 0.875rem;
color: var(--md-sys-color-on-surface-variant);
line-height: 1.6;
margin: 0;
}
/* Support Section */
.support-section {
padding: 40px 0;
}
.support-card {
background-color: var(--md-sys-color-secondary-container);
color: var(--md-sys-color-on-secondary-container);
border-radius: 16px;
padding: 32px;
text-align: center;
max-width: 600px;
margin: 0 auto;
}
.support-card h3 {
font-size: 1.5rem;
font-weight: 500;
margin: 0 0 8px 0;
}
.support-card p {
margin: 0 0 24px 0;
opacity: 0.8;
}
/* Downloads Section */
.downloads-section {
padding: 80px 0;
}
.download-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 24px;
}
.download-card {
background-color: var(--md-sys-color-surface-container-low);
border-radius: 16px;
padding: 24px;
border: 1px solid var(--md-sys-color-outline-variant);
transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
}
.download-card:hover {
background-color: var(--md-sys-color-surface-container);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.download-header {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 16px;
}
.download-icon {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
}
.download-icon.android {
background-color: var(--md-sys-color-tertiary-container);
color: var(--md-sys-color-on-tertiary-container);
}
.download-icon.windows {
background-color: var(--md-sys-color-primary-container);
color: var(--md-sys-color-on-primary-container);
}
.download-info h3 {
font-size: 1.25rem;
font-weight: 500;
color: var(--md-sys-color-on-surface);
margin: 0 0 4px 0;
}
.download-info p {
font-size: 0.875rem;
color: var(--md-sys-color-on-surface-variant);
margin: 0;
}
.download-badges {
display: flex;
gap: 8px;
margin-bottom: 24px;
flex-wrap: wrap;
}
.version-badge {
background-color: var(--md-sys-color-surface-variant);
color: var(--md-sys-color-on-surface-variant);
padding: 4px 12px;
border-radius: 16px;
font-size: 0.75rem;
font-weight: 500;
}
.version-badge.stable {
background-color: var(--md-sys-color-tertiary-container);
color: var(--md-sys-color-on-tertiary-container);
}
.download-actions {
display: flex;
flex-direction: column;
gap: 12px;
}
.download-button {
align-self: flex-start;
}
/* Dialogs */
.md3-dialog {
position: fixed;
/* positioned relative to the window */
inset: 0;
/* top:0; right:0; bottom:0; left:0 */
margin: auto;
/* automatically centers it */
border: none;
border-radius: 24px;
background-color: var(--md-sys-color-surface-container-high);
color: var(--md-sys-color-on-surface);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
max-width: 90vw;
max-height: 90vh;
overflow: hidden;
}
.md3-dialog.large {
width: 600px;
}
.md3-dialog::backdrop {
background-color: rgba(0, 0, 0, 0.5);
-webkit-backdrop-filter: blur(4px);
backdrop-filter: blur(4px);
}
.dialog-header {
padding: 24px 24px 0 24px;
display: flex;
align-items: center;
justify-content: space-between;
}
.dialog-title {
font-size: 1.5rem;
font-weight: 500;
color: var(--md-sys-color-on-surface);
margin: 0;
display: flex;
align-items: center;
gap: 8px;
}
.dialog-content {
padding: 16px 24px;
overflow-y: auto;
max-height: 60vh;
}
.dialog-actions {
padding: 0 24px 24px 24px;
display: flex;
justify-content: flex-end;
gap: 8px;
}
/* Language Options */
.language-options {
display: flex;
flex-direction: column;
gap: 4px;
}
.list-item {
background: transparent;
border: none;
padding: 12px 16px;
border-radius: 8px;
cursor: pointer;
display: flex;
align-items: center;
gap: 12px;
font-size: 16px;
color: var(--md-sys-color-on-surface);
text-align: left;
width: 100%;
transition: background-color 0.2s;
}
.list-item:hover {
background-color: var(--md-sys-color-surface-variant);
}
.flag-icon {
width: 24px;
height: 18px;
border-radius: 2px;
}