-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1526 lines (1404 loc) · 55.6 KB
/
index.html
File metadata and controls
1526 lines (1404 loc) · 55.6 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>
<script>
(function() {
const hostname = window.location.hostname;
const isLocal = hostname === 'localhost' ||
hostname === '127.0.0.1' ||
hostname.startsWith('192.168.') ||
hostname.startsWith('10.') ||
hostname.startsWith('172.16.');
// 1. 로컬이 아닐 때만 GA 스크립트 로드 및 초기화
if (!isLocal) {
const script = document.createElement('script');
script.async = true;
script.src = 'https://www.googletagmanager.com/gtag/js?id=G-4YZHC1G9FN';
script.onload = function() {
window.dataLayer = window.dataLayer || [];
window.gtag = function(){ dataLayer.push(arguments); };
gtag('js', new Date());
gtag('config', 'G-4YZHC1G9FN');
console.log("GA4 활성화됨 (운용 환경)");
};
document.head.appendChild(script);
} else {
// 로컬일 때는 빈 함수 생성
window.gtag = function() {
console.log("로컬 환경 - 데이터 전송 차단됨:", arguments);
};
console.log("GA4 비활성화됨 (로컬 환경)");
}
// 2. 카테고리 트래킹 함수
window.trackCategory = function(categoryName) {
if (window.gtag) {
gtag('event', 'select_category', {
'category_name': categoryName
});
}
};
})();
</script>
<meta charset="UTF-8">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="theme-color" content="#145454">
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" sizes="167x167" href="/images/icon-167.png">
<link rel="apple-touch-icon" sizes="180x180" href="/images/icon-180.png">
<title>수수랜드 | Soosooland - 무료 온라인 퍼즐게임 </title>
<meta name="naver-site-verification" content="c6485afe8a0163b7b0c83666e73fa30233387db5" />
<meta name="description" content="수수랜드는 단어 게임, 연산게임, 논리게임, 전략 게임이 있는 퍼즐 게임 플랫폼입니다. Soosooland offers word, math, logic, and strategy puzzle games." />
<meta name="keywords" content="수수랜드, soosooland, Brain Rot Prevention Games, K-game for Brain Training,Korean Educational Games, 두뇌개발 게임, 퍼즐 게임, word games, math games, strategy games, educational games, free online games, puzzle games, K-game">
<!-- Open Graph -->
<meta property="og:title" content="수수랜드 | Soosooland - Free Online Games">
<meta property="og:description" content=" 즐거운 퍼즐 놀이터, 수수랜드 Fun Puzzle Game Playground, Soosooland">
<meta property="og:type" content="website">
<meta property="og:url" content="https://soosooland.com">
<meta property="og:image" content="https://soosooland.com/images/soosoo.jpeg">
<meta property="og:site_name" content="수수랜드 Soosooland">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Soosooland - Free Online Puzzle Games">
<meta name="twitter:description" content=" Soosooland offers word, math, logic and strategy games. ">
<meta name="twitter:image" content="https://soosooland.com/images/soosoo.jpeg">
<link rel="canonical" href="https://soosooland.com/">
<link rel="stylesheet" href="https://soosooland.com/css/protection.css">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Soosooland",
"url": "https://soosooland.com",
"description": "Free online puzzle and strategy games platform",
"inLanguage": ["en", "ko"],
"potentialAction": {
"@type": "SearchAction",
"target": "https://soosooland.com/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script src="https://soosooland.com/js/protection.js"></script>
<script>
window.addEventListener('DOMContentLoaded', function() {
const pwaCard = document.getElementById('pwaCard');
if (pwaCard) {
if (window.matchMedia('(display-mode: standalone)').matches) {
pwaCard.style.display = 'none';
}
}
});
</script>
<style>
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Pretendard', sans-serif;
background: #145454;
min-height: 100vh;
padding: 20px;
overflow-y: auto;
}
.games-hub-header {
display: flex;
align-items: center;
justify-content: center;
position: relative;
margin-bottom: 20px;
font-size: clamp(1.5rem, 4.3vw, 2.1rem);
color: #f0f8ff;
}
.hub-title {
margin: 0;
text-align: center;
font-size: clamp(1.3rem, 3.7vw, 1.9rem);
font-weight: bold;
margin-bottom: 20px;
color: #f0f8ff;
}
.header-buttons {
display: flex;
align-items: center;
gap: 15px; /* 언어 버튼과 후원 버튼 사이 간격 */
}
.language-toggle {
position: absolute;
left: 20px;
top: 0;
}
.language-btn {
background: rgba(255,255,255,0.3);
color: #ffffff;
border: 2px solid rgba(255,255,255,0.6);
padding: 10px;
margin: 0 5px;
border-radius: 10px;
cursor: pointer;
font-size: clamp(0.9rem,2vw,1rem);
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.language-btn.active {
background: rgba(255,255,255,0.95);
color: #2c5f2d;
border-color: rgba(255,255,255,1);
box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
.language-btn:hover {
background: rgba(255,255,255,0.4);
transform: translateY(-2px);
}
.category-filter {
display: flex;
gap: 10px;
padding: 20px;
justify-content: center;
flex-wrap: wrap;
}
.category-btn {
padding: 10px 20px;
border: 2px solid #ddd;
border-radius: 20px;
background: white;
cursor: pointer;
font-size: 16px;
transition: all 0.3s;
}
.category-btn.active {
background: #4CAF50;
color: white;
border-color: #4CAF50;
}
.category-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.games-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}
.game-card {
background: rgba(255,255,255,0.95);
border-radius: 15px;
max-width: 300px;
padding: 20px;
box-shadow: 0 8px 25px rgba(0,0,0,0.3);
transition: all 0.3s ease;
cursor: pointer;
position: relative;
}
.game-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.game-card-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 15px;
}
.game-emoji {
font-size:1.0rem;
}
.game-title {
font-size: clamp(1.2rem, 3vw, 1.4rem);
font-weight: bold;
color: #2e8b8b;
word-wrap: break-word;
}
.game-description-text {
color: #333;
line-height: 1.5;
margin-bottom: 15px;
font-size: 1rem;
word-wrap: break-word;
text-align: center;
}
.game-difficulty {
background: #2e8b8b;
color: white;
padding: 5px 12px;
border-radius: 15px;
font-size: clamp(0.8rem, 2vw, 0.9rem);
display: inline-block;
margin-bottom: 10px;
text-align: center;
}
.github-link {
color: #2e8b8b;
text-decoration: none;
font-size: clamp(0.9rem, 2.2vw, 1rem);
}
.github-link:hover {
text-decoration: underline;
}
.install-card {
background: rgba(255,255,255,0.95);
border-radius: 15px;
max-width: 300px;
padding: 20px;
box-shadow: 0 8px 25px rgba(0,0,0,0.3);
transition: all 0.3s ease;
cursor: pointer;
position: relative;
}
.hidden {
display: none !important;
}
/* 순위 배지 스타일 */
.rank-badge {
position: absolute;
top: -8px;
right: -8px;
padding: 6px 12px;
border-radius: 20px;
font-weight: bold;
font-size: 0.9rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
z-index: 10;
}
.rank-1 {
background: linear-gradient(135deg, #FFD700, #FFA500);
color: #8B4513;
}
.rank-2 {
background: linear-gradient(135deg, #C0C0C0, #E8E8E8);
color: #4A4A4A;
}
.rank-3 {
background: linear-gradient(135deg, #CD7F32, #B87333);
color: #FFFFFF;
}
.rank-new {
background: #6bfa69;
color: #FFFFFF;
}
.construction-badge {
background: linear-gradient(45deg, #FFD700, #FFA500);
color: #000;
position: absolute;
top: -8px;
right: -8px;
padding: 6px 12px;
border-radius: 20px;
font-weight: bold;
font-size: 0.9rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
z-index: 10;
}
@keyframes pulse-gold {
0%, 100% {
transform: scale(1);
box-shadow: 0 4px 12px rgba(255, 215, 0, 0.6);
}
50% {
transform: scale(1.1);
box-shadow: 0 6px 20px rgba(255, 215, 0, 0.8);
}
}
#installButtonKo {
background: #2e8b8b;
color: white;
padding: 5px 12px;
padding: 12px 24px;
border: none;
border-radius: 15px;
font-size: clamp(0.8rem, 2vw, 0.9rem);
cursor: pointer;
margin: 10px;
text-align: center;
}
#installButtonKo:hover {
background-color: #45a049;
}
#installButtonEn {
background: #2e8b8b;color: white;
padding: 5px 12px;
padding: 12px 24px;
border: none;
border-radius: 15px;
font-size: clamp(0.8rem, 2vw, 0.9rem);
cursor: pointer;
margin: 10px;
text-align: center;
}
#installButtonEn:hover {
background-color: #45a049;
}
.footer {
background: #145454;
text-align: center;
font-size: 14px;
color:white;
position: relative;
left: 0;
width: 90vw;
max-width: none;
margin-left: calc(-50vw + 50%);
padding: 40px 20px;
}
.footer a {
color: white;
text-decoration: none;
margin: 0 10px;
}
.footer a:hover {
text-decoration: underline;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 668px) {
body {
padding: 10px;
}
.games-grid {
grid-template-columns: 1fr;
gap: 15px;
}
.game-card {
padding: 15px;
}
#installButtonKo {
padding: 15px;
}
#installButtonEn {
padding: 15px;
}
}
@media (max-width: 480px) {
.hub-title {
margin-top: 20px;
}
.header-buttons {
flex-direction: inline;
gap: 10px;
}
.language-toggle {
position: static;
margin-top: 10px;
}
.games-hub-header {
flex-direction: column;
}
}
@media (max-height: 500px) and (orientation: landscape) {
body {
min-height: auto;
}
.hub-title {
font-size: 2rem;
margin-bottom: 15px;
}
.games-grid {
gap: 15px;
}
.game-card {
padding: 15px;
}
#installButtonKo {
padding: 15px;
}
#installButtonEn {
padding: 15px;
}
}
</style>
</head>
<body>
<!-- 수수랜드 인트로 오버레이 -->
<div id="intro" style="position:fixed;inset:0;z-index:9999;background:#2e8b8b;display:grid;place-items:center;overflow:hidden">
<div style="position:absolute;inset:0;display:grid;place-items:center;padding:8vw">
<div style="
position:absolute;left:-25%;right:-25%;bottom:-18%;
height:55%;border-radius:50% 50% 0 0 / 100% 100% 0 0;
background:radial-gradient(120% 100% at 50% 100%, #369e9e 0%, #2e8b8b 60%, #256f6f 100%);
"></div>
<div id="intro-logo" style="
font-family:Pretendard, system-ui, sans-serif;
font-weight:900; letter-spacing:0.02em;
color:#f0f8ff; text-shadow:0 2px 10px rgba(0,0,0,.35);
transform:scale(.8); opacity:0; will-change:transform,opacity;
font-size:clamp(36px,10vw,86px);
animation:intro-rise 2600ms ease forwards;
">Soosooland</div>
<div id="petals"></div>
<button id="intro-start" style="
position:absolute;bottom:6vh;left:50%;transform:translateX(-50%);
background:rgba(255,255,255,.9);color:#2e8b8b;border:0;border-radius:999px;
padding:10px 16px;font-weight:700;box-shadow:0 6px 20px rgba(0,0,0,.2);
display:none;cursor:pointer;
"></button>
</div>
<audio id="intro-audio" preload="auto">
<source src="https://actions.google.com/sounds/v1/animals/bird_chirp.ogg" type="audio/ogg">
</audio>
</div>
<!-- 메인 페이지 배경 꽃잎 (인트로 후에도 계속) -->
<div id="background-petals" style="
position:fixed;inset:0;pointer-events:none;z-index:1;overflow:hidden;opacity:0;
"></div>
<style>
@keyframes intro-rise{
0% {opacity:0; transform:scale(.8)}
60% {opacity:1; transform:scale(1.06)}
100% {opacity:1; transform:scale(1.00)}
}
@keyframes petal-fly{
0% {transform:translate3d(var(--x,0), 0, 0) rotate(0deg); opacity:.95}
100% {transform:translate3d(calc(var(--x,0) + 220px), -520px, 0) rotate(360deg); opacity:0}
}
@keyframes bg-petal-fly{
0% {transform:translate3d(var(--x,0), 0, 0) rotate(0deg); opacity:.4}
100% {transform:translate3d(calc(var(--x,0) + 180px), -450px, 0) rotate(360deg); opacity:0}
}
</style>
<script>
(function() {
// PWA 감지
const isPWA = window.matchMedia('(display-mode: standalone)').matches;
const introDelay = isPWA ? 3000 : 2500;
const intro = document.getElementById('intro');
const petals = document.getElementById('petals');
const bgPetals = document.getElementById('background-petals');
const startBtn = document.getElementById('intro-start');
const audio = document.getElementById('intro-audio');
// 꽃잎 생성 함수
function createPetal(container, animationName = 'petal-fly', duration = 3500) {
const petal = document.createElement('div');
const startX = Math.random() * window.innerWidth;
const drift = (Math.random() - 0.5) * 100;
petal.style.cssText = `
position:absolute;
left:${startX}px;
bottom:-20px;
width:12px;
height:12px;
background:#ffc0cb;
border-radius:50% 0;
opacity:.95;
animation:${animationName} ${duration}ms linear forwards;
--x:${drift}px;
`;
container.appendChild(petal);
setTimeout(() => petal.remove(), duration);
}
// 인트로 꽃잎 (많이, 빠르게)
const introInterval = setInterval(() => createPetal(petals), 180);
// 1️⃣ 버튼 안 보이게
startBtn.style.display = 'none';
// 배경 꽃잎 시작 함수 (적게, 천천히)
function startBackgroundPetals() {
setInterval(() => createPetal(bgPetals, 'bg-petal-fly', 4500), 1200);
}
// 인트로 종료
setTimeout(() => {
clearInterval(introInterval);
startBtn.textContent = 'Start';
startBtn.style.display = 'block';
startBtn.onclick = () => {
audio.play().catch(() => {});
intro.style.transition = 'opacity 800ms';
intro.style.opacity = '0';
setTimeout(() => {
intro.remove();
// 배경 꽃잎 시작
bgPetals.style.transition = 'opacity 1s';
bgPetals.style.opacity = '1';
startBackgroundPetals();
}, 800);
};
}, introDelay);
// 2️⃣ introDelay 후에 버튼을 자동으로 눌러줌
setTimeout(() => startBtn.onclick(), introDelay);
})();
</script>
<div class="games-hub">
<div class="games-hub-header">Soosooland
<div class="header-buttons">
<div class="language-toggle">
<button class="language-btn active" onclick="setLanguage('ko')">한국어</button>
<button class="language-btn" onclick="setLanguage('en')">English</button>
</div>
</div>
</div>
<!-- 카테고리 필터 -->
<div class="category-filter">
<button class="category-btn active" onclick="filterGames('popular', this); trackCategory('전체')">
<span class="ko-text">전체</span>
<span class="en-text hidden">Popular</span>
</button>
<button class="category-btn" onclick="filterGames('word', this); trackCategory('단어')">
<span class="ko-text">단어</span>
<span class="en-text hidden">Word</span>
</button>
<button class="category-btn" onclick="filterGames('quiz', this); trackCategory('퀴즈')">
<span class="ko-text">퀴즈</span>
<span class="en-text hidden">Quiz</span>
</button>
<button class="category-btn" onclick="filterGames('math', this); trackCategory('연산')">
<span class="ko-text">연산</span>
<span class="en-text hidden">Math</span>
</button>
<button class="category-btn" onclick="filterGames('logic', this); trackCategory('논리')">
<span class="ko-text">논리</span>
<span class="en-text hidden">Logic</span>
</button>
<button class="category-btn" onclick="filterGames('strategy', this); trackCategory('전략')">
<span class="ko-text">전략</span>
<span class="en-text hidden">Strategy</span>
</button>
</div>
<div class="games-grid">
<!-- 넘즐 -->
<div class="game-card" data-category="math" data-rank="8" data-mobile="true" onclick="location.href='https://soosooland.com/numzzle'">
<div class="game-card-header">
<div class="game-emoji">👤</div>
<div class="game-title">
<span class="ko-text">넘즐</span>
<span class="en-text hidden">NUMZZLE</span>
</div>
</div>
<div class="game-description-text">
<div class="ko-text">
<strong>숫자 카드와 연산카드로 수식을 만들기</strong><br>
<div align="center">
<img src="https://soosooland.com/images/numzzle.jpeg" width="150" alt="Numzzle - Number Game"><br>
</div>
</div>
<div class="en-text hidden">
<strong>Create equations using number and operation cards</strong><br>
<div align="center">
<img src="https://soosooland.com/images/numzzle.jpeg" width="150" alt="Numzzle - Number puzzle challenge against computer"><br>
</div>
</div>
<div class="game-difficulty">
<span class="ko-text">넘즐 하기</span>
<span class="en-text hidden">play Numzzle</span>
</div>
</div>
</div>
<!-- 넘즐X -->
<div class="game-card" data-category="math" data-rank="21" data-mobile="true" onclick="location.href='https://soosooland.com/numzzlex'">
<div class="game-card-header">
<div class="game-emoji">👤</div>
<div class="game-title">
<span class="ko-text">넘즐X</span>
<span class="en-text hidden">NUMZZLEX</span>
</div>
</div>
<div class="game-description-text">
<div class="ko-text">
<strong>숫자 카드와 연산카드로 수식을 만들기</strong><br>
<div align="center">
<img src="https://soosooland.com/images/numzzle.jpeg" width="150" alt="Numzzle - Number Game"><br>
</div>
</div>
<div class="en-text hidden">
<strong>Create equations using number and operation cards</strong><br>
<div align="center">
<img src="https://soosooland.com/images/numzzle.jpeg" width="150" alt="Numzzle - Number Game"><br>
</div>
</div>
<div class="game-difficulty">
<span class="ko-text">넘즐X 하기</span>
<span class="en-text hidden">play NumzzleX</span>
</div>
</div>
</div>
<!-- 넘플 -->
<div class="game-card" data-category="math" data-rank="15" data-mobile="true" onclick="location.href='https://soosooland.com/numpple'">
<div class="game-card-header">
<div class="game-emoji">👥</div>
<div class="game-title">
<span class="ko-text">넘플</span>
<span class="en-text hidden">NUMPPLE</span>
</div>
</div>
<div class="game-description-text">
<div class="ko-text">
<strong>숫자 카드와 연산카드로 수식을 만들기</strong><br>
<div align="center">
<img src="https://soosooland.com/images/numzzle.jpeg" width="150" alt="Numzzle - Number Game"><br>
</div>
</div>
<div class="en-text hidden">
<strong>Create equations using number and operation cards</strong><br>
<div align="center">
<img src="https://soosooland.com/images/numzzle.jpeg" width="150" alt="Numzzle - Number Game"><br>
</div>
</div>
<div class="game-difficulty">
<span class="ko-text">넘플 하기</span>
<span class="en-text hidden">play Numpple</span>
</div>
</div>
</div>
<!-- 넘플X-->
<div class="game-card" data-category="math" data-rank="23" data-mobile="true" onclick="location.href='https://soosooland.com/numpplex'">
<div class="game-card-header">
<div class="game-emoji">👥</div>
<div class="game-title">
<span class="ko-text">넘플X</span>
<span class="en-text hidden">NUMPPLEX</span>
</div>
</div>
<div class="game-description-text">
<div class="ko-text">
<strong>숫자 카드와 연산카드로 수식을 만들기</strong><br>
<div align="center">
<img src="https://soosooland.com/images/numzzle.jpeg" width="150" alt="Numzzle - Number Game"><br>
</div>
</div>
<div class="en-text hidden">
<strong>Create equations using number and operation cards</strong><br>
<div align="center">
<img src="https://soosooland.com/images/numzzle.jpeg" width="150" alt="Numzzle - Number Game"><br>
</div>
</div>
<div class="game-difficulty">
<span class="ko-text">넘플X 하기</span>
<span class="en-text hidden">play NumppleX</span>
</div>
</div>
</div>
<!-- 넘털 게임 -->
<div class="game-card" data-category="math" data-rank="18" data-mobile="true" onclick="location.href='https://soosooland.com/numtter'">
<div class="game-card-header">
<div class="game-emoji">👤</div>
<div class="game-title">
<span class="ko-text">넘털</span>
<span class="en-text hidden">NUMTTER</span>
</div>
</div>
<div class="game-description-text">
<div class="ko-text">
<strong>숫자카드를 다 털면 성공</strong><br>
<div align="center">
<img src="https://soosooland.com/images/numzzle.jpeg" width="150" alt="Numzzle - Number Game"><br>
</div>
</div>
<div class="en-text hidden">
<strong>Create equations using number and operation cards</strong><br>
<div align="center">
<img src="https://soosooland.com/images/numzzle.jpeg" width="150" alt="Numzzle - Number Game"><br>
</div>
</div>
<div class="game-difficulty">
<span class="ko-text">넘털 하기</span>
<span class="en-text hidden">play numtter</span>
</div>
</div>
</div>
<!-- 모음스쿨 -->
<div class="game-card" data-category="quiz" data-rank="1" data-mobile="true" onclick="location.href='https://soosooland.com/school'">
<div class="rank-badge rank-1">🥇 1st</div>
<div class="game-card-header">
<div class="game-emoji">👤</div>
<div class="game-title">
<span class="ko-text">모음 스쿨</span>
<span class="en-text hidden">Moeum School</span>
</div>
</div>
<div class="game-description-text">
<div class="ko-text">
<strong>초등학생 학습 퀴즈</strong><br>
<div align="center">
<img src="https://soosooland.com/images/moeum.jpeg" width="150" alt="Moeum School"><br>
</div>
</div>
<div class="en-text hidden">
<strong>Moeum School</strong><br>
<div align="center">
<img src="https://soosooland.com/images/moeum.jpeg" width="150" alt="Moeum School"><br>
</div>
</div>
<div class="game-difficulty">
<span class="ko-text">모음스쿨 하기</span>
<span class="en-text hidden">play Moeum school</span>
</div>
</div>
</div>
<!-- 모음퀴즈 -->
<div class="game-card" data-category="quiz" data-rank="13" data-mobile="true" onclick="location.href='https://soosooland.com/moeum-quiz'">
<div class="game-card-header">
<div class="game-emoji">👤</div>
<div class="game-title">
<span class="ko-text">모음 퀴즈 </span>
<span class="en-text hidden">Moeum quiz</span>
</div>
</div>
<div class="game-description-text">
<div class="ko-text">
<strong>빈 자리에 자음을 넣어 완성하세요.</strong><br>
<div align="center">
<img src="https://soosooland.com/images/moeum.jpeg" width="150" alt="Moeum Quiz - Korean vowel puzzle"><br>
</div>
</div>
<div class="en-text hidden">
<strong>Moeum Quiz</strong><br>
<div align="center">
<img src="https://soosooland.com/images/moeum.jpeg" width="150" alt="Moeum Quiz - Korean vowel puzzle"><br>
</div>
</div>
<div class="game-difficulty">
<span class="ko-text">모음퀴즈 하기</span>
<span class="en-text hidden">play Moeum-quiz</span>
</div>
</div>
</div>
<!-- 둘이모음 -->
<div class="game-card" data-category="quiz" data-rank="22" data-mobile="true" onclick="location.href='https://soosooland.com/doori'">
<div class="game-card-header">
<div class="game-emoji">👥</div>
<div class="game-title">
<span class="ko-text">둘이 모음</span>
<span class="en-text hidden">Doori Moeum</span>
</div>
</div>
<div class="game-description-text">
<div class="ko-text">
<strong>빈 자리에 자음을 넣어 완성하세요.</strong><br>
<div align="center">
<img src="https://soosooland.com/images/moeum.jpeg" width="150" alt="Moeum Quiz - Korean vowel puzzle"><br>
</div>
</div>
<div class="en-text hidden">
<strong>Doori Moeum</strong><br>
<div align="center">
<img src="https://soosooland.com/images/moeum.jpeg" width="150" alt="Moeum Quiz - Korean vowel puzzle"><br>
</div>
</div>
<div class="game-difficulty">
<span class="ko-text">둘이 모음 하기</span>
<span class="en-text hidden">play Doori Moeum</span>
</div>
</div>
</div>
<!-- 모음 라운드 -->
<div class="game-card" data-category="quiz" data-rank="5" data-mobile="true" onclick="location.href='https://soosooland.com/round'">
<div class="game-card-header">
<div class="game-emoji">👤</div>
<div class="game-title">
<span class="ko-text">모음 라운드</span>
<span class="en-text hidden">Moeum Round</span>
</div>
</div>
<div class="game-description-text">
<div class="ko-text">
<strong>빈 자리에 자음을 넣어 완성하세요.</strong><br>
<div align="center">
<img src="https://soosooland.com/images/moeum.jpeg" width="150" alt="Moeum Quiz - Korean vowel puzzle"><br>
</div>
</div>
<div class="en-text hidden">
<strong>Moeum Round</strong><br>
<div align="center">
<img src="https://soosooland.com/images/moeum.jpeg" width="150" alt="Moeum Quiz - Korean vowel puzzle"><br>
</div>
</div>
<div class="game-difficulty">
<span class="ko-text">모음 라운드 하기</span>
<span class="en-text hidden">play Moeum Round</span>
</div>
</div>
</div>
<!-- 워퍼즈-->
<div class="game-card" data-category="word" data-rank="4" data-mobile="false" onclick="location.href='https://soosooland.com/worpuzz'">
<div class="game-card-header">
<div class="game-emoji">👤</div>
<div class="game-title">
<span class="ko-text">워퍼즈</span>
<span class="en-text hidden">WORPUZZ</span>
</div>
</div>
<div class="game-description-text">
<div class="ko-text">
<strong>중간 격자 속에 숨어있는 단어를 찾으세요.</strong><br>
<div align="center">
<img src="https://soosooland.com/images/worpuzz.jpeg" width="150" alt="Worpuzz - Word search puzzle"><br>
</div>
</div>
<div class="en-text hidden">
<strong>Find hidden letters in the medium grid</strong><br>
<div align="center">
<img src="https://soosooland.com/images/worpuzz.jpeg" width="150" alt="Worpuzz - Word search puzzle"><br>
</div>
</div>
<div class="game-difficulty">
<span class="ko-text">워퍼즈 하기</span>
<span class="en-text hidden">play Worpuzz </span>
</div>
</div>
</div>
<!-- 워퍼즈 메이트-->
<div class="game-card" data-category="word" data-rank="20" data-mobile="false" onclick="location.href='https://soosooland.com/worpuzzmate'">
<div class="game-card-header">
<div class="game-emoji">👥</div>
<div class="game-title">
<span class="ko-text">워퍼즈 메이트</span>
<span class="en-text hidden">WORPUZZ MATE</span>
</div>
</div>
<div class="game-description-text">
<div class="ko-text">
<strong>중간 격자 속에 숨어있는 단어를 찾으세요.</strong><br>
<div align="center">
<img src="https://soosooland.com/images/worpuzz.jpeg" width="150" alt="Worpuzz - Word search puzzle"><br>
</div>
</div>
<div class="en-text hidden">
<strong>Find hidden letters in the medium grid</strong><br>
<div align="center">
<img src="https://soosooland.com/images/worpuzz.jpeg" width="150" alt="Worpuzz - Word search puzzle"><br>
</div>
</div>
<div class="game-difficulty">
<span class="ko-text">워퍼즈 메이트 하기</span>
<span class="en-text hidden">play Worpuzzmate</span>
</div>
</div>
</div>
<!-- 워퍼즈 브리즈 -->
<div class="game-card" data-category="word" data-rank="16" data-mobile="false" onclick="location.href='https://soosooland.com/breeze'">
<div class="game-card-header">
<div class="game-emoji">👤</div>
<div class="game-title">
<span class="ko-text">워퍼즈 브리즈</span>
<span class="en-text hidden">WORPUZZ BREEZE</span>
</div>
</div>
<div class="game-description-text">
<div class="ko-text">
<strong>중간 격자 속에 숨어있는 단어를 찾으세요.</strong><br>
<div align="center">
<img src="https://soosooland.com/images/worpuzz.jpeg" width="150" alt="Worpuzz - Word search puzzle"><br>
</div>
</div>
<div class="en-text hidden">
<strong>Find hidden letters in the medium grid</strong><br>
<div align="center">
<img src="https://soosooland.com/images/worpuzz.jpeg" width="150" alt="Worpuzz - Word search puzzle"><br>
</div>
</div>
<div class="game-difficulty">
<span class="ko-text">워퍼즈 브리즈 하기</span>
<span class="en-text hidden">play Worpuzz Breeze</span>
</div>
</div>
</div>
<!-- 브리즈 젠-->
<div class="game-card" data-category="word" data-rank="14" data-mobile="false" onclick="location.href='https://soosooland.com/zen'">
<div class="game-card-header">
<div class="game-emoji">👤</div>
<div class="game-title">
<span class="ko-text">브리즈 젠</span>
<span class="en-text hidden">BREEZE ZEN</span>
</div>
</div>
<div class="game-description-text">
<div class="ko-text">
<strong>큰 격자 속에 숨어있는 단어를 찾으세요.</strong><br>
<div align="center">