-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1398 lines (1356 loc) · 158 KB
/
Copy pathindex.html
File metadata and controls
1398 lines (1356 loc) · 158 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>
<link rel="canonical" href="https://appdevelopsk.com/">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="p:domain_verify" content="a793b72e8bd98c125473a3241273c305"/>
<title>SK APPS – Innovative Mobile Experiences</title>
<meta name="description" content="SK APPS creates fun, useful, and beautifully designed mobile apps. 98 apps available now on Google Play.">
<meta property="og:title" content="SK APPS – Innovative Mobile Experiences">
<meta property="og:description" content="Games, tools, AI-powered apps and more. 98 apps crafted with care.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://appdevelopsk.com">
<meta property="og:image" content="https://appdevelopsk.com/og-image.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="SK APPS – Innovative Mobile Experiences">
<meta name="twitter:description" content="Games, tools, AI-powered apps and more. 98 apps crafted with care.">
<meta name="twitter:image" content="https://appdevelopsk.com/og-image.png">
<link rel="icon" type="image/png" href="/logo.png">
<!-- Google AdSense -->
<!-- ===== Analytics: GA4 + Microsoft Clarity (SK APPS growth stack) ===== -->
<script>
// Fill after creating GA4 property (GA4 account: app.develop.sk) and Clarity project.
window.SK_GA_ID = 'G-5Z588FVC81'; // GA4 Measurement ID (account: app.develop.sk)
window.SK_CLARITY_ID = 'x9sdhzu2lt'; // Microsoft Clarity Project ID
</script>
<script>
// Google Analytics 4
(function () {
var id = window.SK_GA_ID;
if (!id || /X{4,}/.test(id)) return;
var s = document.createElement('script');
s.async = true;
s.src = 'https://www.googletagmanager.com/gtag/js?id=' + id;
document.head.appendChild(s);
window.dataLayer = window.dataLayer || [];
window.gtag = function () { dataLayer.push(arguments); };
gtag('js', new Date());
gtag('config', id);
})();
// Microsoft Clarity
(function (c, l, a, r, i) {
if (!i || /X{4,}/.test(i)) return;
c[a] = c[a] || function () { (c[a].q = c[a].q || []).push(arguments); };
var t = l.createElement(r); t.async = 1; t.src = 'https://www.clarity.ms/tag/' + i;
var y = l.getElementsByTagName(r)[0]; y.parentNode.insertBefore(t, y);
})(window, document, 'clarity', 'script', window.SK_CLARITY_ID);
// Download / cross-promo click tracking → GA4 events (fires once GA4 is live)
document.addEventListener('click', function (e) {
var a = e.target.closest && e.target.closest('a[href]');
if (!a || !window.gtag) return;
var href = a.getAttribute('href') || '';
if (/play\.google\.com|apps\.apple\.com/.test(href)) {
gtag('event', 'download_click', {
store: /apple/.test(href) ? 'app_store' : 'google_play',
location: a.closest('footer') ? 'footer' : (a.closest('.hero') ? 'hero' : 'other'),
link_url: href
});
} else if (a.classList.contains('app-card')) {
gtag('event', 'app_view', { app: href.replace(/^support\//, '').replace(/\/$/, '') });
} else if (/pickly\.blog|toolify365\.com|fxea365\.com/.test(href)) {
gtag('event', 'crosspromo_click', { link_url: href });
}
}, true);
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg-primary: #0a0a1a;
--bg-secondary: #111128;
--bg-card: #1a1a35;
--text-primary: #e8eaf0;
--text-secondary: #9498b0;
--accent: #6c7bff;
--accent-glow: rgba(108, 123, 255, 0.15);
--gradient-1: linear-gradient(135deg, #6c7bff, #a855f7);
--gradient-2: linear-gradient(135deg, #3b82f6, #6c7bff);
--radius: 16px;
}
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}
/* Navigation */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: rgba(10, 10, 26, 0.85);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(108, 123, 255, 0.1);
padding: 0 24px;
}
.nav-inner {
max-width: 1200px; margin: 0 auto;
display: flex; align-items: center; justify-content: space-between;
height: 64px;
}
.nav-logo {
font-size: 1.3rem; font-weight: 800;
background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
letter-spacing: -0.5px;
}
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
/* Language Selector */
.lang-selector {
position: relative;
}
.lang-btn {
background: var(--bg-card); border: 1px solid rgba(255,255,255,0.1);
color: var(--text-primary); padding: 6px 12px; border-radius: 8px;
font-size: 0.8rem; font-weight: 500; cursor: pointer;
display: flex; align-items: center; gap: 6px; transition: all 0.2s;
}
.lang-btn:hover { border-color: rgba(108, 123, 255, 0.3); }
.lang-btn svg { width: 14px; height: 14px; fill: var(--text-secondary); transition: transform 0.2s; }
.lang-selector.open .lang-btn svg { transform: rotate(180deg); }
.lang-dropdown {
display: none; position: absolute; top: 100%; right: 0; margin-top: 8px;
background: var(--bg-card); border: 1px solid rgba(255,255,255,0.1);
border-radius: 12px; padding: 8px; min-width: 180px;
box-shadow: 0 8px 32px rgba(0,0,0,0.4); z-index: 200;
max-height: 400px; overflow-y: auto;
}
.lang-selector.open .lang-dropdown { display: block; }
.lang-option {
padding: 8px 12px; border-radius: 8px; cursor: pointer;
font-size: 0.85rem; color: var(--text-secondary); transition: all 0.15s;
display: flex; align-items: center; gap: 8px;
}
.lang-option:hover { background: rgba(108, 123, 255, 0.1); color: var(--text-primary); }
.lang-option.active { color: var(--accent); font-weight: 600; }
/* Hero */
.hero {
min-height: 100vh; display: flex; align-items: center; justify-content: center;
text-align: center; padding: 120px 24px 80px;
position: relative; overflow: hidden;
}
.hero::before {
content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 50%);
animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 0.5; transform: scale(1); }
50% { opacity: 1; transform: scale(1.1); }
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
display: inline-block; padding: 6px 16px; border-radius: 20px;
background: var(--accent-glow); border: 1px solid rgba(108, 123, 255, 0.3);
font-size: 0.85rem; font-weight: 600; color: var(--accent);
margin-bottom: 24px;
}
.hero h1 {
font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800;
line-height: 1.1; margin-bottom: 20px; letter-spacing: -1.5px;
}
.hero h1 .gradient {
background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-secondary);
max-width: 600px; margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
display: inline-flex; align-items: center; gap: 8px;
padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 0.95rem;
text-decoration: none; transition: all 0.3s;
}
.btn-primary {
background: var(--gradient-1); color: #fff;
box-shadow: 0 4px 20px rgba(108, 123, 255, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108, 123, 255, 0.4); }
.btn-secondary {
background: var(--bg-card); color: var(--text-primary);
border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover { background: #222245; transform: translateY(-2px); }
/* Stats */
.stats {
display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 24px; max-width: 1000px; margin: 0 auto; padding: 0 24px 80px;
}
.stat {
text-align: center; padding: 32px 20px; border-radius: var(--radius);
background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
}
.stat-number {
font-size: 2.5rem; font-weight: 800;
background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { color: var(--text-secondary); font-size: 0.9rem; margin-top: 4px; }
/* Section */
section { padding: 80px 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 12px;
letter-spacing: -0.5px;
}
.section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
/* Categories */
.categories {
display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px; max-width: 1200px; margin: 0 auto;
}
.category {
padding: 32px 28px; border-radius: var(--radius);
background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
transition: all 0.3s;
}
.category:hover { transform: translateY(-4px); border-color: rgba(108, 123, 255, 0.2); }
.category-icon { font-size: 2rem; margin-bottom: 16px; }
.category h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.category p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
/* Featured Apps */
.apps-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px; max-width: 1200px; margin: 0 auto;
}
.app-card {
display: flex; align-items: center; gap: 16px;
padding: 20px; border-radius: var(--radius);
background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
transition: all 0.3s; text-decoration: none; color: inherit;
}
.app-card:hover { transform: translateY(-2px); border-color: rgba(108, 123, 255, 0.2); }
.app-icon-placeholder {
width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.app-icon { width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0; object-fit: cover; }
.app-info h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.app-info p { color: var(--text-secondary); font-size: 0.8rem; line-height: 1.5; }
.app-tag {
display: inline-block; padding: 2px 8px; border-radius: 6px; font-size: 0.7rem;
font-weight: 600; margin-top: 6px;
}
/* About */
.about-content {
max-width: 800px; margin: 0 auto;
display: grid; gap: 24px;
}
.about-card {
padding: 32px; border-radius: var(--radius);
background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
}
.about-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--accent); }
.about-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }
/* Footer */
footer {
border-top: 1px solid rgba(255,255,255,0.05);
padding: 48px 24px; text-align: center;
}
.footer-logo {
font-size: 1.2rem; font-weight: 800; margin-bottom: 16px;
background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--text-primary); }
.footer-copy { color: var(--text-secondary); font-size: 0.8rem; opacity: 0.6; }
/* Responsive */
@media (max-width: 768px) {
.nav-links { display: none; }
.stats { grid-template-columns: repeat(2, 1fr); }
.hero { padding-top: 100px; }
}
</style>
<!-- impact.com トラッキングタグ(所有権確認+アフィリ計測: リンク自動変換/インプレッション) -->
<script type="text/javascript">(function(i,m,p,a,c,t){c.ire_o=p;c[p]=c[p]||function(){(c[p].a=c[p].a||[]).push(arguments)};t=a.createElement(m);var z=a.getElementsByTagName(m)[0];t.async=1;t.src=i;z.parentNode.insertBefore(t,z)})('https://utt.impactcdn.com/P-A7280941-3677-4f4e-b630-5e0a1e3fd9561.js','script','impactStat',document,window);impactStat('transformLinks');impactStat('trackImpression');</script>
</head>
<body>
<!-- Navigation -->
<nav>
<div class="nav-inner">
<div class="nav-logo">SK APPS</div>
<div class="nav-right">
<ul class="nav-links">
<li><a href="#apps" data-i18n="nav_apps">Apps</a></li>
<li><a href="#categories" data-i18n="nav_categories">Categories</a></li>
<li><a href="#about" data-i18n="nav_about">About</a></li>
<li><a href="#contact" data-i18n="nav_contact">Contact</a></li>
</ul>
<div class="lang-selector" id="langSelector">
<button class="lang-btn" id="langBtn">
<span id="langLabel">EN</span>
<svg viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>
</button>
<div class="lang-dropdown" id="langDropdown"></div>
</div>
</div>
</div>
</nav>
<!-- Hero -->
<section class="hero">
<div class="hero-content">
<div class="hero-badge" data-i18n="hero_badge">78+ Apps on Google Play</div>
<h1 data-i18n-html="hero_title">Innovative <span class="gradient">Mobile Experiences</span></h1>
<p data-i18n="hero_desc">We craft fun, useful, and beautifully designed apps — from brain-teasing games to AI-powered tools and everyday utilities.</p>
<div class="hero-buttons">
<a href="https://play.google.com/store/apps/dev?id=7594721997967679516" class="btn btn-primary" rel="noopener" target="_blank">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M3.609 1.814L13.792 12 3.61 22.186a.996.996 0 0 1-.61-.92V2.734a1 1 0 0 1 .609-.92zm10.89 10.893l2.302 2.302-10.937 6.333 8.635-8.635zm3.199-1.707l2.033 1.18c.558.322.558 1.318 0 1.64l-2.033 1.18-2.546-2.5 2.546-2.5zM5.864 2.658L16.8 8.99l-2.302 2.302-8.634-8.634z"/></svg>
Google Play
</a>
<a href="/apps.html" class="btn btn-secondary">Browse All Apps</a>
</div>
<form id="notifyForm" style="margin-top:18px;display:flex;gap:8px;flex-wrap:wrap;justify-content:center;max-width:440px;margin-left:auto;margin-right:auto">
<input type="email" id="notifyEmail" required autocomplete="email" placeholder="you@example.com" style="flex:1;min-width:200px;padding:12px 14px;border-radius:10px;border:1px solid rgba(255,255,255,.15);background:var(--bg-card);color:var(--text-primary);font-size:.95rem">
<button type="submit" id="notifyBtn" class="btn btn-primary" style="white-space:nowrap">Notify me</button>
</form>
<p id="notifyMsg" class="hero-soon" style="margin-top:12px;font-size:.9rem;color:var(--text-secondary);min-height:1.2em">🚀 78+ apps on Google Play — get notified about new releases</p>
</div>
</section>
<!-- Stats -->
<div class="stats">
<div class="stat">
<div class="stat-number">110+</div>
<div class="stat-label" data-i18n="stat_apps">Published Apps</div>
</div>
<div class="stat">
<div class="stat-number">17</div>
<div class="stat-label" data-i18n="stat_langs">Languages Supported</div>
</div>
<div class="stat">
<div class="stat-number">2</div>
<div class="stat-label" data-i18n="stat_platforms">Platforms</div>
</div>
<div class="stat">
<div class="stat-number">8</div>
<div class="stat-label" data-i18n="stat_categories">App Categories</div>
</div>
</div>
<!-- Categories -->
<section id="categories">
<div class="section-header">
<h2 data-i18n="cat_title">What We Build</h2>
<p data-i18n="cat_desc">Diverse apps spanning multiple categories, each crafted with attention to detail</p>
</div>
<div class="categories">
<div class="category">
<div class="category-icon">🎮</div>
<h3 data-i18n="cat_games">Games & Puzzles</h3>
<p data-i18n="cat_games_desc">Brain teasers, typing battles, quiz games, and challenges that keep you sharp. From 30-second speed rounds to deep puzzle solving.</p>
</div>
<div class="category">
<div class="category-icon">🤖</div>
<h3 data-i18n="cat_ai">AI-Powered Tools</h3>
<p data-i18n="cat_ai_desc">Smart apps that use AI for photo learning, voice diaries, dating coaching, debate practice, recipe suggestions, and more.</p>
</div>
<div class="category">
<div class="category-icon">🌍</div>
<h3 data-i18n="cat_encyclopedia">Encyclopedias & Guides</h3>
<p data-i18n="cat_encyclopedia_desc">Trace and discover the world — animals, plants, insects, marine life, gems, dinosaurs, birds, mushrooms, constellations, and flags.</p>
</div>
<div class="category">
<div class="category-icon">❤️</div>
<h3 data-i18n="cat_health">Health & Wellness</h3>
<p data-i18n="cat_health_desc">Posture reminders, stretch timers, sleep preparation, eye break alerts, water tracking, mood logging, and skincare analysis.</p>
</div>
<div class="category">
<div class="category-icon">💰</div>
<h3 data-i18n="cat_productivity">Productivity & Finance</h3>
<p data-i18n="cat_productivity_desc">Save-or-spend decisions, subscription tracking, warranty management, PDF tools, daily planners, and life visualization.</p>
</div>
<div class="category">
<div class="category-icon">🎉</div>
<h3 data-i18n="cat_social">Social & Fun</h3>
<p data-i18n="cat_social_desc">Roulette pickers for movies, dates, dinners, and study topics. Party games, compatibility quizzes, and friend challenges.</p>
</div>
<div class="category">
<div class="category-icon">🎓</div>
<h3 data-i18n="cat_education">Education & Learning</h3>
<p data-i18n="cat_education_desc">Language learning, ear training, photo-based vocabulary, and study tools. Build skills with daily practice and streak tracking.</p>
</div>
<div class="category">
<div class="category-icon">✈️</div>
<h3 data-i18n="cat_travel">Travel & Maps</h3>
<p data-i18n="cat_travel_desc">Safety maps, city guides, EV charger finders, wait time trackers, and local food discovery. Explore the world with confidence.</p>
</div>
</div>
</section>
<!-- Featured Apps -->
<section id="apps" style="background: var(--bg-secondary);">
<div class="section-header">
<h2 data-i18n="featured_title">Featured Apps</h2>
<p data-i18n="featured_desc">A selection of our most popular apps across categories</p>
</div>
<div class="apps-grid">
<a class="app-card" href="support/snaplingo/">
<img class="app-icon" src="icons/snaplingo.png" alt="SnapLingo" loading="lazy">
<div class="app-info">
<h4>SnapLingo</h4>
<p data-app-desc="snaplingo">Point your camera at anything — and learn the word in any language, instantly.</p>
<span class="app-tag" style="background: rgba(108,123,255,0.15); color: #6c7bff;">AI / Education</span>
</div>
</a>
<a class="app-card" href="support/brain-burst/">
<img class="app-icon" src="icons/brain-burst.png" alt="Brain Burst!" loading="lazy">
<div class="app-info">
<h4>Brain Burst!</h4>
<p data-app-desc="brain-burst">Challenge your brain — and real players worldwide — in a daily AI trivia battle.</p>
<span class="app-tag" style="background: rgba(253,203,110,0.15); color: #fdcb6e;">Game</span>
</div>
</a>
<a class="app-card" href="support/life-trace/">
<img class="app-icon" src="icons/life-trace.png" alt="LifeTrace" loading="lazy">
<div class="app-info">
<h4>LifeTrace</h4>
<p data-app-desc="life-trace">Your life story, recorded with AI.</p>
<span class="app-tag" style="background: rgba(0,184,148,0.15); color: #00b894;">AI / Utility</span>
</div>
</a>
<a class="app-card" href="support/30sec-challenge/">
<img class="app-icon" src="icons/30sec-challenge.png" alt="30sec Challenge" loading="lazy">
<div class="app-info">
<h4>30sec Challenge</h4>
<p data-app-desc="30sec-challenge">Take the challenge. Beat the clock. Go viral.</p>
<span class="app-tag" style="background: rgba(255,107,107,0.15); color: #ff6b6b;">Game</span>
</div>
</a>
<a class="app-card" href="support/geo-sense/">
<img class="app-icon" src="icons/geo-sense.png" alt="GeoSense" loading="lazy">
<div class="app-info">
<h4>GeoSense</h4>
<p data-app-desc="geo-sense">Can you guess where this photo was taken?</p>
<span class="app-tag" style="background: rgba(85,239,196,0.15); color: #55efc4;">Quiz</span>
</div>
</a>
<a class="app-card" href="support/nodo/">
<img class="app-icon" src="icons/nodo.png" alt="Nodo Puzzle" loading="lazy">
<div class="app-info">
<h4>Nodo Puzzle</h4>
<p data-app-desc="nodo">A daily puzzle that's easy to learn, hard to master, and deeply satisfying.</p>
<span class="app-tag" style="background: rgba(255,234,167,0.15); color: #fdcb6e;">Puzzle</span>
</div>
</a>
<a class="app-card" href="support/chaos/">
<img class="app-icon" src="icons/chaos.png" alt="Chaos" loading="lazy">
<div class="app-info">
<h4>Chaos: Daily Missions</h4>
<p data-app-desc="chaos">Break your routine. Do one unexpected thing today.</p>
<span class="app-tag" style="background: rgba(253,121,168,0.15); color: #fd79a8;">Lifestyle</span>
</div>
</a>
<a class="app-card" href="support/debate-me/">
<img class="app-icon" src="icons/debate-me.png" alt="Debate Me" loading="lazy">
<div class="app-info">
<h4>Debate Me</h4>
<p data-app-desc="debate-me">Sharpen your arguments — and win any debate — with AI coaching.</p>
<span class="app-tag" style="background: rgba(162,155,254,0.15); color: #a29bfe;">AI / Education</span>
</div>
</a>
<a class="app-card" href="support/keyclash/">
<img class="app-icon" src="icons/key-clash.png" alt="KeyClash" loading="lazy">
<div class="app-info">
<h4>KeyClash</h4>
<p>Type faster than anyone — prove it in real-time.</p>
<span class="app-tag" style="background: rgba(116,185,255,0.15); color: #74b9ff;">Game</span>
</div>
</a>
<a class="app-card" href="support/real-feel-weather/">
<img class="app-icon" src="icons/real-feel-weather.png" alt="RealFeel Weather" loading="lazy">
<div class="app-info">
<h4>RealFeel Weather</h4>
<p data-app-desc="real-feel-weather">Not just the air temperature — the temperature you'll actually feel outside.</p>
<span class="app-tag" style="background: rgba(129,236,236,0.15); color: #81ecec;">Weather</span>
</div>
</a>
<a class="app-card" href="support/voice-memo/">
<img class="app-icon" src="icons/voice-memo.png" alt="Speakly" loading="lazy">
<div class="app-info">
<h4>Speakly</h4>
<p data-app-desc="voice-memo">Speakly turns your voice into a personal diary — no typing needed.</p>
<span class="app-tag" style="background: rgba(108,123,255,0.15); color: #6c7bff;">AI / Utility</span>
</div>
</a>
<a class="app-card" href="support/fileforce/">
<img class="app-icon" src="icons/fileforce.png" alt="FileForce" loading="lazy">
<div class="app-info">
<h4>FileForce</h4>
<p data-app-desc="fileforce">Manage all your files — organized and under control.</p>
<span class="app-tag" style="background: rgba(250,177,160,0.15); color: #fab1a0;">Productivity</span>
</div>
</a>
<a class="app-card" href="support/ogiri/">
<img class="app-icon" src="icons/ogiri.png" alt="OGIRI" loading="lazy">
<div class="app-info">
<h4>OGIRI</h4>
<p data-app-desc="ogiri">Make the world laugh. Battle wits in real-time comedy showdowns.</p>
<span class="app-tag" style="background: rgba(253,121,168,0.15); color: #fd79a8;">Game</span>
</div>
</a>
<a class="app-card" href="support/taletime/">
<img class="app-icon" src="icons/taletime.png" alt="TaleTime" loading="lazy">
<div class="app-info">
<h4>TaleTime</h4>
<p data-app-desc="taletime">Co-create improvised stories with your family — one prompt at a time.</p>
<span class="app-tag" style="background: rgba(162,155,254,0.15); color: #a29bfe;">AI / Family</span>
</div>
</a>
<a class="app-card" href="support/tappitsu-battle/">
<img class="app-icon" src="icons/tappitsu-battle.png" alt="Tappitsu Battle" loading="lazy">
<div class="app-info">
<h4>Tappitsu Battle</h4>
<p data-app-desc="tappitsu-battle">Beautiful handwriting, judged by AI — duel your way to the top.</p>
<span class="app-tag" style="background: rgba(108,123,255,0.15); color: #6c7bff;">AI / Game</span>
</div>
</a>
<a class="app-card" href="support/face-reaction-battle/">
<img class="app-icon" src="icons/face-reaction-battle.png" alt="Face Battle" loading="lazy">
<div class="app-info">
<h4>Face Battle</h4>
<p data-app-desc="face-reaction-battle">Out-react your opponents with the best facial expression.</p>
<span class="app-tag" style="background: rgba(255,107,107,0.15); color: #ff6b6b;">Game</span>
</div>
</a>
<a class="app-card" href="support/story-verse/">
<img class="app-icon" src="icons/story-verse.png" alt="StoryVerse" loading="lazy">
<div class="app-info">
<h4>StoryVerse</h4>
<p data-app-desc="story-verse">Choose-your-own-adventure stories generated by AI, just for you.</p>
<span class="app-tag" style="background: rgba(0,212,232,0.15); color: #00D4E8;">AI / Entertainment</span>
</div>
</a>
</div>
</section>
<!-- Trace Series -->
<section>
<div class="section-header">
<h2 data-i18n="trace_title">Trace Series</h2>
<p data-i18n="trace_desc">Discover the world through our encyclopedia collection — beautifully illustrated guides</p>
</div>
<div class="apps-grid">
<a class="app-card" href="support/mushroom-encyclopedia/">
<img class="app-icon" src="icons/mushroom-encyclopedia.png" alt="ForestTrace" loading="lazy">
<div class="app-info"><h4>ForestTrace</h4><p data-app-desc="mushroom-encyclopedia">Discover 100 mushroom species from around the globe.</p></div>
</a>
<a class="app-card" href="support/dinosaur-encyclopedia/">
<img class="app-icon" src="icons/dinosaur-encyclopedia.png" alt="DinoTrace" loading="lazy">
<div class="app-info"><h4>DinoTrace</h4><p data-app-desc="dinosaur-encyclopedia">Travel back in time with dinosaur profiles and quizzes.</p></div>
</a>
<a class="app-card" href="support/marine-life-encyclopedia/">
<img class="app-icon" src="icons/marine-life-encyclopedia.png" alt="MarineTrace" loading="lazy">
<div class="app-info"><h4>MarineTrace</h4><p data-app-desc="marine-life-encyclopedia">100 fascinating ocean species from shallows to the abyss.</p></div>
</a>
<a class="app-card" href="support/insect-encyclopedia/">
<img class="app-icon" src="icons/insect-encyclopedia.png" alt="BugTrace" loading="lazy">
<div class="app-info"><h4>BugTrace</h4><p data-app-desc="insect-encyclopedia">Identify and learn about insects worldwide.</p></div>
</a>
<a class="app-card" href="support/plant-encyclopedia/">
<img class="app-icon" src="icons/plant-encyclopedia.png" alt="BotanicaTrace" loading="lazy">
<div class="app-info"><h4>BotanicaTrace</h4><p data-app-desc="plant-encyclopedia">Plant encyclopedia with care tips and identification.</p></div>
</a>
<a class="app-card" href="support/bird-encyclopedia/">
<img class="app-icon" src="icons/bird-encyclopedia.png" alt="FeatherTrace" loading="lazy">
<div class="app-info"><h4>FeatherTrace</h4><p data-app-desc="bird-encyclopedia">100 bird species with identification and migration maps.</p></div>
</a>
<a class="app-card" href="support/gemstone-encyclopedia/">
<img class="app-icon" src="icons/gemstone-encyclopedia.png" alt="GemTrace" loading="lazy">
<div class="app-info"><h4>GemTrace</h4><p data-app-desc="gemstone-encyclopedia">200+ gemstone profiles with Mohs scale and mining locations.</p></div>
</a>
<a class="app-card" href="support/dog-breeds-encyclopedia/">
<img class="app-icon" src="icons/dog-breeds-encyclopedia.png" alt="PawTrace" loading="lazy">
<div class="app-info"><h4>PawTrace</h4><p data-app-desc="dog-breeds-encyclopedia">100 dog breeds with care guides and breed comparison.</p></div>
</a>
<a class="app-card" href="support/constellation-encyclopedia/">
<img class="app-icon" src="icons/constellation-encyclopedia.png" alt="AstroTrace" loading="lazy">
<div class="app-info"><h4>AstroTrace</h4><p data-app-desc="constellation-encyclopedia">88 constellations with star maps and mythology.</p></div>
</a>
<a class="app-card" href="support/world-flags-encyclopedia/">
<img class="app-icon" src="icons/world-flags-encyclopedia.png" alt="FlagTrace" loading="lazy">
<div class="app-info"><h4>FlagTrace</h4><p data-app-desc="world-flags-encyclopedia">Every country's flag, history, and national facts.</p></div>
</a>
<a class="app-card" href="support/heritagetrace/">
<img class="app-icon" src="icons/world-heritage-encyclopedia.png" alt="HeritageTrace" loading="lazy">
<div class="app-info"><h4>HeritageTrace</h4><p>100 UNESCO World Heritage Sites explored in detail.</p></div>
</a>
<a class="app-card" href="support/animal-encyclopedia/">
<img class="app-icon" src="icons/animal-encyclopedia.png" alt="WildTrace" loading="lazy">
<div class="app-info"><h4>WildTrace</h4><p data-app-desc="animal-encyclopedia">30+ animals with habitats, behaviors, and rich profiles.</p></div>
</a>
<a class="app-card" href="support/trend/">
<img class="app-icon" src="icons/trend.png" alt="Trend" loading="lazy">
<div class="app-info"><h4>Trend: Find Your Next Favorite</h4><p>Discover trending anime and games with AI-powered recommendations.</p><span class="app-tag" style="background: rgba(0,212,232,0.15); color: #00D4E8;">AI / Entertainment</span></div>
</a>
</div>
</section>
<!-- About -->
<section id="about" style="background: var(--bg-secondary);">
<div class="section-header">
<h2 data-i18n="about_title">About SK APPS</h2>
<p data-i18n="about_desc">Building apps that people actually want to use</p>
</div>
<div class="about-content">
<div class="about-card">
<h3 data-i18n="about_approach">Our Approach</h3>
<p data-i18n="about_approach_desc">Every app we build follows the same principles: clean design, fast performance, and genuine usefulness. We use Flutter for cross-platform consistency, support 17 languages out of the box, and never ship an app we wouldn't use ourselves.</p>
</div>
<div class="about-card">
<h3 data-i18n="about_tech">Technology</h3>
<p data-i18n="about_tech_desc">Built with Flutter and Node.js. Our apps run natively on both iOS and Android, with server-side features powered by TypeScript, PostgreSQL, and Redis. AI features use cutting-edge language models to deliver smart, context-aware experiences.</p>
</div>
<div class="about-card">
<h3 data-i18n="about_global">Global First</h3>
<p data-i18n="about_global_desc">All apps support 17 languages from day one: English, Japanese, Chinese (Simplified & Traditional), Korean, Spanish, Portuguese, French, German, Italian, Russian, Arabic, Thai, Indonesian, Turkish, Dutch, and Vietnamese.</p>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact">
<div class="section-header">
<h2 data-i18n="contact_title">Get in Touch</h2>
<p data-i18n="contact_desc">Have questions, feedback, or ideas? We'd love to hear from you.</p>
</div>
<div style="text-align: center;">
<a href="mailto:app.develop.sk@gmail.com" class="btn btn-primary" style="font-size: 1.05rem;">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>
app.develop.sk@gmail.com
</a>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-logo">SK APPS</div>
<div class="footer-links">
<a href="/apps.html">All Apps</a>
<a href="https://play.google.com/store/apps/dev?id=7594721997967679516" rel="noopener" target="_blank">Google Play</a>
<a href="https://pickly.blog" target="_blank" rel="noopener">Pickly</a>
<a href="https://toolify365.com" target="_blank" rel="noopener">Toolify365</a>
<a href="https://fxea365.com" target="_blank" rel="noopener">FXEA365</a>
<a href="mailto:app.develop.sk@gmail.com" data-i18n="nav_contact">Contact</a>
</div>
<p class="footer-copy">© 2026 SK APPS. All rights reserved.</p>
</footer>
<script>
const LANGS = {
en: { label: "English", flag: "EN" },
ja: { label: "日本語", flag: "JA" },
zh: { label: "简体中文", flag: "ZH" },
zh_TW: { label: "繁體中文", flag: "TW" },
ko: { label: "한국어", flag: "KO" },
es: { label: "Español", flag: "ES" },
pt: { label: "Português", flag: "PT" },
fr: { label: "Français", flag: "FR" },
de: { label: "Deutsch", flag: "DE" },
it: { label: "Italiano", flag: "IT" },
ru: { label: "Русский", flag: "RU" },
ar: { label: "العربية", flag: "AR" },
th: { label: "ไทย", flag: "TH" },
id: { label: "Indonesia", flag: "ID" },
tr: { label: "Türkçe", flag: "TR" },
nl: { label: "Nederlands", flag: "NL" },
vi: { label: "Tiếng Việt", flag: "VI" }
};
const I18N = {
en: {
nav_apps: "Apps", nav_categories: "Categories", nav_about: "About", nav_contact: "Contact",
hero_badge: "78+ Apps on Google Play",
hero_title: 'Innovative <span class="gradient">Mobile Experiences</span>',
hero_desc: "We craft fun, useful, and beautifully designed apps — from brain-teasing games to AI-powered tools and everyday utilities.",
stat_apps: "Published Apps", stat_langs: "Languages Supported", stat_platforms: "Platforms", stat_categories: "App Categories",
cat_title: "What We Build", cat_desc: "Diverse apps spanning multiple categories, each crafted with attention to detail",
cat_games: "Games & Puzzles", cat_games_desc: "Brain teasers, typing battles, quiz games, and challenges that keep you sharp. From 30-second speed rounds to deep puzzle solving.",
cat_ai: "AI-Powered Tools", cat_ai_desc: "Smart apps that use AI for photo learning, voice diaries, dating coaching, debate practice, recipe suggestions, and more.",
cat_encyclopedia: "Encyclopedias & Guides", cat_encyclopedia_desc: "Trace and discover the world — animals, plants, insects, marine life, gems, dinosaurs, birds, mushrooms, constellations, and flags.",
cat_health: "Health & Wellness", cat_health_desc: "Posture reminders, stretch timers, sleep preparation, eye break alerts, water tracking, mood logging, and skincare analysis.",
cat_productivity: "Productivity & Finance", cat_productivity_desc: "Save-or-spend decisions, subscription tracking, warranty management, PDF tools, daily planners, and life visualization.",
cat_social: "Social & Fun", cat_social_desc: "Roulette pickers for movies, dates, dinners, and study topics. Party games, compatibility quizzes, and friend challenges.",
cat_education: "Education & Learning", cat_education_desc: "Language learning, ear training, photo-based vocabulary, and study tools. Build skills with daily practice and streak tracking.",
cat_travel: "Travel & Maps", cat_travel_desc: "Safety maps, city guides, EV charger finders, wait time trackers, and local food discovery. Explore the world with confidence.",
featured_title: "Featured Apps", featured_desc: "A selection of our most popular apps across categories",
app_30sec: "Fast-paced trivia game. Answer as many questions as you can in 30 seconds.",
app_snaplingo: "Point your camera at anything and learn vocabulary in multiple languages with AI.",
app_lifetrace: "AI-powered life recorder. Capture and reflect on your daily moments automatically.",
app_brainburst: "Train your brain with quick cognitive challenges across multiple categories.",
app_keyclash: "Competitive typing battle. Race against the clock and other players.",
app_geosense: "Photo location quiz. Guess where in the world each photo was taken.",
app_chaos: "Random daily challenges that push you out of your comfort zone.",
app_debateme: "Practice debate skills with AI. Sharpen your arguments on any topic.",
app_nodo: "Elegant node-connecting puzzle game. Simple rules, deep strategy.",
app_realfeel: "Weather app focused on how it actually feels outside, not just the numbers.",
app_dreamlog: "Record your dreams and explore a world map of dream locations and themes.",
app_fileforce: "Powerful PDF file manager. Merge, split, annotate, and organize documents.",
tag_game: "Game", tag_ai_edu: "AI / Education", tag_ai_util: "AI / Utility", tag_quiz: "Quiz", tag_lifestyle: "Lifestyle", tag_puzzle: "Puzzle", tag_weather: "Weather", tag_productivity: "Productivity",
trace_title: "Trace Series", trace_desc: "Discover the world through our encyclopedia collection — beautifully illustrated guides",
trace_forest: "Explore mushrooms and forest ecosystems", trace_dino: "Discover dinosaurs from every era",
trace_marine: "Dive into ocean creatures and marine life", trace_bug: "Identify and learn about insects worldwide",
trace_botanica: "Guide to plants, flowers, and botany", trace_feather: "Bird species identification and facts",
trace_gem: "Gemstones, minerals, and crystals guide", trace_paw: "Dog breeds encyclopedia and guide",
trace_astro: "Constellations and star maps", trace_flag: "World flags and country facts",
trace_heritage: "World heritage sites and cultural landmarks", trace_wild: "Wildlife animals from around the globe",
about_title: "About SK APPS", about_desc: "Building apps that people actually want to use",
about_approach: "Our Approach", about_approach_desc: "Every app we build follows the same principles: clean design, fast performance, and genuine usefulness. We use Flutter for cross-platform consistency, support 17 languages out of the box, and never ship an app we wouldn't use ourselves.",
about_tech: "Technology", about_tech_desc: "Built with Flutter and Node.js. Our apps run natively on both iOS and Android, with server-side features powered by TypeScript, PostgreSQL, and Redis. AI features use cutting-edge language models to deliver smart, context-aware experiences.",
about_global: "Global First", about_global_desc: "All apps support 17 languages from day one: English, Japanese, Chinese (Simplified & Traditional), Korean, Spanish, Portuguese, French, German, Italian, Russian, Arabic, Thai, Indonesian, Turkish, Dutch, and Vietnamese.",
contact_title: "Get in Touch", contact_desc: "Have questions, feedback, or ideas? We'd love to hear from you."
},
ja: {
nav_apps: "アプリ", nav_categories: "カテゴリ", nav_about: "概要", nav_contact: "お問い合わせ",
hero_badge: "Google Playで78アプリ配信中",
hero_title: '革新的な<span class="gradient">モバイル体験</span>',
hero_desc: "脳トレゲームからAIツール、日常ユーティリティまで — 楽しく、便利で、美しくデザインされたアプリを作っています。",
stat_apps: "公開アプリ数", stat_langs: "対応言語", stat_platforms: "プラットフォーム", stat_categories: "アプリカテゴリ",
cat_title: "私たちが作るもの", cat_desc: "多彩なカテゴリにわたるアプリを、細部までこだわって開発",
cat_games: "ゲーム&パズル", cat_games_desc: "脳トレ、タイピングバトル、クイズゲーム、チャレンジなど。30秒のスピード勝負から本格パズルまで。",
cat_ai: "AI搭載ツール", cat_ai_desc: "写真学習、音声日記、恋愛コーチ、ディベート練習、レシピ提案など、AIを活用したスマートアプリ。",
cat_encyclopedia: "図鑑&ガイド", cat_encyclopedia_desc: "動物、植物、昆虫、海洋生物、宝石、恐竜、鳥、キノコ、星座、国旗 — 世界を発見するTraceシリーズ。",
cat_health: "健康&ウェルネス", cat_health_desc: "姿勢リマインダー、ストレッチタイマー、睡眠準備、目の休憩、水分管理、気分記録、スキンケア分析。",
cat_productivity: "生産性&ファイナンス", cat_productivity_desc: "貯蓄 or 消費判断、サブスク管理、保証書管理、PDFツール、デイリープランナー、ライフ可視化。",
cat_social: "ソーシャル&楽しい", cat_social_desc: "映画、デート、晩ごはん、勉強のルーレット。パーティーゲーム、相性クイズ、友達チャレンジ。",
cat_education: "教育&学習", cat_education_desc: "語学学習、音感トレーニング、写真で単語学習、学習ツール。毎日の練習とストリークで着実にスキルアップ。",
cat_travel: "旅行&マップ", cat_travel_desc: "安全マップ、都市ガイド、EV充電器検索、待ち時間追跡、ローカルフード発見。安心して世界を探索。",
featured_title: "注目のアプリ", featured_desc: "カテゴリを横断した人気アプリのセレクション",
app_30sec: "スピード感あふれるトリビアゲーム。30秒でどれだけ答えられるか挑戦!",
app_snaplingo: "カメラを向けるだけでAIが多言語の単語を教えてくれる学習アプリ。",
app_lifetrace: "AI搭載のライフレコーダー。日常の瞬間を自動で記録・振り返り。",
app_brainburst: "多彩なカテゴリの認知チャレンジで脳をトレーニング。",
app_keyclash: "タイピングバトル。時計と他のプレイヤーに挑め。",
app_geosense: "写真位置当てクイズ。世界のどこで撮影されたか当てよう。",
app_chaos: "コンフォートゾーンを飛び出すランダムデイリーチャレンジ。",
app_debateme: "AIとディベート練習。あらゆるトピックで議論力を磨こう。",
app_nodo: "エレガントなノード接続パズル。シンプルなルール、深い戦略。",
app_realfeel: "数字だけじゃない、実際の体感に焦点を当てた天気アプリ。",
app_dreamlog: "夢を記録して、夢の場所やテーマのワールドマップを探索。",
app_fileforce: "強力なPDFファイルマネージャー。結合、分割、注釈、整理。",
tag_game: "ゲーム", tag_ai_edu: "AI / 教育", tag_ai_util: "AI / ユーティリティ", tag_quiz: "クイズ", tag_lifestyle: "ライフスタイル", tag_puzzle: "パズル", tag_weather: "天気", tag_productivity: "生産性",
trace_title: "Traceシリーズ", trace_desc: "美しいイラスト付き図鑑コレクションで世界を発見",
trace_forest: "キノコと森の生態系を探索", trace_dino: "あらゆる時代の恐竜を発見",
trace_marine: "海の生き物と海洋生物の世界へ", trace_bug: "世界中の昆虫を識別・学習",
trace_botanica: "植物、花、植物学ガイド", trace_feather: "鳥類の種別識別と豆知識",
trace_gem: "宝石、鉱物、クリスタルガイド", trace_paw: "犬種図鑑&ガイド",
trace_astro: "星座と星図", trace_flag: "世界の国旗と国の情報",
trace_heritage: "世界遺産と文化的ランドマーク", trace_wild: "世界中の野生動物",
about_title: "SK APPSについて", about_desc: "本当に使いたくなるアプリを作る",
about_approach: "私たちのアプローチ", about_approach_desc: "すべてのアプリは同じ原則に基づいています:クリーンなデザイン、高速なパフォーマンス、本当の実用性。Flutterでクロスプラットフォームの一貫性を確保し、17言語を標準サポート。自分たちが使いたくないアプリはリリースしません。",
about_tech: "テクノロジー", about_tech_desc: "FlutterとNode.jsで構築。iOSとAndroidの両方でネイティブに動作し、サーバーサイドはTypeScript、PostgreSQL、Redisで構成。AI機能は最先端の言語モデルを活用しています。",
about_global: "グローバルファースト", about_global_desc: "すべてのアプリが初日から17言語に対応:英語、日本語、中国語(簡体字・繁体字)、韓国語、スペイン語、ポルトガル語、フランス語、ドイツ語、イタリア語、ロシア語、アラビア語、タイ語、インドネシア語、トルコ語、オランダ語、ベトナム語。",
contact_title: "お問い合わせ", contact_desc: "ご質問、フィードバック、アイデアがありましたらお気軽にどうぞ。"
},
zh: {
nav_apps: "应用", nav_categories: "分类", nav_about: "关于", nav_contact: "联系我们",
hero_badge: "Google Play 上 78+ 款应用",
hero_title: '创新的<span class="gradient">移动体验</span>',
hero_desc: "我们打造有趣、实用、设计精美的应用——从烧脑游戏到AI工具和日常实用程序。",
stat_apps: "已发布应用", stat_langs: "支持语言", stat_platforms: "平台", stat_categories: "应用类别",
cat_title: "我们的产品", cat_desc: "横跨多个类别的应用,每一款都精心打造",
cat_games: "游戏和拼图", cat_games_desc: "脑力挑战、打字对战、问答游戏等。从30秒极速挑战到深度解谜。",
cat_ai: "AI工具", cat_ai_desc: "利用AI进行拍照学习、语音日记、恋爱指导、辩论练习、菜谱推荐等。",
cat_encyclopedia: "百科和指南", cat_encyclopedia_desc: "探索世界——动物、植物、昆虫、海洋生物、宝石、恐龙、鸟类、蘑菇、星座和国旗。",
cat_health: "健康和养生", cat_health_desc: "姿势提醒、拉伸计时器、睡眠准备、护眼提醒、饮水追踪、心情记录和护肤分析。",
cat_productivity: "效率和财务", cat_productivity_desc: "储蓄或消费决策、订阅管理、保修管理、PDF工具、日程规划和生活可视化。",
cat_social: "社交和趣味", cat_social_desc: "电影、约会、晚餐、学习话题随机选择器。派对游戏、兼容性测试和好友挑战。",
cat_education: "教育与学习", cat_education_desc: "语言学习、听音训练、拍照学词汇和学习工具。通过每日练习提升技能。",
cat_travel: "旅行与地图", cat_travel_desc: "安全地图、城市指南、充电站查找、等待时间追踪和本地美食发现。自信地探索世界。",
featured_title: "精选应用", featured_desc: "跨类别的热门应用精选",
app_30sec: "快节奏问答游戏。在30秒内尽可能多地回答问题。", app_snaplingo: "拍照即学,AI帮你学习多语言词汇。",
app_lifetrace: "AI生活记录器。自动捕捉并回顾每日精彩瞬间。", app_brainburst: "多类别认知挑战,锻炼你的大脑。",
app_keyclash: "竞技打字对战。与时间和其他玩家赛跑。", app_geosense: "照片定位问答。猜猜这张照片拍自哪里。",
app_chaos: "随机每日挑战,带你走出舒适区。", app_debateme: "与AI练习辩论,磨练你的论证能力。",
app_nodo: "优雅的节点连接益智游戏。简单规则,深度策略。", app_realfeel: "关注实际体感的天气应用,不仅仅是数字。",
app_dreamlog: "记录梦境,探索梦境地点和主题的世界地图。", app_fileforce: "强大的PDF文件管理器。合并、拆分、标注和整理。",
tag_game: "游戏", tag_ai_edu: "AI / 教育", tag_ai_util: "AI / 工具", tag_quiz: "问答", tag_lifestyle: "生活", tag_puzzle: "益智", tag_weather: "天气", tag_productivity: "效率",
trace_title: "Trace系列", trace_desc: "通过精美插图百科系列发现世界",
trace_forest: "探索蘑菇和森林生态", trace_dino: "发现各个时代的恐龙", trace_marine: "深入海洋生物的世界",
trace_bug: "识别和了解全球昆虫", trace_botanica: "植物、花卉和植物学指南", trace_feather: "鸟类物种识别与趣知",
trace_gem: "宝石、矿物和水晶指南", trace_paw: "犬种百科与指南", trace_astro: "星座和星图",
trace_flag: "世界国旗和国家知识", trace_heritage: "世界遗产和文化地标", trace_wild: "全球野生动物",
about_title: "关于SK APPS", about_desc: "打造人们真正想用的应用",
about_approach: "我们的理念", about_approach_desc: "每款应用都遵循相同原则:简洁设计、极速性能、真正实用。我们使用Flutter确保跨平台一致性,开箱即支持17种语言,绝不发布自己不愿使用的应用。",
about_tech: "技术栈", about_tech_desc: "使用Flutter和Node.js构建。应用在iOS和Android上原生运行,服务端采用TypeScript、PostgreSQL和Redis。AI功能使用前沿语言模型。",
about_global: "全球优先", about_global_desc: "所有应用从第一天起就支持17种语言:英语、日语、中文(简体和繁体)、韩语、西班牙语、葡萄牙语、法语、德语、意大利语、俄语、阿拉伯语、泰语、印尼语、土耳其语、荷兰语和越南语。",
contact_title: "联系我们", contact_desc: "有问题、反馈或建议?欢迎随时与我们联系。"
},
zh_TW: {
nav_apps: "應用", nav_categories: "分類", nav_about: "關於", nav_contact: "聯絡我們",
hero_badge: "Google Play 上 78+ 款應用",
hero_title: '創新的<span class="gradient">行動體驗</span>',
hero_desc: "我們打造有趣、實用、設計精美的應用——從燒腦遊戲到AI工具和日常實用程式。",
stat_apps: "已發布應用", stat_langs: "支援語言", stat_platforms: "平台", stat_categories: "應用類別",
cat_title: "我們的產品", cat_desc: "橫跨多個類別的應用,每一款都精心打造",
cat_games: "遊戲與拼圖", cat_games_desc: "腦力挑戰、打字對戰、問答遊戲等。從30秒極速挑戰到深度解謎。",
cat_ai: "AI工具", cat_ai_desc: "利用AI進行拍照學習、語音日記、戀愛指導、辯論練習、食譜推薦等。",
cat_encyclopedia: "百科與指南", cat_encyclopedia_desc: "探索世界——動物、植物、昆蟲、海洋生物、寶石、恐龍、鳥類、蘑菇、星座和國旗。",
cat_health: "健康與養生", cat_health_desc: "姿勢提醒、伸展計時器、睡眠準備、護眼提醒、飲水追蹤、心情記錄和護膚分析。",
cat_productivity: "效率與財務", cat_productivity_desc: "儲蓄或消費決策、訂閱管理、保固管理、PDF工具、日程規劃和生活視覺化。",
cat_social: "社交與趣味", cat_social_desc: "電影、約會、晚餐、學習主題隨機選擇器。派對遊戲、相容性測試和好友挑戰。",
cat_education: "教育與學習", cat_education_desc: "語言學習、聽音訓練、拍照學詞彙和學習工具。透過每日練習提升技能。",
cat_travel: "旅行與地圖", cat_travel_desc: "安全地圖、城市指南、充電站查找、等待時間追蹤和本地美食發現。自信地探索世界。",
featured_title: "精選應用", featured_desc: "跨類別的熱門應用精選",
app_30sec: "快節奏問答遊戲。在30秒內盡可能多地回答問題。", app_snaplingo: "拍照即學,AI幫你學習多語言詞彙。",
app_lifetrace: "AI生活記錄器。自動捕捉並回顧每日精彩時刻。", app_brainburst: "多類別認知挑戰,鍛鍊你的大腦。",
app_keyclash: "競技打字對戰。與時間和其他玩家賽跑。", app_geosense: "照片定位問答。猜猜這張照片拍自哪裡。",
app_chaos: "隨機每日挑戰,帶你走出舒適區。", app_debateme: "與AI練習辯論,磨練你的論證能力。",
app_nodo: "優雅的節點連接益智遊戲。簡單規則,深度策略。", app_realfeel: "關注實際體感的天氣應用,不僅僅是數字。",
app_dreamlog: "記錄夢境,探索夢境地點和主題的世界地圖。", app_fileforce: "強大的PDF檔案管理器。合併、拆分、標註和整理。",
tag_game: "遊戲", tag_ai_edu: "AI / 教育", tag_ai_util: "AI / 工具", tag_quiz: "問答", tag_lifestyle: "生活", tag_puzzle: "益智", tag_weather: "天氣", tag_productivity: "效率",
trace_title: "Trace系列", trace_desc: "透過精美插圖百科系列發現世界",
trace_forest: "探索蘑菇和森林生態", trace_dino: "發現各個時代的恐龍", trace_marine: "深入海洋生物的世界",
trace_bug: "識別和了解全球昆蟲", trace_botanica: "植物、花卉和植物學指南", trace_feather: "鳥類物種識別與趣知",
trace_gem: "寶石、礦物和水晶指南", trace_paw: "犬種百科與指南", trace_astro: "星座和星圖",
trace_flag: "世界國旗和國家知識", trace_heritage: "世界遺產和文化地標", trace_wild: "全球野生動物",
about_title: "關於SK APPS", about_desc: "打造人們真正想用的應用",
about_approach: "我們的理念", about_approach_desc: "每款應用都遵循相同原則:簡潔設計、極速效能、真正實用。我們使用Flutter確保跨平台一致性,開箱即支援17種語言,絕不發布自己不願使用的應用。",
about_tech: "技術架構", about_tech_desc: "使用Flutter和Node.js構建。應用在iOS和Android上原生運行,伺服器端採用TypeScript、PostgreSQL和Redis。AI功能使用前沿語言模型。",
about_global: "全球優先", about_global_desc: "所有應用從第一天起就支援17種語言:英語、日語、中文(簡體和繁體)、韓語、西班牙語、葡萄牙語、法語、德語、義大利語、俄語、阿拉伯語、泰語、印尼語、土耳其語、荷蘭語和越南語。",
contact_title: "聯絡我們", contact_desc: "有問題、回饋或建議?歡迎隨時與我們聯繫。"
},
ko: {
nav_apps: "앱", nav_categories: "카테고리", nav_about: "소개", nav_contact: "문의",
hero_badge: "Google Play에서 앱 78개 제공",
hero_title: '혁신적인 <span class="gradient">모바일 경험</span>',
hero_desc: "두뇌 게임부터 AI 도구, 일상 유틸리티까지 — 재미있고, 유용하고, 아름답게 디자인된 앱을 만듭니다.",
stat_apps: "출시 앱", stat_langs: "지원 언어", stat_platforms: "플랫폼", stat_categories: "앱 카테고리",
cat_title: "우리가 만드는 것", cat_desc: "다양한 카테고리의 앱을 세심하게 개발합니다",
cat_games: "게임 & 퍼즐", cat_games_desc: "두뇌 훈련, 타이핑 배틀, 퀴즈 게임, 챌린지 등. 30초 스피드 라운드부터 깊은 퍼즐까지.",
cat_ai: "AI 도구", cat_ai_desc: "사진 학습, 음성 일기, 연애 코칭, 토론 연습, 레시피 추천 등 AI를 활용한 스마트 앱.",
cat_encyclopedia: "백과사전 & 가이드", cat_encyclopedia_desc: "동물, 식물, 곤충, 해양생물, 보석, 공룡, 새, 버섯, 별자리, 국기 — 세계를 발견하세요.",
cat_health: "건강 & 웰니스", cat_health_desc: "자세 알림, 스트레칭 타이머, 수면 준비, 눈 휴식, 수분 관리, 기분 기록, 스킨케어 분석.",
cat_productivity: "생산성 & 금융", cat_productivity_desc: "저축 vs 소비 판단, 구독 관리, 보증서 관리, PDF 도구, 일정 관리, 라이프 시각화.",
cat_social: "소셜 & 재미", cat_social_desc: "영화, 데이트, 저녁, 공부 주제 룰렛. 파티 게임, 궁합 테스트, 친구 챌린지.",
cat_education: "교육 & 학습", cat_education_desc: "어학 학습, 음감 훈련, 사진 기반 어휘, 학습 도구. 매일 연습과 연속 기록으로 실력 향상.",
cat_travel: "여행 & 지도", cat_travel_desc: "안전 지도, 도시 가이드, EV 충전기, 대기 시간 추적, 로컬 맛집 발견. 자신 있게 세계를 탐험.",
featured_title: "추천 앱", featured_desc: "카테고리를 넘나드는 인기 앱 셀렉션",
app_30sec: "빠른 퀴즈 게임. 30초 안에 최대한 많은 문제에 답하세요.", app_snaplingo: "카메라로 찍으면 AI가 다국어 어휘를 가르쳐줍니다.",
app_lifetrace: "AI 라이프 레코더. 일상의 순간을 자동으로 기록하고 돌아보세요.", app_brainburst: "다양한 카테고리의 인지 챌린지로 두뇌를 훈련하세요.",
app_keyclash: "타이핑 배틀. 시계와 다른 플레이어에 도전하세요.", app_geosense: "사진 위치 퀴즈. 세계 어디서 찍은 사진인지 맞혀보세요.",
app_chaos: "컴포트존을 벗어나는 랜덤 데일리 챌린지.", app_debateme: "AI와 토론 연습. 다양한 주제로 논증력을 키우세요.",
app_nodo: "우아한 노드 연결 퍼즐 게임. 심플한 규칙, 깊은 전략.", app_realfeel: "숫자가 아닌 실제 체감에 초점을 맞춘 날씨 앱.",
app_dreamlog: "꿈을 기록하고 꿈의 장소와 테마 세계지도를 탐색하세요.", app_fileforce: "강력한 PDF 파일 관리자. 병합, 분할, 주석, 정리.",
tag_game: "게임", tag_ai_edu: "AI / 교육", tag_ai_util: "AI / 유틸리티", tag_quiz: "퀴즈", tag_lifestyle: "라이프스타일", tag_puzzle: "퍼즐", tag_weather: "날씨", tag_productivity: "생산성",
trace_title: "Trace 시리즈", trace_desc: "아름다운 일러스트 백과사전 컬렉션으로 세계를 발견하세요",
trace_forest: "버섯과 숲 생태계 탐험", trace_dino: "모든 시대의 공룡 발견", trace_marine: "해양 생물의 세계로",
trace_bug: "전 세계 곤충 식별 및 학습", trace_botanica: "식물, 꽃, 식물학 가이드", trace_feather: "조류 종 식별과 정보",
trace_gem: "보석, 광물, 크리스탈 가이드", trace_paw: "견종 백과사전 & 가이드", trace_astro: "별자리와 성도",
trace_flag: "세계 국기와 국가 정보", trace_heritage: "세계유산과 문화 랜드마크", trace_wild: "전 세계의 야생동물",
about_title: "SK APPS 소개", about_desc: "사람들이 정말 쓰고 싶은 앱을 만듭니다",
about_approach: "우리의 접근법", about_approach_desc: "모든 앱은 같은 원칙을 따릅니다: 깔끔한 디자인, 빠른 성능, 진정한 유용성. Flutter로 크로스 플랫폼 일관성을 확보하고, 17개 언어를 기본 지원하며, 스스로 쓰고 싶지 않은 앱은 출시하지 않습니다.",
about_tech: "기술 스택", about_tech_desc: "Flutter와 Node.js로 구축. iOS와 Android 모두 네이티브로 실행되며, 서버 사이드는 TypeScript, PostgreSQL, Redis로 구성. AI 기능은 최첨단 언어 모델을 활용합니다.",
about_global: "글로벌 퍼스트", about_global_desc: "모든 앱이 첫날부터 17개 언어를 지원합니다: 영어, 일본어, 중국어(간체/번체), 한국어, 스페인어, 포르투갈어, 프랑스어, 독일어, 이탈리아어, 러시아어, 아랍어, 태국어, 인도네시아어, 터키어, 네덜란드어, 베트남어.",
contact_title: "문의하기", contact_desc: "질문, 피드백, 아이디어가 있으시면 언제든 연락주세요."
},
es: {
nav_apps: "Apps", nav_categories: "Categorías", nav_about: "Acerca de", nav_contact: "Contacto",
hero_badge: "78+ apps en Google Play",
hero_title: 'Experiencias <span class="gradient">móviles innovadoras</span>',
hero_desc: "Creamos aplicaciones divertidas, útiles y bellamente diseñadas — desde juegos mentales hasta herramientas de IA y utilidades cotidianas.",
stat_apps: "Apps publicadas", stat_langs: "Idiomas", stat_platforms: "Plataformas", stat_categories: "Categorías",
cat_title: "Lo que creamos", cat_desc: "Aplicaciones diversas en múltiples categorías, cada una desarrollada con atención al detalle",
cat_games: "Juegos y puzles", cat_games_desc: "Retos mentales, batallas de escritura, juegos de preguntas y desafíos. Desde rondas de 30 segundos hasta puzles profundos.",
cat_ai: "Herramientas con IA", cat_ai_desc: "Apps inteligentes con IA para aprendizaje fotográfico, diarios de voz, coaching de citas, práctica de debate y más.",
cat_encyclopedia: "Enciclopedias y guías", cat_encyclopedia_desc: "Descubre el mundo — animales, plantas, insectos, vida marina, gemas, dinosaurios, aves, setas, constelaciones y banderas.",
cat_health: "Salud y bienestar", cat_health_desc: "Recordatorios de postura, temporizadores de estiramientos, preparación del sueño, descanso visual, hidratación y análisis de piel.",
cat_productivity: "Productividad y finanzas", cat_productivity_desc: "Decisiones de ahorro o gasto, gestión de suscripciones, garantías, herramientas PDF, planificadores y visualización.",
cat_social: "Social y diversión", cat_social_desc: "Ruletas para películas, citas, cenas y temas de estudio. Juegos de fiesta, tests de compatibilidad y retos entre amigos.",
cat_education: "Educación y aprendizaje", cat_education_desc: "Aprendizaje de idiomas, entrenamiento auditivo, vocabulario con fotos y herramientas de estudio.",
cat_travel: "Viajes y mapas", cat_travel_desc: "Mapas de seguridad, guías de ciudades, cargadores EV, tiempos de espera y comida local.",
featured_title: "Apps destacadas", featured_desc: "Una selección de nuestras apps más populares",
app_30sec: "Juego de trivia rápido. Responde tantas preguntas como puedas en 30 segundos.", app_snaplingo: "Apunta tu cámara y aprende vocabulario en múltiples idiomas con IA.",
app_lifetrace: "Grabador de vida con IA. Captura y reflexiona sobre tus momentos diarios.", app_brainburst: "Entrena tu cerebro con desafíos cognitivos rápidos.",
app_keyclash: "Batalla de escritura competitiva. Compite contra el reloj y otros jugadores.", app_geosense: "Quiz de ubicación fotográfica. Adivina dónde se tomó cada foto.",
app_chaos: "Desafíos diarios aleatorios que te sacan de tu zona de confort.", app_debateme: "Practica debate con IA. Afina tus argumentos sobre cualquier tema.",
app_nodo: "Elegante puzle de conexión de nodos. Reglas simples, estrategia profunda.", app_realfeel: "App del tiempo enfocada en la sensación real, no solo números.",
app_dreamlog: "Registra tus sueños y explora un mapa mundial de ubicaciones y temas.", app_fileforce: "Potente gestor de archivos PDF. Combina, divide, anota y organiza.",
tag_game: "Juego", tag_ai_edu: "IA / Educación", tag_ai_util: "IA / Utilidad", tag_quiz: "Quiz", tag_lifestyle: "Estilo de vida", tag_puzzle: "Puzle", tag_weather: "Clima", tag_productivity: "Productividad",
trace_title: "Serie Trace", trace_desc: "Descubre el mundo a través de nuestra colección de enciclopedias ilustradas",
trace_forest: "Explora setas y ecosistemas forestales", trace_dino: "Descubre dinosaurios de todas las eras", trace_marine: "Sumérgete en criaturas oceánicas",
trace_bug: "Identifica y aprende sobre insectos", trace_botanica: "Guía de plantas, flores y botánica", trace_feather: "Identificación de aves y datos",
trace_gem: "Guía de gemas, minerales y cristales", trace_paw: "Enciclopedia de razas de perros", trace_astro: "Constelaciones y mapas estelares",
trace_flag: "Banderas del mundo y datos de países", trace_heritage: "Patrimonio mundial y monumentos culturales", trace_wild: "Animales salvajes del mundo",
about_title: "Sobre SK APPS", about_desc: "Creando apps que la gente realmente quiere usar",
about_approach: "Nuestro enfoque", about_approach_desc: "Cada app sigue los mismos principios: diseño limpio, rendimiento rápido y utilidad genuina. Usamos Flutter para consistencia multiplataforma, soportamos 17 idiomas desde el inicio.",
about_tech: "Tecnología", about_tech_desc: "Construido con Flutter y Node.js. Nuestras apps funcionan nativamente en iOS y Android, con servidor en TypeScript, PostgreSQL y Redis. Las funciones de IA usan modelos de lenguaje de vanguardia.",
about_global: "Global primero", about_global_desc: "Todas las apps soportan 17 idiomas desde el primer día: inglés, japonés, chino (simplificado y tradicional), coreano, español, portugués, francés, alemán, italiano, ruso, árabe, tailandés, indonesio, turco, neerlandés y vietnamita.",
contact_title: "Contáctanos", contact_desc: "¿Preguntas, comentarios o ideas? Nos encantaría escucharte."
},
pt: {
nav_apps: "Apps", nav_categories: "Categorias", nav_about: "Sobre", nav_contact: "Contato",
hero_badge: "78+ apps no Google Play",
hero_title: 'Experiências <span class="gradient">móveis inovadoras</span>',
hero_desc: "Criamos apps divertidos, úteis e com design impecável — de jogos mentais a ferramentas de IA e utilitários do dia a dia.",
stat_apps: "Apps publicados", stat_langs: "Idiomas", stat_platforms: "Plataformas", stat_categories: "Categorias",
cat_title: "O que criamos", cat_desc: "Apps diversos em múltiplas categorias, cada um desenvolvido com atenção aos detalhes",
cat_games: "Jogos e puzzles", cat_games_desc: "Desafios mentais, batalhas de digitação, quizzes e desafios. De rodadas de 30 segundos a puzzles complexos.",
cat_ai: "Ferramentas com IA", cat_ai_desc: "Apps inteligentes com IA para aprendizado por fotos, diários de voz, coaching de encontros, prática de debate e mais.",
cat_encyclopedia: "Enciclopédias e guias", cat_encyclopedia_desc: "Descubra o mundo — animais, plantas, insetos, vida marinha, gemas, dinossauros, aves, cogumelos, constelações e bandeiras.",
cat_health: "Saúde e bem-estar", cat_health_desc: "Lembretes de postura, timers de alongamento, preparação do sono, descanso visual, hidratação e análise de pele.",
cat_productivity: "Produtividade e finanças", cat_productivity_desc: "Decisões de poupar ou gastar, gestão de assinaturas, garantias, ferramentas PDF, planejadores e visualização.",
cat_social: "Social e diversão", cat_social_desc: "Roletas para filmes, encontros, jantares e temas de estudo. Jogos de festa, testes de compatibilidade e desafios.",
cat_education: "Educação e aprendizado", cat_education_desc: "Aprendizado de idiomas, treinamento auditivo, vocabulário com fotos e ferramentas de estudo.",
cat_travel: "Viagens e mapas", cat_travel_desc: "Mapas de segurança, guias de cidades, carregadores EV, tempos de espera e comida local.",
featured_title: "Apps em destaque", featured_desc: "Uma seleção dos nossos apps mais populares",
app_30sec: "Jogo de trivia rápido. Responda o máximo de perguntas em 30 segundos.", app_snaplingo: "Aponte a câmera e aprenda vocabulário em múltiplos idiomas com IA.",
app_lifetrace: "Gravador de vida com IA. Capture e reflita sobre seus momentos diários.", app_brainburst: "Treine seu cérebro com desafios cognitivos rápidos.",
app_keyclash: "Batalha de digitação competitiva. Compita contra o relógio.", app_geosense: "Quiz de localização. Adivinhe onde cada foto foi tirada.",
app_chaos: "Desafios diários aleatórios que te tiram da zona de conforto.", app_debateme: "Pratique debate com IA. Aprimore seus argumentos.",
app_nodo: "Elegante puzzle de conexão de nós. Regras simples, estratégia profunda.", app_realfeel: "App de clima focado na sensação real, não apenas números.",
app_dreamlog: "Registre seus sonhos e explore um mapa mundial de locais e temas.", app_fileforce: "Poderoso gerenciador de PDF. Combine, divida, anote e organize.",
tag_game: "Jogo", tag_ai_edu: "IA / Educação", tag_ai_util: "IA / Utilidade", tag_quiz: "Quiz", tag_lifestyle: "Estilo de vida", tag_puzzle: "Puzzle", tag_weather: "Clima", tag_productivity: "Produtividade",
trace_title: "Série Trace", trace_desc: "Descubra o mundo através da nossa coleção de enciclopédias ilustradas",
trace_forest: "Explore cogumelos e ecossistemas florestais", trace_dino: "Descubra dinossauros de todas as eras", trace_marine: "Mergulhe em criaturas oceânicas",
trace_bug: "Identifique e aprenda sobre insetos", trace_botanica: "Guia de plantas, flores e botânica", trace_feather: "Identificação de aves e curiosidades",
trace_gem: "Guia de gemas, minerais e cristais", trace_paw: "Enciclopédia de raças de cães", trace_astro: "Constelações e mapas estelares",
trace_flag: "Bandeiras do mundo e dados de países", trace_heritage: "Patrimônio mundial e marcos culturais", trace_wild: "Animais selvagens do mundo",
about_title: "Sobre SK APPS", about_desc: "Criando apps que as pessoas realmente querem usar",
about_approach: "Nossa abordagem", about_approach_desc: "Cada app segue os mesmos princípios: design limpo, desempenho rápido e utilidade genuína. Usamos Flutter para consistência multiplataforma, suportamos 17 idiomas desde o início.",
about_tech: "Tecnologia", about_tech_desc: "Construído com Flutter e Node.js. Nossos apps rodam nativamente em iOS e Android, com servidor em TypeScript, PostgreSQL e Redis.",
about_global: "Global primeiro", about_global_desc: "Todos os apps suportam 17 idiomas desde o primeiro dia: inglês, japonês, chinês (simplificado e tradicional), coreano, espanhol, português, francês, alemão, italiano, russo, árabe, tailandês, indonésio, turco, holandês e vietnamita.",
contact_title: "Entre em contato", contact_desc: "Tem perguntas, feedback ou ideias? Adoraríamos ouvir você."
},
fr: {
nav_apps: "Apps", nav_categories: "Catégories", nav_about: "À propos", nav_contact: "Contact",
hero_badge: "78+ applis sur Google Play",
hero_title: 'Expériences <span class="gradient">mobiles innovantes</span>',
hero_desc: "Nous créons des applications amusantes, utiles et magnifiquement conçues — des jeux cérébraux aux outils IA et utilitaires quotidiens.",
stat_apps: "Apps publiées", stat_langs: "Langues", stat_platforms: "Plateformes", stat_categories: "Catégories",
cat_title: "Ce que nous créons", cat_desc: "Des applications variées dans de multiples catégories, chacune développée avec soin",
cat_games: "Jeux et puzzles", cat_games_desc: "Défis cérébraux, batailles de frappe, quiz et challenges. De rondes de 30 secondes aux puzzles complexes.",
cat_ai: "Outils IA", cat_ai_desc: "Des apps intelligentes utilisant l'IA pour l'apprentissage photo, journaux vocaux, coaching amoureux, pratique du débat et plus.",
cat_encyclopedia: "Encyclopédies et guides", cat_encyclopedia_desc: "Découvrez le monde — animaux, plantes, insectes, vie marine, gemmes, dinosaures, oiseaux, champignons, constellations et drapeaux.",
cat_health: "Santé et bien-être", cat_health_desc: "Rappels de posture, minuteurs d'étirements, préparation au sommeil, repos des yeux, suivi d'hydratation et analyse de peau.",
cat_productivity: "Productivité et finance", cat_productivity_desc: "Décisions épargne/dépense, gestion d'abonnements, garanties, outils PDF, planificateurs et visualisation de vie.",
cat_social: "Social et fun", cat_social_desc: "Roulettes pour films, rendez-vous, dîners et sujets d'étude. Jeux de fête, tests de compatibilité et défis entre amis.",
cat_education: "Éducation et apprentissage", cat_education_desc: "Apprentissage des langues, vocabulaire photo et outils d'étude. Progressez avec la pratique quotidienne.",
cat_travel: "Voyages et cartes", cat_travel_desc: "Cartes de sécurité, guides de villes, bornes de recharge et cuisine locale. Explorez le monde en confiance.",
featured_title: "Apps en vedette", featured_desc: "Une sélection de nos applications les plus populaires",
app_30sec: "Jeu de trivia rapide. Répondez à un maximum de questions en 30 secondes.", app_snaplingo: "Pointez votre appareil photo et apprenez du vocabulaire en plusieurs langues avec l'IA.",
app_lifetrace: "Enregistreur de vie IA. Capturez et revivez vos moments quotidiens.", app_brainburst: "Entraînez votre cerveau avec des défis cognitifs rapides.",
app_keyclash: "Bataille de frappe compétitive. Affrontez le chrono et d'autres joueurs.", app_geosense: "Quiz de localisation photo. Devinez où chaque photo a été prise.",
app_chaos: "Défis quotidiens aléatoires qui vous sortent de votre zone de confort.", app_debateme: "Pratiquez le débat avec l'IA. Affûtez vos arguments sur n'importe quel sujet.",
app_nodo: "Élégant puzzle de connexion de nœuds. Règles simples, stratégie profonde.", app_realfeel: "App météo axée sur le ressenti réel, pas seulement les chiffres.",
app_dreamlog: "Enregistrez vos rêves et explorez une carte mondiale des lieux et thèmes.", app_fileforce: "Puissant gestionnaire de fichiers PDF. Fusionner, diviser, annoter et organiser.",
tag_game: "Jeu", tag_ai_edu: "IA / Éducation", tag_ai_util: "IA / Utilitaire", tag_quiz: "Quiz", tag_lifestyle: "Style de vie", tag_puzzle: "Puzzle", tag_weather: "Météo", tag_productivity: "Productivité",
trace_title: "Série Trace", trace_desc: "Découvrez le monde à travers notre collection d'encyclopédies illustrées",
trace_forest: "Explorez champignons et écosystèmes forestiers", trace_dino: "Découvrez les dinosaures de toutes les ères", trace_marine: "Plongez dans les créatures océaniques",
trace_bug: "Identifiez et apprenez sur les insectes", trace_botanica: "Guide des plantes, fleurs et botanique", trace_feather: "Identification des oiseaux et anecdotes",
trace_gem: "Guide des gemmes, minéraux et cristaux", trace_paw: "Encyclopédie des races de chiens", trace_astro: "Constellations et cartes célestes",
trace_flag: "Drapeaux du monde et infos pays", trace_heritage: "Patrimoine mondial et monuments culturels", trace_wild: "Animaux sauvages du monde entier",
about_title: "À propos de SK APPS", about_desc: "Créer des apps que les gens veulent vraiment utiliser",
about_approach: "Notre approche", about_approach_desc: "Chaque app suit les mêmes principes : design épuré, performance rapide et utilité réelle. Nous utilisons Flutter pour la cohérence multiplateforme et supportons 17 langues nativement.",
about_tech: "Technologie", about_tech_desc: "Construit avec Flutter et Node.js. Nos apps fonctionnent nativement sur iOS et Android, avec un serveur en TypeScript, PostgreSQL et Redis.",
about_global: "Global d'abord", about_global_desc: "Toutes les apps supportent 17 langues dès le premier jour : anglais, japonais, chinois (simplifié et traditionnel), coréen, espagnol, portugais, français, allemand, italien, russe, arabe, thaï, indonésien, turc, néerlandais et vietnamien.",
contact_title: "Nous contacter", contact_desc: "Des questions, commentaires ou idées ? Nous serions ravis de vous entendre."
},
de: {
nav_apps: "Apps", nav_categories: "Kategorien", nav_about: "Über uns", nav_contact: "Kontakt",
hero_badge: "78+ Apps bei Google Play",
hero_title: 'Innovative <span class="gradient">mobile Erlebnisse</span>',
hero_desc: "Wir entwickeln unterhaltsame, nützliche und wunderschön gestaltete Apps — von Denkspielen bis zu KI-Tools und Alltagshelfern.",
stat_apps: "Veröffentlichte Apps", stat_langs: "Sprachen", stat_platforms: "Plattformen", stat_categories: "App-Kategorien",
cat_title: "Was wir entwickeln", cat_desc: "Vielfältige Apps in mehreren Kategorien, jede mit Liebe zum Detail entwickelt",
cat_games: "Spiele & Rätsel", cat_games_desc: "Denksport, Tipp-Battles, Quizspiele und Challenges. Von 30-Sekunden-Runden bis zu tiefgründigen Rätseln.",
cat_ai: "KI-Tools", cat_ai_desc: "Smarte Apps mit KI für Foto-Lernen, Sprach-Tagebücher, Dating-Coaching, Debattieren und mehr.",
cat_encyclopedia: "Enzyklopädien & Guides", cat_encyclopedia_desc: "Entdecke die Welt — Tiere, Pflanzen, Insekten, Meereslebewesen, Edelsteine, Dinosaurier, Vögel, Pilze, Sternbilder und Flaggen.",
cat_health: "Gesundheit & Wellness", cat_health_desc: "Haltungserinnerungen, Dehn-Timer, Schlafvorbereitung, Augenpausen, Wasserzufuhr, Stimmungstagebuch und Hautpflegeanalyse.",
cat_productivity: "Produktivität & Finanzen", cat_productivity_desc: "Spar- oder Ausgabenentscheidungen, Abo-Verwaltung, Garantieverwaltung, PDF-Tools, Tagesplaner und Lebensvisualisierung.",
cat_social: "Social & Fun", cat_social_desc: "Zufallsgeneratoren für Filme, Dates, Abendessen und Lernthemen. Partyspiele, Kompatibilitätstests und Freundes-Challenges.",