-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
3586 lines (3223 loc) · 123 KB
/
index.html
File metadata and controls
3586 lines (3223 loc) · 123 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
<!-- xmenu.dev / index.html (entire corrected file) -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>XMenu - Your iPad Experience</title>
<meta name="description" content="XMenu – the ultimate iPad menu experience. Browse, customize, and enjoy a seamless digital menu platform." />
<link rel="icon" type="image/png" href="icon.png" />
<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;600;700&family=Noto+Sans+SC:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<style>
:root {
color-scheme: dark;
font-family: "Inter", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
background-color: #0f172a;
color: #e2e8f0;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
margin: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: radial-gradient(circle at top, #1e293b, #0f172a 65%);
padding: 48px 20px;
}
main {
width: min(960px, 100%);
background: rgba(15, 23, 42, 0.85);
border: 1px solid rgba(148, 163, 184, 0.2);
border-radius: 28px;
padding: 56px clamp(24px, 5vw, 64px);
box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
display: grid;
gap: 40px;
backdrop-filter: blur(10px);
}
header {
display: flex;
flex-direction: column;
gap: 16px;
}
.eyebrow {
text-transform: uppercase;
letter-spacing: 0.32em;
font-size: 0.75rem;
color: #94a3b8;
font-weight: 600;
}
h1 {
margin: 0;
font-size: clamp(2.4rem, 4vw, 3.6rem);
color: #f8fafc;
font-weight: 700;
line-height: 1.2;
}
p {
margin: 0;
font-size: 1.05rem;
color: #cbd5e1;
line-height: 1.7;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-top: 8px;
}
.button {
text-decoration: none;
font-weight: 600;
padding: 14px 28px;
border-radius: 999px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
transition: all 0.2s ease;
border: 1px solid transparent;
cursor: pointer;
font-size: 0.95rem;
font-family: inherit;
}
.button.primary {
background: linear-gradient(135deg, #38bdf8, #0ea5e9);
color: #0f172a;
box-shadow: 0 14px 32px rgba(56, 189, 248, 0.35);
}
.button.primary:hover {
transform: translateY(-2px);
box-shadow: 0 18px 40px rgba(56, 189, 248, 0.45);
}
.button.secondary {
background: transparent;
color: #e2e8f0;
border-color: rgba(148, 163, 184, 0.4);
}
.button.secondary:hover {
transform: translateY(-2px);
background: rgba(148, 163, 184, 0.1);
border-color: rgba(148, 163, 184, 0.6);
}
.details {
display: grid;
gap: 16px;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.detail-card {
background: rgba(30, 41, 59, 0.7);
border: 1px solid rgba(148, 163, 184, 0.2);
border-radius: 20px;
padding: 24px 24px;
transition: all 0.3s ease;
}
.detail-card:hover {
transform: translateY(-4px);
border-color: rgba(56, 189, 248, 0.4);
box-shadow: 0 12px 32px rgba(56, 189, 248, 0.15);
}
.detail-card h2 {
margin: 0 0 10px;
font-size: 1.15rem;
color: #f1f5f9;
font-weight: 600;
}
.detail-card p {
font-size: 0.95rem;
color: #cbd5e1;
line-height: 1.6;
}
footer {
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
justify-content: space-between;
color: #94a3b8;
font-size: 0.9rem;
padding-top: 8px;
border-top: 1px solid rgba(148, 163, 184, 0.15);
}
.footer-note {
display: flex;
gap: 10px;
align-items: center;
}
/* Changelog / What's New section */
.changelog {
display: grid;
gap: 14px;
}
.changelog-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 4px;
}
.changelog-header h2 {
margin: 0;
font-size: 1.25rem;
color: #f1f5f9;
font-weight: 600;
}
.changelog-badge {
background: linear-gradient(135deg, #38bdf8, #0ea5e9);
color: #0f172a;
border-radius: 999px;
padding: 4px 12px;
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.04em;
}
.changelog-entry {
background: rgba(30, 41, 59, 0.7);
border: 1px solid rgba(148, 163, 184, 0.2);
border-radius: 16px;
padding: 18px 22px;
display: grid;
gap: 8px;
transition: all 0.3s ease;
}
.changelog-entry:hover {
border-color: rgba(56, 189, 248, 0.35);
box-shadow: 0 8px 24px rgba(56, 189, 248, 0.1);
}
.changelog-entry-top {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
}
.changelog-version {
font-family: monospace;
font-size: 0.88rem;
font-weight: 700;
color: #7dd3fc;
letter-spacing: 0.04em;
}
.changelog-date {
font-size: 0.8rem;
color: #64748b;
}
.changelog-tag {
border-radius: 999px;
padding: 3px 10px;
font-size: 0.72rem;
font-weight: 700;
}
.changelog-tag.new { background: rgba(74, 222, 128, 0.15); color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.3); }
.changelog-tag.fix { background: rgba(251, 191, 36, 0.15); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.3); }
.changelog-tag.improve { background: rgba(56, 189, 248, 0.15); color: #7dd3fc; border: 1px solid rgba(56, 189, 248, 0.3); }
.changelog-entry ul {
margin: 0;
padding-left: 20px;
display: grid;
gap: 4px;
}
.changelog-entry li {
font-size: 0.9rem;
color: #cbd5e1;
line-height: 1.5;
}
/* Reviews section */
.reviews {
display: grid;
gap: 16px;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.review-card {
background: rgba(30, 41, 59, 0.7);
border: 1px solid rgba(148, 163, 184, 0.2);
border-radius: 20px;
padding: 24px;
display: flex;
flex-direction: column;
gap: 10px;
transition: all 0.3s ease;
}
.review-card:hover {
transform: translateY(-4px);
border-color: rgba(56, 189, 248, 0.4);
box-shadow: 0 12px 32px rgba(56, 189, 248, 0.15);
}
.review-stars {
color: #facc15;
font-size: 1rem;
letter-spacing: 2px;
}
.review-text {
font-size: 0.95rem;
color: #cbd5e1;
line-height: 1.6;
font-style: italic;
}
.review-meta {
font-size: 0.82rem;
color: #64748b;
}
.review-meta strong {
color: #94a3b8;
font-weight: 600;
}
/* Reviews section header row */
.reviews-header {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 4px;
}
.reviews-header h2 {
margin: 0;
font-size: 1.25rem;
color: #f1f5f9;
font-weight: 600;
}
/* Write-a-review toggle button — hidden until JS shows it */
#writeReviewBtn {
display: none;
padding: 10px 20px;
font-size: 0.88rem;
}
/* Optional label suffix in forms */
.form-label-optional {
color: #64748b;
font-weight: 400;
}
/* Write-a-Review panel (collapsed by default, same pattern as support-panel) */
.review-form-panel {
background: rgba(30, 41, 59, 0.75);
border: 1px solid rgba(148, 163, 184, 0.2);
border-radius: 20px;
display: grid;
gap: 20px;
overflow: hidden;
max-height: 0;
opacity: 0;
transform: translateY(-16px);
pointer-events: none;
padding: 0 clamp(20px, 4vw, 36px);
transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease, padding 0.35s ease;
}
.review-form-panel.review-form-panel--open {
max-height: 800px;
opacity: 1;
transform: translateY(0);
pointer-events: auto;
padding: 32px clamp(20px, 4vw, 36px);
}
.review-form-panel h2 {
margin: 0;
color: #f8fafc;
font-size: 1.3rem;
font-weight: 600;
}
.review-form-panel p {
color: #cbd5e1;
font-size: 0.95rem;
line-height: 1.6;
margin: 0;
}
/* Star picker */
.star-picker {
display: flex;
gap: 6px;
flex-direction: row-reverse;
justify-content: flex-end;
}
.star-picker input[type="radio"] {
display: none;
}
.star-picker label {
font-size: 1.6rem;
color: #64748b;
cursor: pointer;
transition: color 0.15s ease, transform 0.15s ease;
line-height: 1;
user-select: none;
}
/* Highlight on hover — because of row-reverse, hover this label + all after it */
.star-picker label:hover,
.star-picker label:hover ~ label {
color: #facc15;
transform: scale(1.15);
}
/* Highlight checked and all "after" (visually to the left, due to row-reverse) */
.star-picker input[type="radio"]:checked ~ label {
color: #facc15;
}
/* Review form inputs */
.review-form {
display: grid;
gap: 16px;
}
.review-form label {
font-size: 0.9rem;
color: #cbd5e1;
display: grid;
gap: 8px;
font-weight: 500;
}
.review-form input,
.review-form textarea {
width: 100%;
padding: 12px 14px;
border-radius: 12px;
border: 1px solid rgba(148, 163, 184, 0.3);
background: rgba(15, 23, 42, 0.8);
color: #e2e8f0;
font-size: 0.95rem;
font-family: inherit;
transition: all 0.2s ease;
}
.review-form input:focus,
.review-form textarea:focus {
outline: none;
border-color: #38bdf8;
box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}
.review-form textarea {
min-height: 100px;
resize: vertical;
}
.review-form-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
}
.review-form-feedback {
font-size: 0.85rem;
min-height: 18px;
}
.review-form-feedback.success { color: #4ade80; }
.review-form-feedback.error { color: #f87171; }
/* Light-theme overrides for review form */
body.theme-light .review-form-panel {
background: rgba(241, 245, 249, 0.85);
border-color: rgba(100, 116, 139, 0.2);
}
body.theme-light .review-form-panel h2 { color: #0f172a; }
body.theme-light .review-form-panel p { color: #475569; }
body.theme-light .review-form label { color: #334155; }
body.theme-light .review-form input,
body.theme-light .review-form textarea {
background: rgba(255, 255, 255, 0.9);
color: #0f172a;
border-color: rgba(100, 116, 139, 0.3);
}
/* Impressum link in footer */
.impressum-link {
color: #64748b;
font-size: 0.85rem;
text-decoration: none;
transition: color 0.2s;
}
.impressum-link:hover {
color: #94a3b8;
}
.pill {
background: rgba(56, 189, 248, 0.15);
color: #7dd3fc;
border-radius: 999px;
padding: 6px 14px;
font-weight: 600;
font-size: 0.75rem;
border: 1px solid rgba(56, 189, 248, 0.3);
}
.language-switcher {
position: fixed;
top: 24px;
right: 24px;
z-index: 10000;
display: flex;
gap: 8px;
background: rgba(15, 23, 42, 0.95);
border: 1px solid rgba(148, 163, 184, 0.25);
border-radius: 999px;
padding: 6px;
backdrop-filter: blur(10px);
box-shadow: 0 8px 24px rgba(15, 23, 42, 0.4);
}
.lang-btn {
appearance: none;
border: none;
background: transparent;
color: #94a3b8;
padding: 8px 16px;
border-radius: 999px;
font-size: 0.85rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
font-family: inherit;
}
.lang-btn:hover {
color: #e2e8f0;
background: rgba(148, 163, 184, 0.1);
}
.lang-btn.active {
background: linear-gradient(135deg, #38bdf8, #0ea5e9);
color: #0f172a;
box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}
.asset-loader {
position: fixed;
right: 18px;
bottom: 18px;
width: min(360px, calc(100vw - 36px));
background: rgba(15, 23, 42, 0.95);
border: 1px solid rgba(148, 163, 184, 0.25);
border-radius: 18px;
box-shadow: 0 24px 70px rgba(15, 23, 42, 0.6);
padding: 16px 16px 14px;
display: grid;
gap: 12px;
z-index: 9999;
opacity: 1;
transform: translateY(0);
transition: opacity 250ms ease, transform 250ms ease;
backdrop-filter: blur(10px);
}
.asset-loader.hidden {
opacity: 0;
transform: translateY(12px);
pointer-events: none;
}
.asset-top {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.asset-title {
display: grid;
gap: 4px;
}
.asset-title strong {
color: #f8fafc;
font-size: 0.98rem;
line-height: 1.2;
font-weight: 600;
}
.asset-title span {
color: #94a3b8;
font-size: 0.85rem;
}
.asset-actions {
display: flex;
gap: 10px;
align-items: center;
}
.skip-btn {
appearance: none;
border: 1px solid rgba(148, 163, 184, 0.35);
background: transparent;
color: #e2e8f0;
border-radius: 999px;
padding: 8px 12px;
font-weight: 600;
font-size: 0.8rem;
cursor: pointer;
transition: all 0.15s ease;
font-family: inherit;
}
.skip-btn:hover {
transform: translateY(-1px);
background: rgba(148, 163, 184, 0.1);
border-color: rgba(148, 163, 184, 0.5);
}
.mini-spinner {
width: 20px;
height: 20px;
border-radius: 999px;
border: 2px solid rgba(148, 163, 184, 0.25);
border-top-color: #38bdf8;
animation: spin 700ms linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.asset-progress {
height: 10px;
border-radius: 999px;
background: rgba(148, 163, 184, 0.18);
overflow: hidden;
border: 1px solid rgba(148, 163, 184, 0.15);
}
.asset-progress > div {
height: 100%;
width: 0%;
background: linear-gradient(90deg, #38bdf8, #0ea5e9);
transition: width 200ms ease;
}
.asset-detail {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
color: #94a3b8;
font-size: 0.85rem;
}
.asset-badge {
background: rgba(56, 189, 248, 0.15);
color: #7dd3fc;
border-radius: 999px;
padding: 5px 12px;
font-weight: 700;
font-size: 0.75rem;
border: 1px solid rgba(56, 189, 248, 0.3);
}
.support-panel {
background: rgba(30, 41, 59, 0.75);
border: 1px solid rgba(148, 163, 184, 0.2);
border-radius: 20px;
display: grid;
gap: 20px;
overflow: hidden;
max-height: 0;
opacity: 0;
transform: translateY(-16px);
pointer-events: none;
padding: 0 clamp(20px, 4vw, 36px);
transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease, padding 0.35s ease;
}
.support-panel.support-panel--open {
max-height: 3600px; /* large enough for any realistic form content */
opacity: 1;
transform: translateY(0);
pointer-events: auto;
padding: 32px clamp(20px, 4vw, 36px);
}
.support-panel h2 {
margin: 0;
color: #f8fafc;
font-size: 1.5rem;
font-weight: 600;
}
.support-panel p {
color: #cbd5e1;
font-size: 1rem;
line-height: 1.6;
}
.support-form {
display: grid;
gap: 18px;
}
.support-grid {
display: grid;
gap: 16px;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.support-form label {
font-size: 0.9rem;
color: #cbd5e1;
display: grid;
gap: 8px;
font-weight: 500;
}
.support-form select,
.support-form input,
.support-form textarea {
width: 100%;
padding: 12px 14px;
border-radius: 12px;
border: 1px solid rgba(148, 163, 184, 0.3);
background: rgba(15, 23, 42, 0.8);
color: #e2e8f0;
font-size: 0.95rem;
font-family: inherit;
transition: all 0.2s ease;
}
.support-form select:focus,
.support-form input:focus,
.support-form textarea:focus {
outline: none;
border-color: #38bdf8;
box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}
.support-form textarea {
min-height: 120px;
resize: vertical;
}
.support-actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
align-items: center;
}
.support-helper {
font-size: 0.85rem;
color: #94a3b8;
line-height: 1.5;
}
/* ── Discount code field ── */
.discount-code-row {
display: flex;
gap: 10px;
align-items: stretch;
}
.discount-code-row input {
flex: 1;
}
.apply-code-btn {
padding: 12px 18px;
border-radius: 12px;
border: 1px solid rgba(148, 163, 184, 0.4);
background: transparent;
color: #e2e8f0;
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
font-family: inherit;
white-space: nowrap;
}
.apply-code-btn:hover {
background: rgba(148, 163, 184, 0.1);
border-color: rgba(148, 163, 184, 0.6);
}
.code-feedback {
font-size: 0.85rem;
margin-top: 6px;
min-height: 18px;
display: block;
}
.code-feedback.success { color: #4ade80; }
.code-feedback.error { color: #f87171; }
/* ── Secret code modal ── */
.secret-modal-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.55);
display: none;
align-items: center;
justify-content: center;
z-index: 10002;
backdrop-filter: blur(4px);
}
.secret-modal-overlay.visible {
display: flex;
}
.secret-modal-box {
background: rgba(15, 23, 42, 0.98);
border: 1px solid rgba(148, 163, 184, 0.3);
border-radius: 18px;
padding: 28px 28px 22px;
width: min(360px, calc(100vw - 40px));
box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
display: grid;
gap: 14px;
}
.secret-modal-title {
font-size: 1rem;
font-weight: 600;
color: #f8fafc;
margin: 0;
}
.secret-modal-row {
display: flex;
gap: 10px;
}
.secret-modal-input {
flex: 1;
padding: 12px 14px;
border-radius: 12px;
border: 1px solid rgba(148, 163, 184, 0.3);
background: rgba(15, 23, 42, 0.8);
color: #e2e8f0;
font-size: 0.95rem;
font-family: inherit;
outline: none;
transition: border-color 0.2s;
}
.secret-modal-input:focus {
border-color: #38bdf8;
box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}
.secret-modal-cancel {
background: none;
border: none;
color: #64748b;
font-size: 0.85rem;
cursor: pointer;
padding: 4px 0;
font-family: inherit;
text-align: left;
transition: color 0.2s;
}
.secret-modal-cancel:hover { color: #94a3b8; }
/* ── Customization panel ── */
.customize-panel {
position: fixed;
bottom: 24px;
left: 24px;
background: rgba(15, 23, 42, 0.97);
border: 1px solid rgba(148, 163, 184, 0.3);
border-radius: 20px;
padding: 20px;
width: 260px;
z-index: 10001;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(12px);
display: none;
animation: fadeSlideIn 0.3s ease;
}
.customize-panel.visible {
display: block;
}
.customize-panel h3 {
font-size: 0.95rem;
color: #f8fafc;
font-weight: 600;
margin-bottom: 14px;
display: flex;
align-items: center;
justify-content: space-between;
}
.theme-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
}
.theme-btn {
padding: 10px 12px;
border-radius: 10px;
border: 1px solid rgba(148, 163, 184, 0.25);
background: rgba(30, 41, 59, 0.8);
color: #cbd5e1;
font-size: 0.8rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
font-family: inherit;
text-align: center;
}
.theme-btn:hover,
.theme-btn.active {
border-color: #38bdf8;
color: #38bdf8;
background: rgba(56, 189, 248, 0.1);
}
.close-customize {
background: none;
border: none;
color: #94a3b8;
cursor: pointer;
font-size: 1rem;
padding: 0;
line-height: 1;
}
.close-customize:hover { color: #e2e8f0; }
.secret-code-trigger {
background: none;
border: none;
color: #475569;
cursor: pointer;
font-size: 0.85rem;
padding: 4px 6px;
border-radius: 6px;
transition: color 0.2s;
font-family: inherit;
}
.secret-code-trigger:hover { color: #94a3b8; }
/* ── UI themes ── */
body.theme-ocean {
background: radial-gradient(circle at top, #0d2137, #050f1a 65%);
}
body.theme-ocean main {
background: rgba(5, 15, 26, 0.85);
border-color: rgba(34, 211, 238, 0.2);
}
body.theme-forest {
background: radial-gradient(circle at top, #0f2518, #060f0a 65%);
}
body.theme-forest main {
background: rgba(6, 15, 10, 0.85);
border-color: rgba(74, 222, 128, 0.2);
}
body.theme-sunset {
background: radial-gradient(circle at top, #2d1515, #1a0a0a 65%);
}
body.theme-sunset main {
background: rgba(26, 10, 10, 0.85);
border-color: rgba(251, 146, 60, 0.2);
}
body.theme-minimal {
background: #0a0a0a;
}
body.theme-minimal main {
background: rgba(10, 10, 10, 0.95);
border-color: rgba(255, 255, 255, 0.1);
box-shadow: none;
}
body.theme-light {
background: radial-gradient(circle at top, #e2eaf4, #f0f4fa 65%);
color: #1e293b;
}
body.theme-light main {
background: rgba(255, 255, 255, 0.9);
border-color: rgba(100, 116, 139, 0.25);
box-shadow: 0 30px 80px rgba(100, 116, 139, 0.18);
}