-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy-policy.html
More file actions
1011 lines (898 loc) · 35.2 KB
/
Copy pathprivacy-policy.html
File metadata and controls
1011 lines (898 loc) · 35.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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy — Banana Milk</title>
<meta name="description" content="Privacy Policy for Banana Milk - Safety Adventure game">
<meta name="theme-color" content="#F5A623">
<link rel="icon" href="/assets/images/icons/icon-192x192.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=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg-page: #FFF9F0;
--bg-card: #FFFFFF;
--text-primary: #2D1B0E;
--text-secondary: #6B5744;
--text-muted: #A08B76;
--accent: #F5A623;
--accent-dark: #D4891A;
--accent-light: #FFF3DE;
--banana: #FFE066;
--milk: #FFF8EB;
--pink: #FFB5C2;
--mint: #A8E6CF;
--sky: #87CEEB;
--lavender: #C5A3FF;
--border: #F0E4D4;
--border-light: #FAF4EB;
--shadow-sm: 0 2px 8px rgba(45, 27, 14, 0.06);
--shadow-md: 0 4px 16px rgba(45, 27, 14, 0.08);
--shadow-lg: 0 8px 32px rgba(45, 27, 14, 0.10);
--radius: 20px;
--radius-sm: 14px;
--font-body: 'Nunito', system-ui, -apple-system, sans-serif;
--font-heading: 'Fredoka', 'Nunito', system-ui, sans-serif;
}
/* Progress Bar */
#progress-bar {
position: fixed;
top: 0;
left: 0;
height: 4px;
background: linear-gradient(90deg, var(--accent), var(--banana), var(--pink), var(--mint));
background-size: 300% 100%;
animation: progressShimmer 3s ease infinite;
z-index: 1000;
transition: width 50ms linear;
will-change: width;
border-radius: 0 4px 4px 0;
}
@keyframes progressShimmer {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
/* Section reveal animation */
@keyframes fadeSlideUp {
from {
opacity: 0;
transform: translateY(16px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.section {
animation: fadeSlideUp 0.4s ease-out both;
}
.section:nth-child(2) { animation-delay: 0.05s; }
.section:nth-child(3) { animation-delay: 0.1s; }
.section:nth-child(4) { animation-delay: 0.15s; }
.section:nth-child(5) { animation-delay: 0.2s; }
.section:nth-child(6) { animation-delay: 0.25s; }
.section:nth-child(7) { animation-delay: 0.3s; }
.section:nth-child(8) { animation-delay: 0.35s; }
@media (prefers-reduced-motion: reduce) {
#progress-bar {
animation: none;
}
.section {
animation: none;
opacity: 1;
transform: none;
}
html {
scroll-behavior: auto;
}
*, *::before, *::after {
transition-duration: 0.01ms !important;
animation-duration: 0.01ms !important;
}
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-body);
font-size: 17px;
line-height: 1.7;
color: var(--text-primary);
background: var(--bg-page);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Header */
.header {
background: var(--bg-card);
border-bottom: 3px solid var(--border);
padding: 16px 0;
}
.header-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 32px;
display: flex;
align-items: center;
justify-content: space-between;
}
.header-brand {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
color: var(--text-primary);
cursor: pointer;
transition: transform 0.2s ease;
}
.header-brand:hover {
transform: scale(1.03);
}
.header-brand img {
width: 40px;
height: 40px;
border-radius: 12px;
border: 2px solid var(--border);
}
.header-brand span {
font-family: var(--font-heading);
font-weight: 700;
font-size: 20px;
color: var(--accent-dark);
}
.header-back {
font-family: var(--font-body);
font-size: 14px;
font-weight: 700;
color: var(--bg-card);
background: var(--accent);
text-decoration: none;
display: flex;
align-items: center;
gap: 6px;
padding: 8px 18px;
border-radius: 100px;
border: 2px solid var(--accent-dark);
cursor: pointer;
transition: background 0.2s ease, transform 0.2s ease;
}
.header-back:hover {
background: var(--accent-dark);
transform: translateY(-1px);
}
.header-back:focus-visible {
outline: 3px solid var(--accent);
outline-offset: 2px;
}
/* Hero */
.hero {
background: linear-gradient(180deg, var(--milk) 0%, var(--bg-page) 100%);
border-bottom: 3px solid var(--border);
padding: 56px 32px 48px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before,
.hero::after {
content: '';
position: absolute;
border-radius: 50%;
opacity: 0.15;
pointer-events: none;
}
.hero::before {
width: 200px;
height: 200px;
background: var(--pink);
top: -40px;
left: -60px;
}
.hero::after {
width: 160px;
height: 160px;
background: var(--mint);
bottom: -30px;
right: -40px;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--bg-card);
color: var(--accent-dark);
font-family: var(--font-heading);
font-size: 14px;
font-weight: 600;
padding: 8px 18px;
border-radius: 100px;
margin-bottom: 20px;
border: 2px solid var(--border);
box-shadow: var(--shadow-sm);
}
.hero h1 {
font-family: var(--font-heading);
font-size: 44px;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 12px;
letter-spacing: -0.01em;
position: relative;
}
.hero-meta {
font-size: 15px;
font-weight: 500;
color: var(--text-secondary);
}
/* Layout */
.layout {
max-width: 1200px;
margin: 0 auto;
padding: 48px 32px 96px;
display: grid;
grid-template-columns: 260px 1fr;
gap: 56px;
align-items: start;
}
/* Sidebar */
.sidebar {
position: sticky;
top: 32px;
}
.toc-label {
font-family: var(--font-heading);
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--text-muted);
margin-bottom: 16px;
}
.toc {
list-style: none;
display: flex;
flex-direction: column;
gap: 4px;
}
.toc a {
display: block;
font-size: 14px;
font-weight: 600;
color: var(--text-secondary);
text-decoration: none;
padding: 9px 16px;
border-left: 3px solid transparent;
border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
cursor: pointer;
transition: all 0.2s ease;
}
.toc a:hover {
color: var(--text-primary);
background: var(--accent-light);
}
.toc a:focus-visible {
outline: 3px solid var(--accent);
outline-offset: -2px;
}
.toc a.active {
color: var(--accent-dark);
font-weight: 700;
border-left-color: var(--accent);
background: var(--accent-light);
}
/* Content */
.content {
max-width: 65ch;
}
.section {
background: var(--bg-card);
border: 3px solid var(--border);
border-radius: var(--radius);
padding: 36px 40px;
margin-bottom: 20px;
box-shadow: var(--shadow-sm);
transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.section:hover {
box-shadow: var(--shadow-md);
border-color: var(--accent-light);
}
.section-header {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 24px;
}
.section-icon {
width: 44px;
height: 44px;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
flex-shrink: 0;
border: 2px solid transparent;
}
.section-icon.blue { background: #DBEAFE; border-color: #BFDBFE; }
.section-icon.green { background: #DCFCE7; border-color: #BBF7D0; }
.section-icon.purple { background: #F3E8FF; border-color: #E9D5FF; }
.section-icon.orange { background: #FFEDD5; border-color: #FED7AA; }
.section-icon.red { background: #FEE2E2; border-color: #FECACA; }
.section-icon.teal { background: #CCFBF1; border-color: #A7F3D0; }
.section-icon.yellow { background: #FEF9C3; border-color: #FEF08A; }
.section-icon.indigo { background: #E0E7FF; border-color: #C7D2FE; }
.section h2 {
font-family: var(--font-heading);
font-size: 23px;
font-weight: 700;
color: var(--text-primary);
}
.section h3 {
font-family: var(--font-heading);
font-size: 17px;
font-weight: 600;
color: var(--text-primary);
margin-top: 28px;
margin-bottom: 12px;
}
.section h3:first-of-type {
margin-top: 0;
}
.section p {
margin-bottom: 16px;
color: var(--text-primary);
line-height: 1.7;
}
.section ul {
list-style: none;
margin-bottom: 20px;
}
.section ul li {
position: relative;
padding-left: 26px;
margin-bottom: 10px;
line-height: 1.65;
}
.section ul li::before {
content: '';
position: absolute;
left: 0;
top: 10px;
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--accent);
border: 2px solid var(--accent-dark);
}
.section strong {
font-weight: 700;
color: var(--text-primary);
}
.section a {
color: var(--accent-dark);
text-decoration: none;
font-weight: 700;
border-bottom: 2px solid transparent;
cursor: pointer;
transition: border-color 0.2s ease;
}
.section a:hover {
border-bottom-color: var(--accent);
}
.section a:focus-visible {
outline: 3px solid var(--accent);
outline-offset: 2px;
border-radius: 2px;
}
/* Not-collected list with X icons */
.not-collected li::before {
content: '';
width: 8px;
height: 8px;
border-radius: 50%;
background: #FCA5A5;
border: 2px solid #EF4444;
top: 10px;
}
/* Services table */
.services-table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
margin: 16px 0 20px;
font-size: 15px;
border-radius: var(--radius-sm);
overflow: hidden;
border: 2px solid var(--border);
}
.services-table th {
text-align: left;
font-family: var(--font-heading);
font-weight: 600;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--text-muted);
padding: 12px 16px;
background: var(--border-light);
border-bottom: 2px solid var(--border);
}
.services-table td {
padding: 14px 16px;
border-bottom: 1px solid var(--border-light);
color: var(--text-primary);
vertical-align: top;
font-weight: 500;
}
.services-table tr:last-child td {
border-bottom: none;
}
.services-table tr:hover td {
background: var(--milk);
}
.services-table .provider {
color: var(--text-secondary);
font-size: 14px;
}
/* Intro card */
.intro-card {
background: linear-gradient(135deg, var(--accent-light) 0%, var(--milk) 100%);
border: 3px solid var(--border);
border-radius: var(--radius);
padding: 28px 32px;
margin-bottom: 20px;
font-size: 16px;
line-height: 1.7;
color: var(--text-primary);
box-shadow: var(--shadow-sm);
}
/* Contact card */
.contact-row {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 16px;
}
.contact-item {
display: flex;
align-items: center;
gap: 12px;
padding: 16px 20px;
background: var(--border-light);
border-radius: var(--radius-sm);
border: 2px solid var(--border);
font-size: 15px;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-item:hover {
border-color: var(--accent-light);
box-shadow: var(--shadow-sm);
}
.contact-item .label {
font-family: var(--font-heading);
font-weight: 600;
color: var(--text-secondary);
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.04em;
min-width: 70px;
}
.contact-item a {
color: var(--accent-dark);
text-decoration: none;
font-weight: 700;
cursor: pointer;
}
.contact-item a:hover {
text-decoration: underline;
}
.contact-item a:focus-visible {
outline: 3px solid var(--accent);
outline-offset: 2px;
}
/* Footer */
.footer {
text-align: center;
padding: 40px 32px;
border-top: 3px solid var(--border);
color: var(--text-muted);
font-family: var(--font-heading);
font-size: 14px;
font-weight: 500;
}
.footer a {
color: var(--accent-dark);
text-decoration: none;
cursor: pointer;
}
/* Mobile sidebar toggle */
.mobile-toc-toggle {
display: none;
}
/* Responsive */
@media (max-width: 900px) {
.layout {
grid-template-columns: 1fr;
gap: 0;
padding: 24px 20px 64px;
}
.sidebar {
position: relative;
top: 0;
margin-bottom: 24px;
}
.mobile-toc-toggle {
display: flex;
align-items: center;
gap: 8px;
width: 100%;
background: var(--bg-card);
border: 3px solid var(--border);
border-radius: var(--radius);
padding: 14px 20px;
font-family: var(--font-heading);
font-size: 15px;
font-weight: 600;
color: var(--text-primary);
cursor: pointer;
margin-bottom: 8px;
transition: border-color 0.2s ease;
}
.mobile-toc-toggle:hover {
border-color: var(--accent);
}
.mobile-toc-toggle:focus-visible {
outline: 3px solid var(--accent);
outline-offset: 2px;
}
.mobile-toc-toggle svg {
transition: transform 0.2s ease;
}
.mobile-toc-toggle.open svg {
transform: rotate(180deg);
}
.toc-wrapper {
display: none;
background: var(--bg-card);
border: 3px solid var(--border);
border-radius: var(--radius);
padding: 16px 12px;
}
.toc-wrapper.open {
display: block;
}
.toc-label {
display: none;
}
.hero {
padding: 40px 20px 36px;
}
.hero h1 {
font-size: 32px;
}
.section {
padding: 28px 24px;
}
.header-inner {
padding: 0 20px;
}
.services-table {
font-size: 14px;
}
.services-table th,
.services-table td {
padding: 10px 10px;
}
}
@media (max-width: 480px) {
.hero h1 {
font-size: 28px;
}
.section h2 {
font-size: 20px;
}
.section-icon {
width: 38px;
height: 38px;
font-size: 17px;
border-radius: 12px;
}
body {
font-size: 16px;
}
.intro-card {
padding: 22px 20px;
}
}
</style>
</head>
<body>
<div id="progress-bar"></div>
<!-- Header -->
<header class="header">
<div class="header-inner">
<a href="/index.html" class="header-brand">
<img src="/assets/images/icons/icon-192x192.png" alt="Banana Milk">
<span>Banana Milk</span>
</a>
<a href="/index.html" class="header-back">
<svg width="14" height="14" viewBox="0 0 16 16" fill="none"><path d="M10 12L6 8L10 4" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
Back to Game
</a>
</div>
</header>
<!-- Hero -->
<div class="hero">
<div class="hero-badge">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>
Privacy & Safety
</div>
<h1>Privacy Policy</h1>
<p class="hero-meta">Last updated: February 19, 2026</p>
</div>
<!-- Layout -->
<div class="layout">
<!-- Sidebar -->
<aside class="sidebar">
<button class="mobile-toc-toggle" onclick="toggleToc()" aria-label="Toggle table of contents">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><path d="M6 9l6 6 6-6"/></svg>
Table of Contents
</button>
<div class="toc-wrapper">
<p class="toc-label">On this page</p>
<ul class="toc">
<li><a href="#information-we-collect" class="active">Information We Collect</a></li>
<li><a href="#how-we-use">How We Use Your Info</a></li>
<li><a href="#third-party">Third-Party Services</a></li>
<li><a href="#coppa">Children's Privacy</a></li>
<li><a href="#data-security">Data Storage & Security</a></li>
<li><a href="#data-retention">Data Retention & Deletion</a></li>
<li><a href="#changes">Policy Changes</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</div>
</aside>
<!-- Content -->
<main class="content">
<div class="intro-card">
This Privacy Policy applies to <strong>Banana Milk — Safety Adventure</strong>, available as a web application and on the Google Play Store. It is designed to comply with the Google Play Developer Policy, the Families Policy, and the Children's Online Privacy Protection Act (COPPA), as the Game's target audience includes children.
</div>
<!-- Section 1 -->
<section class="section" id="information-we-collect">
<div class="section-header">
<div class="section-icon blue">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#3B82F6" stroke-width="2.5"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg>
</div>
<h2>Information We Collect</h2>
</div>
<h3>Account Information</h3>
<p>To use the Game, users must create an account. We collect the following through Firebase Authentication:</p>
<ul>
<li><strong>Email address</strong> — required for account creation, sign-in, and email verification.</li>
<li><strong>Authentication method</strong> — email/password or Google OAuth sign-in.</li>
</ul>
<h3>Game Data</h3>
<p>We store the following game-related data in Firebase Firestore:</p>
<ul>
<li>Character selection (character name and ID)</li>
<li>Cat companion selection (cat name and ID)</li>
<li>Last updated timestamp</li>
</ul>
<h3>Story Mode Data</h3>
<p>When a user completes Story Mode, the Game generates a safety report based on in-game choices. This report:</p>
<ul>
<li>Is processed by Google's Gemini AI to generate educational safety insights.</li>
<li>Is sent to the parent's email address via EmailJS.</li>
<li>Contains only in-game story choices and responses — no personal data beyond the parent's email.</li>
</ul>
<h3>Data We Do NOT Collect</h3>
<ul class="not-collected">
<li>Precise location or GPS data</li>
<li>Photos, videos, or microphone recordings</li>
<li>Contact lists or phone numbers</li>
<li>Device identifiers for tracking or advertising</li>
<li>Browsing history or activity outside the Game</li>
</ul>
</section>
<!-- Section 2 -->
<section class="section" id="how-we-use">
<div class="section-header">
<div class="section-icon green">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#22c55e" stroke-width="2.5"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"/><polyline points="22 4 12 14.01 9 11.01"/></svg>
</div>
<h2>How We Use Your Information</h2>
</div>
<p>We use the collected information solely for:</p>
<ul>
<li><strong>Authentication</strong> — to verify user identity and secure accounts.</li>
<li><strong>Game functionality</strong> — to save character/cat selections so users can resume their game.</li>
<li><strong>Parental reports</strong> — to send safety education reports to parents via email after Story Mode completion.</li>
<li><strong>AI-generated insights</strong> — to provide age-appropriate safety education feedback using Google Gemini AI.</li>
</ul>
<p>We do <strong>not</strong> use any collected information for advertising, marketing, profiling, or selling to third parties.</p>
</section>
<!-- Section 3 -->
<section class="section" id="third-party">
<div class="section-header">
<div class="section-icon purple">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#a855f7" stroke-width="2.5"><rect x="2" y="7" width="20" height="14" rx="2" ry="2"/><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/></svg>
</div>
<h2>Third-Party Services</h2>
</div>
<table class="services-table">
<thead>
<tr>
<th>Service</th>
<th>Provider</th>
<th>Purpose</th>
</tr>
</thead>
<tbody>
<tr>
<td>Firebase Auth</td>
<td class="provider">Google</td>
<td>Sign-up, sign-in, email verification</td>
</tr>
<tr>
<td>Firebase Firestore</td>
<td class="provider">Google</td>
<td>Storing game selections</td>
</tr>
<tr>
<td>Gemini AI</td>
<td class="provider">Google</td>
<td>Generating safety education insights</td>
</tr>
<tr>
<td>EmailJS</td>
<td class="provider">EmailJS</td>
<td>Sending parental safety reports</td>
</tr>
</tbody>
</table>
<p>These services process data in accordance with their own privacy policies:</p>
<ul>
<li><a href="https://policies.google.com/privacy" target="_blank" rel="noopener">Google Privacy Policy</a></li>
<li><a href="https://www.emailjs.com/legal/privacy-policy/" target="_blank" rel="noopener">EmailJS Privacy Policy</a></li>
</ul>
<p>No analytics, tracking, or advertising SDKs are used in the Game.</p>
</section>
<!-- Section 4 -->
<section class="section" id="coppa">
<div class="section-header">
<div class="section-icon orange">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#f97316" stroke-width="2.5"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>
</div>
<h2>Children's Privacy (COPPA)</h2>
</div>
<p>The Game is designed for children and families. We comply with COPPA:</p>
<ul>
<li>We do <strong>not</strong> collect more information than is necessary for the Game to function.</li>
<li>We do <strong>not</strong> use persistent identifiers for behavioral tracking or targeted advertising.</li>
<li>We do <strong>not</strong> display any advertisements in the Game.</li>
<li>Parental email is used solely to deliver safety education reports.</li>
<li>Game data (character and cat selections) contains no personally identifiable information.</li>
</ul>
</section>
<!-- Section 5 -->
<section class="section" id="data-security">
<div class="section-header">
<div class="section-icon teal">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#14b8a6" stroke-width="2.5"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>
</div>
<h2>Data Storage & Security</h2>
</div>
<ul>
<li>Account data is stored securely in Firebase, hosted by Google Cloud.</li>
<li>Game selections are stored in Firebase Firestore with access restricted to the authenticated user.</li>
<li>We take reasonable measures to protect data from unauthorized access, loss, or misuse.</li>
<li>No data is stored on third-party servers beyond Firebase and EmailJS (for email delivery only).</li>
</ul>
</section>
<!-- Section 6 -->
<section class="section" id="data-retention">
<div class="section-header">
<div class="section-icon red">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#ef4444" stroke-width="2.5"><polyline points="3 6 5 6 21 6"/><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"/></svg>
</div>
<h2>Data Retention & Deletion</h2>
</div>
<ul>
<li>Game data is retained as long as the user's account is active.</li>
<li>Users can request account and data deletion by contacting us at the email below.</li>
<li>Upon deletion request, we will remove all associated data from Firebase within 30 days.</li>
</ul>
</section>
<!-- Section 7 -->
<section class="section" id="changes">
<div class="section-header">
<div class="section-icon yellow">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#eab308" stroke-width="2.5"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
</div>
<h2>Changes to This Policy</h2>
</div>
<p>We may update this Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page and updating the effective date at the top.</p>
<p>You are advised to review this Privacy Policy periodically for any changes.</p>
</section>
<!-- Section 8 -->
<section class="section" id="contact">
<div class="section-header">
<div class="section-icon indigo">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#6366f1" stroke-width="2.5"><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"/><polyline points="22,6 12,13 2,6"/></svg>
</div>
<h2>Contact Us</h2>
</div>
<p>If you have any questions about this Privacy Policy, or if you are a parent or guardian with concerns about your child's use of the Game, please reach out:</p>
<div class="contact-row">
<div class="contact-item">
<span class="label">Email</span>
<a href="mailto:sobhanra@icluod.com">sobhanra@icluod.com</a>
</div>
<div class="contact-item">
<span class="label">Website</span>
<a href="https://game.bananamilk.tech" target="_blank" rel="noopener">game.bananamilk.tech</a>
</div>
</div>
</section>
</main>
</div>
<!-- Footer -->
<footer class="footer">
<p>© 2026 Banana Milk — Safety Adventure. All rights reserved.</p>
</footer>
<script>
// Reading progress bar
const progressBar = document.getElementById('progress-bar');
window.addEventListener('scroll', () => {
const scrollTop = window.scrollY;
const docHeight = document.documentElement.scrollHeight - window.innerHeight;
const progress = docHeight > 0 ? (scrollTop / docHeight) * 100 : 0;
progressBar.style.width = progress + '%';
});
// ScrollSpy for Table of Contents
const sections = document.querySelectorAll('.section[id]');
const tocLinks = document.querySelectorAll('.toc a');
const observerOptions = {
rootMargin: '-80px 0px -60% 0px',
threshold: 0
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
tocLinks.forEach(link => link.classList.remove('active'));
const activeLink = document.querySelector(`.toc a[href="#${entry.target.id}"]`);
if (activeLink) activeLink.classList.add('active');
}
});
}, observerOptions);
sections.forEach(section => observer.observe(section));
// Mobile TOC toggle
function toggleToc() {
const wrapper = document.querySelector('.toc-wrapper');
const toggle = document.querySelector('.mobile-toc-toggle');
wrapper.classList.toggle('open');
toggle.classList.toggle('open');
}
// Close mobile TOC on link click
tocLinks.forEach(link => {
link.addEventListener('click', () => {