-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
765 lines (715 loc) · 43.1 KB
/
index.html
File metadata and controls
765 lines (715 loc) · 43.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-adsense-account" content="ca-pub-1308401027139954">
<meta name="description" content="Play Mint is a curated collection of fast-loading browser games with tips, spotlight picks, and honest recommendations for puzzle, arcade, and strategy fans.">
<title>Play Mint - Free Online Games</title>
<link rel="stylesheet" href="assets/css/style.css">
<style>
.filter-buttons {
margin: 15px 0;
display: flex;
flex-wrap: wrap;
gap: 3px;
}
.filter-btn {
background-color: #f8f9fa;
border: 1px solid #dee2e6;
color: #495057;
padding: 8px 16px;
border-radius: 25px;
cursor: pointer;
font-size: 14px;
transition: all 0.2s ease-in-out;
white-space: nowrap;
}
.filter-btn:hover {
background-color: #e9ecef;
border-color: #adb5bd;
}
.filter-btn.active {
background-color: #007bff;
border-color: #007bff;
color: white;
}
</style>
<!-- AdSense verification code -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1308401027139954"
crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="header-content">
<div class="header-left">
<h1>Play Mint</h1>
<p>Curated browser games with no downloads, quick tips, and a clean playing experience.</p>
<div class="header-pill-row">
<span class="pill">Hand-checked embeds</span>
<span class="pill">No-login play</span>
<a class="pill link-pill" href="guide.html">Game guides</a>
</div>
</div>
<div class="header-right">
<div class="header-utilities">
<div class="escape-info-wrapper">
<span id="info-icon" class="escape-info-icon" aria-label="Escape mode info">i</span>
<span id="escape-mode-button" class="escape-mode-text" role="button" tabindex="0">Escape mode</span>
<div id="info-modal" class="escape-info-modal" role="dialog" aria-label="Escape mode instructions">
<p><strong>Double-tap Space</strong> to open Space Exploration instantly.</p>
<p>Double-tap Space again to return to your last page.</p>
<p style="font-style: italic; color: #7f8c8d;">Keeps focus on work when you need a quick switch.</p>
<p style="font-size: 0.85rem; color: #2c3e50; margin-top: 10px; background: #fff8e1; padding: 8px 10px; border-radius: 8px; border: 1px solid #f2d488; font-weight: 600;">This shortcut does not hide ads or alter content; it only moves between Play Mint pages when you trigger it.</p>
</div>
</div>
<div id="total-games-count" class="pill highlighted-pill"></div>
<a class="pill link-pill" href="privacy-policy.html">Privacy</a>
</div>
<form id="search-form" class="search-form">
<div class="search-container">
<input type="text" id="search-input" placeholder="Search games..." autocomplete="off">
<button type="submit" style="display: flex; align-items: center; justify-content: center;"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16"><path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/></svg></button>
<div id="search-dropdown" class="search-dropdown">
<!-- Search results will be populated here -->
</div>
</div>
</form>
</div>
</div>
</header>
<section class="value-section">
<div class="container">
<div class="value-header">
<button class="scroll-to-games" type="button" onclick="document.querySelector('.game-grid').scrollIntoView({ behavior: 'smooth' });">
<span class="scroll-icon" aria-hidden="true"></span>
<span class="scroll-label">Jump to games</span>
</button>
<h2>What makes Play Mint worth visiting</h2>
<p>We hand-pick games that load fast, play well on mobile and desktop, and clearly explain controls before you start. Every title is reviewed for controls, load time, and stability; we replace broken embeds weekly and add notes about difficulty, device fit, and expected session length so you know exactly what you’re clicking into.</p>
</div>
<div class="value-marquee" aria-label="Highlights about Play Mint">
<div class="value-track">
<div class="value-card">
<h3>Curation with notes</h3>
<p>Every title is tagged by genre, pace, and difficulty so you can quickly find the right fit.</p>
</div>
<div class="value-card">
<h3>Zero-download setup</h3>
<p>All games are browser-native. No installers, no accounts, and no surprise redirects away from the page.</p>
</div>
<div class="value-card">
<h3>Play-tested on devices</h3>
<p>We check each game on phones, tablets, and laptops to keep controls responsive and screens readable.</p>
</div>
<div class="value-card">
<h3>Quick-start guidance</h3>
<p>Tap the guides link for bite-sized tips, best beginner picks, and troubleshooting steps for slow connections.</p>
</div>
<div class="value-card">
<h3>Fresh picks weekly</h3>
<p>Broken or slow titles are swapped out every week so you always land on working games.</p>
</div>
<div class="value-card">
<h3>Mobile-first media</h3>
<p>Responsive images per card keep load times low on 4G and small screens.</p>
</div>
<div class="value-card">
<h3>Ad-safety first</h3>
<p>Ads only load when content exists; we avoid pop-ups and redirect traps.</p>
</div>
<div class="value-card">
<h3>Accessibility basics</h3>
<p>Clear labels, visible focus states, and keyboard-friendly navigation on game cards.</p>
</div>
<div class="value-card">
<h3>Controller friendly picks</h3>
<p>We tag games that play well with keyboards and external controllers for smoother sessions.</p>
</div>
<div class="value-card">
<h3>Weekly link audits</h3>
<p>Broken or slow embeds are removed quickly to keep the library fresh.</p>
</div>
<div class="value-card">
<h3>Fullscreen ready</h3>
<p>Game pages include fullscreen toggles so you can focus without browser chrome.</p>
</div>
<div class="value-card">
<h3>Lightweight pages</h3>
<p>Optimized assets and responsive images keep data use low on mobile networks.</p>
</div>
<!-- Duplicate set for seamless loop -->
<div class="value-card">
<h3>Curation with notes</h3>
<p>Every title is tagged by genre, pace, and difficulty so you can quickly find the right fit.</p>
</div>
<div class="value-card">
<h3>Zero-download setup</h3>
<p>All games are browser-native. No installers, no accounts, and no surprise redirects away from the page.</p>
</div>
<div class="value-card">
<h3>Play-tested on devices</h3>
<p>We check each game on phones, tablets, and laptops to keep controls responsive and screens readable.</p>
</div>
<div class="value-card">
<h3>Quick-start guidance</h3>
<p>Tap the guides link for bite-sized tips, best beginner picks, and troubleshooting steps for slow connections.</p>
</div>
<div class="value-card">
<h3>Fresh picks weekly</h3>
<p>Broken or slow titles are swapped out every week so you always land on working games.</p>
</div>
<div class="value-card">
<h3>Mobile-first media</h3>
<p>Responsive images per card keep load times low on 4G and small screens.</p>
</div>
<div class="value-card">
<h3>Ad-safety first</h3>
<p>Ads only load when content exists; we avoid pop-ups and redirect traps.</p>
</div>
<div class="value-card">
<h3>Accessibility basics</h3>
<p>Clear labels, visible focus states, and keyboard-friendly navigation on game cards.</p>
</div>
<div class="value-card">
<h3>Controller friendly picks</h3>
<p>We tag games that play well with keyboards and external controllers for smoother sessions.</p>
</div>
<div class="value-card">
<h3>Weekly link audits</h3>
<p>Broken or slow embeds are removed quickly to keep the library fresh.</p>
</div>
<div class="value-card">
<h3>Fullscreen ready</h3>
<p>Game pages include fullscreen toggles so you can focus without browser chrome.</p>
</div>
<div class="value-card">
<h3>Lightweight pages</h3>
<p>Optimized assets and responsive images keep data use low on mobile networks.</p>
</div>
</div>
</div>
</div>
</section>
<div class="container">
<!-- AdSense ad - top -->
<div class="ad-container" id="topAdContainer">
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-1308401027139954"
data-ad-slot="1694166093"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
window.addEventListener('DOMContentLoaded', function() {
const hasGames = document.querySelectorAll('.game-card:not(.ad-card)').length > 0;
if (hasGames) {
(adsbygoogle = window.adsbygoogle || []).push({});
} else {
document.getElementById('topAdContainer').style.display = 'none';
}
});
</script>
</div>
<div style="display: flex; justify-content: center; align-items: center; flex-wrap: wrap;">
<div class="filter-buttons" style="margin: 0; width: 100%; justify-content: center;">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="Action & Adventure">Action & Adventure</button>
<button class="filter-btn" data-filter="Puzzle & Logic">Puzzle</button>
<button class="filter-btn" data-filter="Classic & Arcade">Arcade</button>
<button class="filter-btn" data-filter="Card & Strategy">Card</button>
<button class="filter-btn" data-filter="Strategy & Board">Board</button>
<button class="filter-btn" data-filter="Match 3">Match 3</button>
<button class="filter-btn" data-filter="Sports & Action">Sports</button>
<button class="filter-btn" data-filter="Tile & Puzzle">Tile</button>
<button class="filter-btn" data-filter="others">Others</button>
</div>
</div>
<div class="game-grid">
<!-- Game cards will be generated here -->
<!-- Each card represents a game with a link to its page -->
<!-- Sample game cards (35 cards total) -->
<div class="game-card" data-game-link="games/NinjaBreakout.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/ninjabreakout/800x450/ninjabreakout800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/ninjabreakout/500x300/ninjabreakout500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/ninjabreakout/300x200/ninjabreakout300200.webp">
<img src="assets/images/games/ninjabreakout/200x200/ninjabreakout200.webp" alt="Ninja Breakout">
</picture>
<div class="game-card-content">
<h3>Ninja Breakout</h3>
<p>Action & Adventure</p>
</div>
</div>
<div class="game-card" data-game-link="games/Sudoku.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/sudoku/800x450/sudokuclassic800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/sudoku/500x300/sudokuclassic500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/sudoku/300x200/sudokuclassic300200.webp">
<img src="assets/images/games/sudoku/200x200/sudokuclassic200.webp" alt="Sudoku">
</picture>
<div class="game-card-content">
<h3>Sudoku Classic</h3>
<p>Puzzle & Logic</p>
</div>
</div>
<div class="game-card" data-game-link="games/Tetris.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/tetris/800x450/tetrisfun800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/tetris/500x300/tetrisfun500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/tetris/300x200/tetrisfun300200.webp">
<img src="assets/images/games/tetris/200x200/tetrisfun200.webp" alt="Tetris">
</picture>
<div class="game-card-content">
<h3>Tetris Fun</h3>
<p>Classic & Arcade</p>
</div>
</div>
<div class="game-card" data-game-link="games/MahjongMerge.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/mahjong-merge/800x450/mahjongmerge800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/mahjong-merge/500x300/mahjongmerge500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/mahjong-merge/300x200/mahjongmerge300200.webp">
<img src="assets/images/games/mahjong-merge/200x200/mahjongmerge200.webp" alt="Mahjong Merge">
</picture>
<div class="game-card-content">
<h3>Mahjong Merge</h3>
<p>Tile & Puzzle</p>
</div>
</div>
<div class="game-card" data-game-link="games/FlowerSolitaire.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/flower-solitaire/800x450/flowersolitaire800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/flower-solitaire/500x300/flowersolitaire500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/flower-solitaire/300x200/flowersolitaire-300200.webp">
<img src="assets/images/games/flower-solitaire/200x200/flowersolitaire-200.webp" alt="Flower Solitaire">
</picture>
<div class="game-card-content">
<h3>Flower Solitaire</h3>
<p>Card & Strategy</p>
</div>
</div>
<div class="game-card" data-game-link="games/Chess.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/chess/800x450/chess800x450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/chess/500x300/chess500x300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/chess/300x200/chess300200.webp">
<img src="assets/images/games/chess/200x200/chess200200.webp" alt="Chess">
</picture>
<div class="game-card-content">
<h3>Chess</h3>
<p>Strategy & Board</p>
</div>
</div>
<div class="game-card" data-game-link="games/ClassicWordSearch.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/classic-word-search/800x450/classic-word-search800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/classic-word-search/500x300/classic-word-search500.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/classic-word-search/300x200/classic-word-search-300.webp">
<img src="assets/images/games/classic-word-search/200x200/classic-word-search-200.webp" alt="Classic Word Search">
</picture>
<div class="game-card-content">
<h3>Classic Word Search</h3>
<p>Word & Puzzle</p>
</div>
</div>
<div class="game-card" data-game-link="games/BubbleBuster.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/bubble-buster/800x450/bubblebuster800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/bubble-buster/500x300/bubblebuster500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/bubble-buster/300x200/bubblebuster300200.webp">
<img src="assets/images/games/bubble-buster/200x200/bubblebuster200.webp" alt="Bubble Buster">
</picture>
<div class="game-card-content">
<h3>Bubble Buster</h3>
<p>Match 3 & Puzzle</p>
</div>
</div>
<div class="game-card" data-game-link="games/Minesweeper.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/minesweeper/800x450/minesweeper800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/minesweeper/500x300/minesweeper500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/minesweeper/300x200/minesweeper300200.webp">
<img src="assets/images/games/minesweeper/200x200/minesweeper200.webp" alt="Minesweeper">
</picture>
<div class="game-card-content">
<h3>Minesweeper</h3>
<p>Logic & Puzzle</p>
</div>
</div>
<div class="game-card" data-game-link="games/ClassicPac.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/classic-pac/800x450/classicpac800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/classic-pac/500x300/classicpac500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/classic-pac/300x200/classicpac300200.webp">
<img src="assets/images/games/classic-pac/200x200/classicpac200.webp" alt="Classic Pac">
</picture>
<div class="game-card-content">
<h3>Classic Pac</h3>
<p>Classic & Arcade</p>
</div>
</div>
<div class="game-card" data-game-link="games/Checkers.html">
<picture>
<source media="(min-width: 768px)" srcset="assets/images/games/checkers/300x200/checkers300.webp">
<img src="assets/images/games/checkers/300x200/checkers300.webp" alt="Checkers">
</picture>
<div class="game-card-content">
<h3>Checkers</h3>
<p>Board & Strategy</p>
</div>
</div>
<div class="game-card" data-game-link="games/Freecell.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/freecell/800x450/free-cell-800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/freecell/500x300/free-cell-500.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/freecell/300x200/free-cell-300.webp">
<img src="assets/images/games/freecell/200x200/free-cell-200.webp" alt="Freecell">
</picture>
<div class="game-card-content">
<h3>Freecell</h3>
<p>Card & Strategy</p>
</div>
</div>
<div class="game-card" data-game-link="games/EasterZuma.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/easter-zuma/800x450/easterzuma800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/easter-zuma/500x300/easterzuma500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/easter-zuma/300x200/easterzuma300200.webp">
<img src="assets/images/games/easter-zuma/200x200/easterzuma200.webp" alt="Easter Zuma">
</picture>
<div class="game-card-content">
<h3>Easter Zuma</h3>
<p>Match 3 & Action</p>
</div>
</div>
<div class="game-card" data-game-link="games/SpiderSolitaire.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/spider-solitaire/800x450/spidersolitaire800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/spider-solitaire/500x300/spidersolitaire500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/spider-solitaire/300x200/spidersolitaire300200.webp">
<img src="assets/images/games/spider-solitaire/200x200/spidersolitaire200.webp" alt="Spider Solitaire">
</picture>
<div class="game-card-content">
<h3>Spider Solitaire</h3>
<p>Card & Strategy</p>
</div>
</div>
<div class="game-card" data-game-link="games/LuxorTriPeaks.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/luxor-tri-peaks/800x450/luxortripeaks800.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/luxor-tri-peaks/500x300/luxortripeaks500.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/luxor-tri-peaks/300x200/luxortripeaks300.webp">
<img src="assets/images/games/luxor-tri-peaks/200x200/luxortripeaks200.webp" alt="Luxor Tri Peaks">
</picture>
<div class="game-card-content">
<h3>Luxor Tri Peaks</h3>
<p>Card & Puzzle</p>
</div>
</div>
<div class="game-card" data-game-link="games/Battleships.html">
<picture>
<source media="(min-width: 768px)" srcset="assets/images/games/battleships/300x200/battleships300.webp">
<img src="assets/images/games/battleships/300x200/battleships300.webp" alt="Battleships">
</picture>
<div class="game-card-content">
<h3>Battleships</h3>
<p>Strategy & Board</p>
</div>
</div>
<div class="game-card" data-game-link="games/ConnectFour.html">
<picture>
<source media="(min-width: 768px)" srcset="assets/images/games/connect-four/300x200/connect4300.webp">
<img src="assets/images/games/connect-four/300x200/connect4300.webp" alt="Connect Four">
</picture>
<div class="game-card-content">
<h3>Connect Four</h3>
<p>Strategy & Board</p>
</div>
</div>
<div class="game-card" data-game-link="games/ArcheryTraining.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/archery-training/800x450/acherytraining800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/archery-training/500x300/acherytraining500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/archery-training/300x200/acherytraining300200.webp">
<img src="assets/images/games/archery-training/200x200/acherytraining200.webp" alt="Archery Training">
</picture>
<div class="game-card-content">
<h3>Archery Training</h3>
<p>Sports & Action</p>
</div>
</div>
<div class="game-card" data-game-link="games/HigherOrLower.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/higher-or-lower/800x450/higherorLower800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/higher-or-lower/500x300/higherorLower500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/higher-or-lower/300x200/higherorLower300200.webp">
<img src="assets/images/games/higher-or-lower/200x200/higherorLower200.webp" alt="Higher or Lower">
</picture>
<div class="game-card-content">
<h3>Higher or Lower</h3>
<p>Card & Puzzle</p>
</div>
</div>
<div class="game-card" data-game-link="games/GuardianLighthouseHiddenSecrets.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/guardian-lighthouse/800x450/guardianlighthousehiddensecrets800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/guardian-lighthouse/500x300/guardianlighthousehiddensecrets500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/guardian-lighthouse/300x200/guardianlighthousehiddensecrets300200.webp">
<img src="assets/images/games/guardian-lighthouse/200x200/guardianlighthousehiddensecrets200.webp" alt="Guardian Lighthouse - Hidden Secrets">
</picture>
<div class="game-card-content">
<h3>Guardian Lighthouse - Hidden Secrets</h3>
<p>Hidden Object</p>
</div>
</div>
<div class="game-card" data-game-link="games/JewelsClassic.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/jewels-classic/800x450/jewelsclassic800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/jewels-classic/500x300/jewelsclassic500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/jewels-classic/300x200/jewelsclassic300200.webp">
<img src="assets/images/games/jewels-classic/200x200/jewelsclassic200.webp" alt="Jewels Classic">
</picture>
<div class="game-card-content">
<h3>Jewels Classic</h3>
<p>Puzzle & Logic</p>
</div>
</div>
<div class="game-card" data-game-link="games/CarromPool.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/carrom-pool/800x450/carrompool800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/carrom-pool/500x300/carrompool500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/carrom-pool/300x200/carrompool300200.webp">
<img src="assets/images/games/carrom-pool/200x200/carrompool200.webp" alt="Carrom Pool">
</picture>
<div class="game-card-content">
<h3>Carrom Pool</h3>
<p>Sports & Action</p>
</div>
</div>
<div class="game-card" data-game-link="games/PragueHiddenObjects.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/prague-hidden-objects/800x450/praquehiddenobjects800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/prague-hidden-objects/500x300/praquehiddenobjects500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/prague-hidden-objects/300x200/praquehiddenobjects300200.webp">
<img src="assets/images/games/prague-hidden-objects/200x200/praquehiddenobjects200.webp" alt="Prague Hidden Objects">
</picture>
<div class="game-card-content">
<h3>Prague Hidden Objects</h3>
<p>Hidden Object</p>
</div>
</div>
<div class="game-card" data-game-link="games/BubbleShooter.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/bubble-shooter/800x450/bubble_shooter800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/bubble-shooter/500x300/bubble_shooter500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/bubble-shooter/300x200/bubble_shooter300200.webp">
<img src="assets/images/games/bubble-shooter/200x200/bubble_shooter200.webp" alt="Bubble Shooter">
</picture>
<div class="game-card-content">
<h3>Bubble Shooter</h3>
<p>Match 3</p>
</div>
</div>
<div class="game-card" data-game-link="games/BalloonMaze.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/balloon-maze/800x450/balloonmaze800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/balloon-maze/500x300/balloonmaze500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/balloon-maze/300x200/balloonmaze300200.webp">
<img src="assets/images/games/balloon-maze/200x200/balloonmaze200.webp" alt="Balloon Maze">
</picture>
<div class="game-card-content">
<h3>Balloon Maze</h3>
<p>Puzzle & Logic</p>
</div>
</div>
<div class="game-card" data-game-link="games/MazeRoll.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/maze-roll/800x450/mazeroll800450.jpg">
<source media="(min-width: 992px)" srcset="assets/images/games/maze-roll/500x300/mazeroll500300.jpg">
<source media="(min-width: 768px)" srcset="assets/images/games/maze-roll/300x200/mazeroll300200.jpg">
<img src="assets/images/games/maze-roll/200x200/mazeroll200.jpg" alt="Maze Roll">
</picture>
<div class="game-card-content">
<h3>Maze Roll</h3>
<p>Puzzle & Logic</p>
</div>
</div>
<div class="game-card" data-game-link="games/SnakeDash.html">
<picture>
<source media="(min-width: 1200px)" srcset="assets/images/games/snake-dash/800x450/snakedash800450.webp">
<source media="(min-width: 992px)" srcset="assets/images/games/snake-dash/500x300/snakedash500300.webp">
<source media="(min-width: 768px)" srcset="assets/images/games/snake-dash/300x200/snakedash300200.webp">
<img src="assets/images/games/snake-dash/200x200/snakedash200.webp" alt="Snake Dash">
</picture>
<div class="game-card-content">
<h3>Snake Dash</h3>
<p>Classic & Arcade</p>
</div>
</div>
</div>
<section class="spotlight-section">
<div class="spotlight-header">
<h2>Spotlight picks with quick-start tips</h2>
<p>We rotate these every week based on player feedback and stability checks.</p>
</div>
<div class="spotlight-grid">
<article class="spotlight-card">
<h3>Sudoku Classic</h3>
<p>Start on the 4x4 and 6x6 boards to learn patterns. Toggle notes to mark candidates and avoid restarts.</p>
</article>
<article class="spotlight-card">
<h3>Chess</h3>
<p>Perfect for 10-minute breaks. Use the undo-friendly casual mode to practice openings and recover from blunders.</p>
</article>
<article class="spotlight-card">
<h3>Bubble Shooter</h3>
<p>Plan off-the-wall bounces, clear the middle first, and use color swaps to avoid dead shots and rushed reloads.</p>
</article>
<article class="spotlight-card">
<h3>Maze Roll</h3>
<p>Mobile-friendly tilt controls; reduce sensitivity in settings if the ball overshoots corners.</p>
</article>
</div>
</section>
<section class="guide-section">
<div class="guide-card">
<h2>Browse smarter</h2>
<p>Use search for titles or genres, then tap a filter to stay within that category. We highlight stability, mobile readiness, and control options so you know what to expect before opening a game.</p>
<p>For deeper advice (device setup, accessibility, troubleshooting), jump to the full <a href="guide.html">Game Guides</a> page—this homepage keeps it brief so you can start playing faster.</p>
</div>
<div class="guide-card">
<h2>What we guarantee</h2>
<ul>
<li>Curated, no-download embeds checked on mobile and desktop.</li>
<li>Fast-loading art with responsive images for every game card.</li>
<li>Ads load only when real content is present; no pop-up traps.</li>
<li>Regular reviews to replace broken links or slow-loading titles.</li>
</ul>
</div>
</section>
<!-- AdSense ad - bottom -->
<div class="ad-container" id="bottomAdContainer">
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-1308401027139954"
data-ad-slot="1694166093"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
// Only load ad if there's sufficient content
if (document.querySelectorAll('.game-card:not(.ad-card)').length > 0) {
(adsbygoogle = window.adsbygoogle || []).push({});
} else {
// Hide ad container if no content
document.getElementById('bottomAdContainer').style.display = 'none';
}
</script>
</div>
</div>
<!-- Footer -->
<footer class="site-footer">
<div class="footer-content">
<div class="footer-left">
<p>© <span id="current-year"></span> Play Mint. All rights reserved.</p>
</div>
<div class="footer-right">
<a href="privacy-policy.html">Privacy Policy</a>
</div>
</div>
</footer>
<script src="assets/js/main.js"></script>
<script>
// Update total games count
document.addEventListener('DOMContentLoaded', function() {
const gameCards = document.querySelectorAll('.game-card:not(.ad-card)');
const totalGamesCount = gameCards.length;
const countElement = document.getElementById('total-games-count');
if (countElement) {
countElement.textContent = 'Total Games: ' + totalGamesCount;
}
// Escape mode info modal (aligned with game pages)
const infoIcon = document.getElementById('info-icon');
const escapeModeButton = document.getElementById('escape-mode-button');
const infoModal = document.getElementById('info-modal');
if ((infoIcon || escapeModeButton) && infoModal) {
function toggleModal() {
if (infoModal.style.display === 'none' || infoModal.style.display === '') {
infoModal.style.display = 'block';
} else {
infoModal.style.display = 'none';
}
}
if (infoIcon) {
infoIcon.addEventListener('click', function(e) {
e.stopPropagation();
toggleModal();
});
}
if (escapeModeButton) {
escapeModeButton.addEventListener('click', function(e) {
e.stopPropagation();
toggleModal();
});
escapeModeButton.addEventListener('keydown', function(e) {
if (e.key === 'Enter' || e.key === ' ') {
e.preventDefault();
toggleModal();
}
});
}
document.addEventListener('click', function() {
infoModal.style.display = 'none';
});
infoModal.addEventListener('click', function(e) {
e.stopPropagation();
});
}
});
// Game filtering functionality
document.addEventListener('DOMContentLoaded', function() {
const filterButtons = document.querySelectorAll('.filter-btn');
const gameCards = document.querySelectorAll('.game-card:not(.ad-card)');
filterButtons.forEach(button => {
button.addEventListener('click', () => {
// Remove active class from all buttons
filterButtons.forEach(btn => btn.classList.remove('active'));
// Add active class to clicked button
button.classList.add('active');
const filter = button.getAttribute('data-filter');
gameCards.forEach(card => {
if (filter === 'all') {
card.style.display = 'block';
} else if (filter === 'others') {
// Show games that don't match any of the main categories
const category = card.querySelector('p').textContent;
const mainCategories = ['Action & Adventure', 'Puzzle & Logic', 'Classic & Arcade', 'Card & Strategy', 'Strategy & Board', 'Match 3', 'Sports & Action', 'Tile & Puzzle'];
let matchesMainCategory = false;
for (let mainCat of mainCategories) {
// Normalize both category and main category for comparison
const normalizedCategory = category.split(' & ').sort().join(' & ');
const normalizedMainCat = mainCat.split(' & ').sort().join(' & ');
if (normalizedCategory.includes(normalizedMainCat) || normalizedMainCat.includes(normalizedCategory)) {
matchesMainCategory = true;
break;
}
}
card.style.display = matchesMainCategory ? 'none' : 'block';
} else {
const category = card.querySelector('p').textContent;
// Normalize the category and filter for comparison by sorting words
const normalizedCategory = category.split(' & ').sort().join(' & ');
const normalizedFilter = filter.split(' & ').sort().join(' & ');
if (normalizedCategory.includes(normalizedFilter) || normalizedFilter.includes(normalizedCategory)) {
card.style.display = 'block';
} else {
card.style.display = 'none';
}
}
});
});
});
});
</script>
</body>
</html>