-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1408 lines (1252 loc) · 60.2 KB
/
index.html
File metadata and controls
1408 lines (1252 loc) · 60.2 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="de">
<head>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css"
integrity="sha512-DxV+EoADOkOygM4IR9yXP8Sb2qwgidEmeqAEmDKIOfPRQZOWbXCzLC6vjbZyy0vPisbH2SyW27+ddLVCN+OMzQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>SmartGuide - Ihr IPhone-Begleiter</title>
<style>
:root {
--bg: linear-gradient(140deg, #e9e9e9 0%, #f1f1f1 100%);
--text: #111111;
--primary: #2563eb;
--primary-dark: #1d4ed8;
--primary-light: #dbeafe;
--success: #16a34a;
--warning: #f59e0b;
--danger: #dc2626;
--border: #d1d5db;
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
--font-size: 18px;
}
body {
background: var(--bg);
color: var(--text);
font-family: system-ui, sans-serif;
line-height: 1.6;
max-width: 800px;
font-size: var(--font-size);
margin: 0 auto;
padding: 20px;
transition: font-size 0.3s ease;
}
/* Dark Mode */
.dark-mode {
--bg: linear-gradient(140deg, #1f2937 0%, #111827 100%);
--text: #f9fafb;
--border: #374151;
--primary-light: #1e3a8a;
}
.dark-mode .container {
background: rgba(31, 41, 55, 0.8);
border-color: var(--border);
}
/* Font Size Controls */
.accessibility-controls {
position: fixed;
top: 20px;
right: 20px;
z-index: 1000;
display: flex;
flex-direction: column;
gap: 10px;
}
.control-btn {
background: var(--primary);
color: white;
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
font-size: 20px;
cursor: pointer;
box-shadow: var(--shadow);
transition: transform 0.2s;
}
.control-btn:hover {
transform: scale(1.1);
background: var(--primary-dark);
}
/* Progress System */
.progress-bar {
width: 100%;
height: 8px;
background: #e5e7eb;
border-radius: 4px;
margin: 20px 0;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, var(--primary), var(--success));
width: 0%;
transition: width 0.5s ease;
}
/* Breadcrumb Navigation */
.breadcrumb {
padding: 15px 0;
color: #6b7280;
font-size: 14px;
}
.breadcrumb a {
color: var(--primary);
text-decoration: none;
}
/* Difficulty Levels */
.difficulty-selector {
display: flex;
gap: 10px;
margin: 20px 0;
flex-wrap: wrap;
}
.difficulty-btn {
padding: 8px 16px;
border: 2px solid var(--border);
background: white;
border-radius: 20px;
cursor: pointer;
transition: all 0.3s;
}
.difficulty-btn.active {
background: var(--primary);
color: white;
border-color: var(--primary);
}
.difficulty-beginner {
border-color: var(--success);
}
.difficulty-intermediate {
border-color: var(--warning);
}
.difficulty-advanced {
border-color: var(--danger);
}
/* Container improvements */
.container {
background: rgba(255, 255, 255, 0.9);
border: 1px solid var(--border);
border-radius: 12px;
box-shadow: var(--shadow);
padding: 20px;
margin-bottom: 20px;
transition: all 0.3s ease;
position: relative;
}
.container:hover {
transform: translateY(-2px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.container-title {
line-height: 1.2;
cursor: pointer;
}
.container-title h3 {
margin-bottom: 8px;
font-size: 1.4em;
display: flex;
align-items: center;
gap: 12px;
}
.container-title h5 {
color: #6b7280;
margin-top: 0;
font-weight: normal;
margin-bottom: 15px;
}
/* New category styles */
.category-security {
border-left: 4px solid var(--danger);
}
.category-basics {
border-left: 4px solid var(--primary);
}
.category-advanced {
border-left: 4px solid var(--warning);
}
.category-help {
border-left: 4px solid var(--success);
}
/* Interactive elements */
.interactive {
background: var(--primary);
color: white;
padding: 12px 24px;
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
font-size: 16px;
min-height: 48px;
}
.interactive:hover {
background: var(--primary-dark);
transform: translateY(-1px);
}
.interactive-special {
background: var(--primary-light);
color: var(--primary);
border: 2px solid var(--primary);
padding: 12px 24px;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
min-height: 48px;
}
.voice-btn {
background: var(--success);
color: white;
border: none;
padding: 12px 16px;
border-radius: 6px;
cursor: pointer;
margin: 5px;
font-size: 16px;
min-height: 48px;
}
.voice-btn:hover {
background: #15803d;
}
/* Search improvements */
#search {
padding: 16px 20px;
font-size: 18px;
border: 2px solid var(--border);
border-radius: 10px;
width: 100%;
box-sizing: border-box;
min-height: 56px;
}
#search:focus {
outline: 3px solid var(--primary);
border-color: var(--primary);
}
/* Step improvements */
.step-list {
counter-reset: step-counter;
padding-left: 0;
}
.step-list li {
counter-increment: step-counter;
margin-bottom: 20px;
position: relative;
padding-left: 50px;
list-style: none;
}
.step-list li::before {
content: counter(step-counter);
position: absolute;
left: 0;
top: 0;
background: var(--primary);
color: white;
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 16px;
}
/* Enhanced tip box */
.tip-box {
background: linear-gradient(135deg, #fef3c7, #fde68a);
border: 1px solid #f59e0b;
border-radius: 10px;
padding: 16px;
margin: 15px 0;
position: relative;
}
.tip-box::before {
content: "💡";
font-size: 24px;
position: absolute;
top: 16px;
right: 16px;
}
/* Security warning box */
.warning-box {
background: linear-gradient(135deg, #fecaca, #fca5a5);
border: 1px solid var(--danger);
border-radius: 10px;
padding: 16px;
margin: 15px 0;
position: relative;
}
.warning-box::before {
content: "⚠️";
font-size: 24px;
position: absolute;
top: 16px;
right: 16px;
}
/* Success box */
.success-box {
background: linear-gradient(135deg, #d1fae5, #a7f3d0);
border: 1px solid var(--success);
border-radius: 10px;
padding: 16px;
margin: 15px 0;
position: relative;
}
.success-box::before {
content: "✅";
font-size: 24px;
position: absolute;
top: 16px;
right: 16px;
}
/* Toggle improvements */
.toggle-icon {
background: var(--primary-light);
color: var(--primary);
padding: 12px 20px;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
display: inline-block;
font-weight: 600;
border: 2px solid transparent;
min-height: 48px;
display: flex;
align-items: center;
justify-content: center;
}
.toggle-icon:hover {
background: var(--primary);
color: white;
transform: translateY(-2px);
}
/* Media improvements */
video,
img {
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Responsive improvements */
@media (max-width: 768px) {
.accessibility-controls {
position: relative;
top: auto;
right: auto;
flex-direction: row;
justify-content: center;
margin: 20px 0;
}
.difficulty-selector {
justify-content: center;
}
body {
padding: 15px;
}
}
/* Quiz styles */
.quiz-container {
background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
border-radius: 12px;
padding: 20px;
margin: 20px 0;
}
.quiz-question {
font-weight: 600;
margin-bottom: 15px;
font-size: 1.1em;
}
.quiz-options {
display: flex;
flex-direction: column;
gap: 10px;
}
.quiz-option {
background: white;
border: 2px solid var(--border);
padding: 12px;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s;
}
.quiz-option:hover {
border-color: var(--primary);
background: var(--primary-light);
}
.quiz-option.correct {
border-color: var(--success);
background: #d1fae5;
}
.quiz-option.incorrect {
border-color: var(--danger);
background: #fecaca;
}
</style>
</head>
<body>
<!-- Accessibility Controls -->
<div class="accessibility-controls">
<button class="control-btn" onclick="increaseFontSize()" title="Schrift vergrößern">
<i class="fas fa-plus"></i>
</button>
<button class="control-btn" onclick="decreaseFontSize()" title="Schrift verkleinern">
<i class="fas fa-minus"></i>
</button>
<button class="control-btn" onclick="toggleDarkMode()" title="Dunkler/Heller Modus">
<i class="fas fa-moon" id="darkModeIcon"></i>
</button>
</div>
<header>
<div style="display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 20px">
<img
style="max-width: 20%; max-height: 20%; filter: invert()"
src="https://raw.githubusercontent.com/404-Code-Studio/SmartGuide/main/20250814_1453_SmartGuide%20Logo%20Design_simple_compose_01k2ma6t3ef74a2f6421mpkn5z.png" />
<div>
<h1 style="margin: 0; color: var(--primary)">SmartGuide</h1>
<p style="margin: 5px 0; color: #6b7280">Ihr freundlicher IPhone-Begleiter</p>
</div>
</div>
<!-- Progress Bar -->
<div class="progress-bar">
<div class="progress-fill" id="progressBar"></div>
</div>
<p style="text-align: center; color: #6b7280; margin: 5px 0">
Ihr Fortschritt: <span id="progressText">0%</span>
</p>
<!-- Breadcrumb Navigation -->
<div class="breadcrumb" id="breadcrumb">
<i class="fas fa-home"></i> <a href="#" onclick="goHome()">Startseite</a>
</div>
<!-- Difficulty Selector -->
<div class="difficulty-selector">
<button class="difficulty-btn difficulty-beginner active" onclick="setDifficulty('beginner')">
<i class="fas fa-seedling"></i> Anfänger
</button>
<button class="difficulty-btn difficulty-intermediate" onclick="setDifficulty('intermediate')">
<i class="fas fa-star-half-alt"></i> Fortgeschritten
</button>
<button class="difficulty-btn difficulty-advanced" onclick="setDifficulty('advanced')">
<i class="fas fa-crown"></i> Experte
</button>
</div>
<!-- Search -->
<div style="display: flex; align-items: center; gap: 15px; margin: 20px 0">
<label style="min-width: 80px; font-weight: 600" for="search">
<i class="fas fa-search"></i> Suchen:
</label>
<input
type="search"
id="search"
placeholder="Was möchten Sie lernen? (z.B. 'Nachrichten', 'Sicherheit')"
list="suchbegriffe" />
<datalist id="suchbegriffe">
<option value="Nachrichten"></option>
<option value="Anrufe"></option>
<option value="Apps"></option>
<option value="WLAN"></option>
<option value="Kontakte"></option>
<option value="Sicherheit"></option>
<option value="Fotos"></option>
<option value="Notfall"></option>
</datalist>
</div>
</header>
<main>
<!-- Grundlagen Section -->
<section id="basics-section">
<hr style="margin: 30px 0" />
<h2 style="color: var(--primary); text-align: center">
<i class="fas fa-graduation-cap"></i> Grundlagen
</h2>
<!-- Existing containers with improvements -->
<div class="container category-basics" data-topic="nachrichten" data-difficulty="beginner">
<div class="container-title" onClick="toggleContent('Text_Nachrichten', this)">
<h3><i class="fa-solid fa-comments"></i> Nachrichten</h3>
<h5>Verschicken und empfangen von E-Mails, SMS oder WhatsApp-Nachrichten</h5>
<div class="toggle-icon"><i class="fas fa-chevron-down"></i> Jetzt lernen</div>
</div>
<div id="Text_Nachrichten" style="display: none">
<hr />
<div style="margin: 15px 0">
<button class="voice-btn" onclick="readContainer('Text_Nachrichten')">
<i class="fas fa-volume-up"></i> Vorlesen
</button>
<button class="voice-btn" onclick="window.speechSynthesis.cancel();">
<i class="fas fa-stop"></i> Stoppen
</button>
</div>
<p><strong>Nachrichten verschicken - so einfach geht's:</strong></p>
<ol class="step-list">
<li>
<strong>App finden:</strong> Wischen Sie vom oberen Bildschirmrand nach unten für die
Suche.
</li>
<li>
<strong>App öffnen:</strong> Tippen Sie "WhatsApp" oder "Nachrichten" ein und wählen die
App aus.
</li>
<li>
<strong>Kontakt wählen:</strong> Suchen Sie den gewünschten Kontakt und tippen auf die
Unterhaltung.
</li>
<li>
<strong>Nachricht schreiben:</strong> Tippen Sie ins Textfeld und schreiben Ihre
Nachricht.
</li>
<li><strong>Senden:</strong> Tippen Sie auf den Pfeil-Button zum Versenden.</li>
</ol>
<div class="tip-box">
<strong>Profi-Tipp:</strong> Wenn Ihr Kontakt antwortet, wissen Sie sicher, dass die
Nachricht angekommen ist. Bei WhatsApp sehen Sie auch blaue Häkchen als Bestätigung.
</div>
<div class="quiz-container">
<div class="quiz-question">
<i class="fas fa-question-circle"></i> Quiz: Wie öffnen Sie die Suchfunktion auf dem
iPhone?
</div>
<div class="quiz-options">
<div class="quiz-option" onclick="selectQuizAnswer(this, false)">
Von unten nach oben wischen
</div>
<div class="quiz-option" onclick="selectQuizAnswer(this, true)">
Von oben nach unten wischen
</div>
<div class="quiz-option" onclick="selectQuizAnswer(this, false)">
Home-Button zweimal drücken
</div>
</div>
</div>
<button
class="interactive"
onClick="toggleContent('Text_Nachrichten', this.closest('.container').querySelector('.container-title'))">
<i class="fas fa-times"></i> Schließen
</button>
</div>
</div>
<!-- More improved containers... -->
<div class="container category-basics" data-topic="anrufe" data-difficulty="beginner">
<div class="container-title" onClick="toggleContent('Text_Anrufe', this)">
<h3><i class="fa-solid fa-phone-volume"></i> Anrufe</h3>
<h5>Telefonate führen und entgegennehmen</h5>
<div class="toggle-icon"><i class="fas fa-chevron-down"></i> Jetzt lernen</div>
</div>
<div id="Text_Anrufe" style="display: none">
<hr />
<div style="margin: 15px 0">
<button class="voice-btn" onclick="readContainer('Text_Anrufe')">
<i class="fas fa-volume-up"></i> Vorlesen
</button>
<button class="voice-btn" onclick="window.speechSynthesis.cancel();">
<i class="fas fa-stop"></i> Stoppen
</button>
</div>
<h4><i class="fas fa-phone"></i> Anrufe tätigen:</h4>
<ol class="step-list">
<li>Öffnen Sie die grüne "Telefon"-App</li>
<li>Wählen Sie zwischen "Kontakte" oder "Ziffernblock"</li>
<li>Tippen Sie auf den grünen Anruf-Button</li>
</ol>
<h4><i class="fas fa-phone-alt"></i> Anrufe annehmen:</h4>
<ol class="step-list">
<li>Bei eingehendem Anruf erscheint der Anruf-Bildschirm</li>
<li>Grüner Button nach rechts = Annehmen</li>
<li>Roter Button nach links = Ablehnen</li>
</ol>
<div class="tip-box">
<strong>Nützliche Funktionen während des Anrufs:</strong> "Stumm" schaltet Ihr Mikrofon aus,
"Lautsprecher" aktiviert die Freisprechfunktion.
</div>
<button
class="interactive"
onClick="toggleContent('Text_Anrufe', this.closest('.container').querySelector('.container-title'))">
<i class="fas fa-times"></i> Schließen
</button>
</div>
</div>
</section>
<!-- New Security Section -->
<section id="security-section">
<hr style="margin: 30px 0" />
<h2 style="color: var(--danger); text-align: center">
<i class="fas fa-shield-alt"></i> Sicherheit & Schutz
</h2>
<div class="container category-security" data-topic="sicherheit" data-difficulty="beginner">
<div class="container-title" onClick="toggleContent('Text_Sicherheit', this)">
<h3><i class="fa-solid fa-shield-halved"></i> Betrugsmaschen erkennen</h3>
<h5>Schützen Sie sich vor Betrügern am Telefon und online</h5>
<div class="toggle-icon"><i class="fas fa-chevron-down"></i> Wichtig zu wissen</div>
</div>
<div id="Text_Sicherheit" style="display: none">
<hr />
<div style="margin: 15px 0">
<button class="voice-btn" onclick="readContainer('Text_Sicherheit')">
<i class="fas fa-volume-up"></i> Vorlesen
</button>
<button class="voice-btn" onclick="window.speechSynthesis.cancel();">
<i class="fas fa-stop"></i> Stoppen
</button>
</div>
<div class="warning-box">
<strong>Achtung vor diesen Betrugsmaschen:</strong>
</div>
<h4><i class="fas fa-exclamation-triangle"></i> Häufige Betrugsversuche:</h4>
<ul>
<li>
<strong>Enkeltrick:</strong> Anrufer geben sich als Verwandte aus und bitten um Geld
</li>
<li><strong>Falsche Polizisten:</strong> Behaupten, Ihr Geld sei in Gefahr</li>
<li><strong>Phishing-SMS:</strong> Gefälschte Nachrichten von Banken oder Paketdiensten</li>
<li><strong>Fake-Apps:</strong> Nachgemachte Banking-Apps im App Store</li>
</ul>
<h4><i class="fas fa-shield-virus"></i> So schützen Sie sich:</h4>
<ol class="step-list">
<li><strong>Niemals persönliche Daten am Telefon preisgeben</strong></li>
<li>
<strong>Bei verdächtigen Anrufen auflegen</strong> und bei der echten Nummer zurückrufen
</li>
<li><strong>Links in SMS nicht anklicken</strong> - immer die offizielle App öffnen</li>
<li><strong>Apps nur aus dem offiziellen App Store</strong> herunterladen</li>
</ol>
<div class="success-box">
<strong>Merksatz:</strong> Seriöse Unternehmen und Behörden fragen niemals am Telefon oder
per SMS nach Passwörtern, PINs oder persönlichen Daten!
</div>
<button
class="interactive"
onClick="toggleContent('Text_Sicherheit', this.closest('.container').querySelector('.container-title'))">
<i class="fas fa-times"></i> Schließen
</button>
</div>
</div>
<div class="container category-security" data-topic="notfall" data-difficulty="beginner">
<div class="container-title" onClick="toggleContent('Text_Notfall', this)">
<h3><i class="fa-solid fa-ambulance"></i> Notfall-Funktionen</h3>
<h5>Schnell Hilfe rufen und Standort teilen</h5>
<div class="toggle-icon"><i class="fas fa-chevron-down"></i> Kann Leben retten</div>
</div>
<div id="Text_Notfall" style="display: none">
<hr />
<div style="margin: 15px 0">
<button class="voice-btn" onclick="readContainer('Text_Notfall')">
<i class="fas fa-volume-up"></i> Vorlesen
</button>
<button class="voice-btn" onclick="window.speechSynthesis.cancel();">
<i class="fas fa-stop"></i> Stoppen
</button>
</div>
<div class="warning-box">
<strong>Im Notfall jede Sekunde zählt!</strong> Diese Funktionen können Leben retten.
</div>
<h4><i class="fas fa-phone-alt"></i> Notruf absetzen:</h4>
<ol class="step-list">
<li><strong>Schnellzugriff:</strong> 5x den Ein-/Ausschalter drücken für SOS-Modus</li>
<li><strong>Oder klassisch:</strong> Telefon-App öffnen und 112 wählen</li>
<li><strong>Sprechen Sie deutlich:</strong> "Wo ist was passiert?"</li>
<li><strong>Nicht auflegen</strong> bis die Leitstelle es sagt</li>
</ol>
<h4><i class="fas fa-map-marker-alt"></i> Standort teilen:</h4>
<ol class="step-list">
<li>WhatsApp öffnen und Chat wählen</li>
<li>Auf das Plus-Symbol tippen</li>
<li>"Standort" auswählen</li>
<li>"Live-Standort teilen" für Echtzeitverfolgung</li>
</ol>
<div class="tip-box">
<strong>ICE-Kontakte einrichten:</strong> Gehen Sie zu Kontakte → "Notfallpass" und fügen
wichtige Kontakte hinzu. Diese sind auch bei gesperrtem Handy erreichbar.
</div>
<button
class="interactive"
onClick="toggleContent('Text_Notfall', this.closest('.container').querySelector('.container-title'))">
<i class="fas fa-times"></i> Schließen
</button>
</div>
</div>
</section>
<!-- New Advanced Features Section -->
<section id="advanced-section">
<hr style="margin: 30px 0" />
<h2 style="color: var(--warning); text-align: center">
<i class="fas fa-star"></i> Erweiterte Funktionen
</h2>
<div class="container category-advanced" data-topic="fotos" data-difficulty="intermediate">
<div class="container-title" onClick="toggleContent('Text_Fotos', this)">
<h3><i class="fa-solid fa-camera"></i> Fotos & Videos</h3>
<h5>Aufnehmen, bearbeiten und teilen</h5>
<div class="toggle-icon">
<i class="fas fa-chevron-down"></i> Entdecken Sie die Möglichkeiten
</div>
</div>
<div id="Text_Fotos" style="display: none">
<hr />
<div style="margin: 15px 0">
<button class="voice-btn" onclick="readContainer('Text_Fotos')">
<i class="fas fa-volume-up"></i> Vorlesen
</button>
<button class="voice-btn" onclick="window.speechSynthesis.cancel();">
<i class="fas fa-stop"></i> Stoppen
</button>
</div>
<h4><i class="fas fa-camera"></i> Fotos aufnehmen:</h4>
<ol class="step-list">
<li>Kamera-App öffnen (meist auf dem Homebildschirm)</li>
<li>Motiv im Sucher zentrieren</li>
<li>Auf den weißen Auslöser-Kreis tippen</li>
<li>Foto wird automatisch gespeichert</li>
</ol>
<h4><i class="fas fa-share"></i> Fotos teilen:</h4>
<ol class="step-list">
<li>Fotos-App öffnen</li>
<li>Gewünschtes Foto antippen</li>
<li>Auf das Teilen-Symbol tippen (Quadrat mit Pfeil)</li>
<li>WhatsApp, E-Mail oder andere App wählen</li>
</ol>
<div class="tip-box">
<strong>Foto-Tipp:</strong> Halten Sie das Handy ruhig und achten Sie auf gutes Licht. Bei
schlechten Lichtverhältnissen tippen Sie auf das gelbe Blitz-Symbol.
</div>
<button
class="interactive"
onClick="toggleContent('Text_Fotos', this.closest('.container').querySelector('.container-title'))">
<i class="fas fa-times"></i> Schließen
</button>
</div>
</div>
<div class="container category-advanced" data-topic="navigation" data-difficulty="intermediate">
<div class="container-title" onClick="toggleContent('Text_Navigation', this)">
<h3><i class="fa-solid fa-map"></i> Navigation & Karten</h3>
<h5>Mit Google Maps ans Ziel finden</h5>
<div class="toggle-icon"><i class="fas fa-chevron-down"></i> Nie wieder verfahren</div>
</div>
<div id="Text_Navigation" style="display: none">
<hr />
<div style="margin: 15px 0">
<button class="voice-btn" onclick="readContainer('Text_Navigation')">
<i class="fas fa-volume-up"></i> Vorlesen
</button>
<button class="voice-btn" onclick="window.speechSynthesis.cancel();">
<i class="fas fa-stop"></i> Stoppen
</button>
</div>
<h4><i class="fas fa-route"></i> Route planen:</h4>
<ol class="step-list">
<li>"Karten" oder "Google Maps" App öffnen</li>
<li>Zieladresse in die Suchleiste eingeben</li>
<li>Auf "Route" tippen</li>
<li>Verkehrsmittel wählen (Auto, ÖPNV, zu Fuß)</li>
<li>"Los" antippen für Sprachnavigation</li>
</ol>
<h4><i class="fas fa-bus"></i> Öffentliche Verkehrsmittel:</h4>
<ol class="step-list">
<li>In Google Maps das Bus-Symbol wählen</li>
<li>Abfahrtszeiten werden automatisch angezeigt</li>
<li>Verschiedene Verbindungen vergleichen</li>
<li>Ticket-Apps werden oft vorgeschlagen</li>
</ol>
<div class="success-box">
<strong>Profi-Tipp:</strong> Aktivieren Sie die Standortfreigabe, damit die App Ihren
aktuellen Standort als Startpunkt verwendet.
</div>
<button
class="interactive"
onClick="toggleContent('Text_Navigation', this.closest('.container').querySelector('.container-title'))">
<i class="fas fa-times"></i> Schließen
</button>
</div>
</div>
</section>
<!-- Help & Support Section -->
<section id="help-section">
<hr style="margin: 30px 0" />
<h2 style="color: var(--success); text-align: center">
<i class="fas fa-life-ring"></i> Hilfe & Unterstützung
</h2>
<div class="container category-help" data-topic="hilfe" data-difficulty="beginner">
<div class="container-title" onClick="toggleContent('Text_FAQ', this)">
<h3><i class="fa-solid fa-question-circle"></i> Häufige Fragen</h3>
<h5>Antworten auf die wichtigsten IPhone-Fragen</h5>
<div class="toggle-icon"><i class="fas fa-chevron-down"></i> Hier finden Sie Antworten</div>
</div>
<div id="Text_FAQ" style="display: none">
<hr />
<div style="margin: 20px 0">
<h4><i class="fas fa-battery-quarter"></i> "Mein Akku ist schnell leer - was tun?"</h4>
<p>
<strong>Antwort:</strong> Verringern Sie die Bildschirmhelligkeit, schließen Sie
ungenutzte Apps und aktivieren Sie den Energiesparmodus in den Einstellungen.
</p>
</div>
<div style="margin: 20px 0">
<h4><i class="fas fa-wifi"></i> "WLAN verbindet nicht - was ist falsch?"</h4>
<p>
<strong>Antwort:</strong> Prüfen Sie das Passwort, schalten Sie WLAN aus und wieder ein,
oder starten Sie das Handy neu.
</p>
</div>
<div style="margin: 20px 0">
<h4><i class="fas fa-memory"></i> "Speicher voll - was kann ich löschen?"</h4>
<p>
<strong>Antwort:</strong> Löschen Sie alte Fotos/Videos, leeren Sie den Papierkorb und
entfernen Sie ungenutzte Apps.
</p>
</div>
<div style="margin: 20px 0">
<h4><i class="fas fa-mobile-alt"></i> "Display reagiert nicht richtig?"</h4>
<p>
<strong>Antwort:</strong> Reinigen Sie das Display vorsichtig mit einem weichen Tuch und
starten Sie das Gerät neu.
</p>
</div>
<button
class="interactive"
onClick="toggleContent('Text_FAQ', this.closest('.container').querySelector('.container-title'))">
<i class="fas fa-times"></i> Schließen
</button>
</div>
</div>
<div class="container category-help" data-topic="kontakt" data-difficulty="beginner">
<div class="container-title" onClick="toggleContent('Text_Kontakt', this)">
<h3><i class="fa-solid fa-headset"></i> Weitere Hilfe</h3>
<h5>Wenn Sie nicht weiterkommen</h5>
<div class="toggle-icon"><i class="fas fa-chevron-down"></i> Unterstützung finden</div>
</div>
<div id="Text_Kontakt" style="display: none">
<hr />
<h4><i class="fas fa-users"></i> Wo Sie Hilfe bekommen:</h4>
<ul style="list-style: none; padding-left: 0">
<li style="margin: 15px 0; padding: 15px; background: #f8fafc; border-radius: 8px">
<strong><i class="fas fa-family"></i> Familie & Freunde:</strong><br />
Bitten Sie Ihre Kinder oder Enkel um Hilfe - sie erklären gerne!
</li>
<li style="margin: 15px 0; padding: 15px; background: #f8fafc; border-radius: 8px">
<strong><i class="fas fa-store"></i> Handy-Geschäfte:</strong><br />
Viele Anbieter bieten kostenlose Einführungen für Senioren
</li>
<li style="margin: 15px 0; padding: 15px; background: #f8fafc; border-radius: 8px">
<strong><i class="fas fa-graduation-cap"></i> Volkshochschule:</strong><br />
IPhone-Kurse speziell für Senioren
</li>
<li style="margin: 15px 0; padding: 15px; background: #f8fafc; border-radius: 8px">
<strong><i class="fas fa-phone"></i> Herstellersupport:</strong><br />
Apple: 0800 6645 451 (kostenlos)<br />
Samsung: 06196 77 555 77
</li>
</ul>
<div class="tip-box">
<strong>Unser Tipp:</strong> Scheuen Sie sich nicht, um Hilfe zu bitten! Jeder hat einmal
angefangen, und die meisten Menschen helfen gerne.
</div>
<button
class="interactive"
onClick="toggleContent('Text_Kontakt', this.closest('.container').querySelector('.container-title'))">
<i class="fas fa-times"></i> Schließen
</button>
</div>
</div>
</section>
<!-- Achievement System -->
<section id="achievements" style="margin-top: 40px">
<hr />
<h3 style="text-align: center; color: var(--primary)"><i class="fas fa-trophy"></i> Ihre Erfolge</h3>
<div
id="achievementContainer"
style="display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin: 20px 0">
<!-- Achievements will be added by JavaScript -->
</div>
</section>
</main>
<footer
style="
margin-top: 40px;
text-align: center;
color: #6b7280;
border-top: 1px solid var(--border);
padding-top: 20px;
">
<p>
<i class="fas fa-heart" style="color: #ef4444"></i> Erstellt mit Liebe für alle, die ihr IPhone besser
verstehen möchten
</p>
<p style="font-size: 14px">
Erstellt von
<a href="https://github.com/orgs/404-Code-Studio/repositories"
><i class="fa-brands fa-github"></i> 404-Code Studios</a
><br />
Version 2.1 - Fehler behoben
</p>
<p style="font-size: 10px">
Wir stehen in keiner Partnerschaft oder Verbindung zu <i class="fa-brands fa-apple"></i> Apple Inc.
<wbr />oder Samsung Electronics Co., Ltd
</p>
</footer>
<script>
// Enhanced JavaScript functionality
let currentFontSize = 18;
let isDarkMode = false;
let currentDifficulty = "beginner";
let completedTopics = JSON.parse(localStorage.getItem("completedTopics") || "[]");
let achievements = JSON.parse(localStorage.getItem("achievements") || "[]");
// Accessibility Functions
function increaseFontSize() {
if (currentFontSize < 24) {
currentFontSize += 2;