-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
842 lines (783 loc) · 34.2 KB
/
Copy pathsupport.html
File metadata and controls
842 lines (783 loc) · 34.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support — PluginStream</title>
<meta name="description" content="Get support, join the community, or reach out to the PluginStream team.">
<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&family=Unbounded:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="icon" href="./assets/pluginstream.png">
<style>
:root {
--canvas: #fffaf0;
--surface-soft: #faf5e8;
--surface-card: #f5f0e0;
--surface-dark: #0a1a1a;
--ink: #0a0a0a;
--body: #3a3a3a;
--muted: #6a6a6a;
--hairline: #e5e5e5;
--accent-violet: #b8a4ed;
--accent-pink: #ff4d8b;
--accent-sky: #a7c7e7;
--accent-peach: #ffb084;
--accent-ochre: #e8b94a;
--accent-mint: #a4d4c5;
--accent-tg: #29a8e0;
--space-xxs: 4px;
--space-xs: 8px;
--space-sm: 12px;
--space-md: 16px;
--space-lg: 24px;
--space-xl: 32px;
--space-xxl: 48px;
--space-section: 96px;
--radius-xs: 6px;
--radius-sm: 8px;
--radius-md: 12px;
--radius-lg: 16px;
--radius-xl: 24px;
--radius-pill: 9999px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background-color: var(--canvas);
color: var(--body);
font-family: 'Inter', sans-serif;
-webkit-font-smoothing: antialiased;
line-height: 1.55;
overflow-x: hidden;
}
h1, h2, h3, .display-font { font-family: 'Unbounded', sans-serif; color: var(--ink); }
.display-md { font-size: 40px; font-weight: 500; letter-spacing: -1px; line-height: 1.1; }
.body-md { font-size: 16px; font-weight: 400; line-height: 1.55; }
.body-sm { font-size: 14px; font-weight: 400; line-height: 1.55; }
.caption { font-size: 13px; font-weight: 500; line-height: 1.4; }
.title-sm { font-size: 16px; font-weight: 600; line-height: 1.4; color: var(--ink); }
a { text-decoration: none; color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-xl); }
/* ── RIPPLE ── */
.ripple { position: relative; overflow: hidden; }
.ripple-span {
position: absolute;
border-radius: 50%;
transform: scale(0);
animation: ripple 0.6s linear;
background-color: rgba(255, 255, 255, 0.3);
pointer-events: none;
}
.btn-secondary .ripple-span,
.btn-contact .ripple-span { background-color: rgba(0, 0, 0, 0.1); }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }
/* ── BUTTONS ── */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
font-family: 'Inter', sans-serif;
font-size: 14px;
font-weight: 600;
line-height: 1.0;
border-radius: var(--radius-pill);
height: 48px;
padding: 0 28px;
cursor: pointer;
transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
text-decoration: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background-color: var(--surface-dark); color: #fff; }
.btn-secondary { background-color: var(--canvas); color: var(--ink); border: 1px solid var(--hairline); }
.btn-accent { background-color: var(--accent-violet); color: var(--ink); }
/* Telegram */
.btn-tg {
background: linear-gradient(135deg, #2aabee 0%, #1e96d8 100%);
color: #fff;
box-shadow: 0 4px 16px rgba(41,168,224,0.28);
}
.btn-tg:hover { box-shadow: 0 8px 28px rgba(41,168,224,0.42); }
/* GitHub */
.btn-gh {
background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
color: #fff;
box-shadow: 0 4px 16px rgba(10,10,26,0.22);
}
.btn-gh:hover { box-shadow: 0 8px 28px rgba(10,10,26,0.36); }
/* Contact */
.btn-contact {
background-color: var(--canvas);
color: var(--ink);
border: 1px solid var(--hairline);
}
.btn-contact:hover { background-color: var(--surface-soft); box-shadow: 0 6px 18px rgba(10,26,26,0.09); }
.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }
/* ── NAV ── */
nav {
position: fixed;
top: 0; left: 0;
width: 100%;
background-color: rgba(255, 250, 240, 0.9);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
z-index: 100;
transform: translateY(-100%);
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-bottom 0.3s ease;
border-bottom: 1px solid transparent;
}
nav.visible { transform: translateY(0); border-bottom: 1px solid var(--hairline); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.nav-logo {
display: flex; align-items: center; gap: 12px;
font-size: 20px; font-weight: 600; color: var(--ink);
font-family: 'Unbounded', sans-serif;
}
.nav-logo-img { width: 32px; height: 32px; border-radius: 8px; }
/* ── PAGE WRAPPER ── */
.page-wrapper { padding-top: 48px; padding-bottom: var(--space-section); }
/* ── TOP BANNER ── */
.top-banner {
background-color: var(--surface-card);
border: 1px solid var(--hairline);
border-radius: var(--radius-xl);
padding: var(--space-md) var(--space-lg);
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: var(--space-md);
margin-bottom: var(--space-xl);
}
.top-banner-copy strong { font-family: 'Unbounded', sans-serif; font-size: 14px; color: var(--ink); }
.top-banner-copy span { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
/* ── HERO ── */
.hero {
position: relative;
padding-top: 80px;
padding-bottom: 24px;
text-align: center;
overflow: hidden;
z-index: 1;
}
.hero::before {
content: '';
position: absolute;
top: -50%; left: -50%;
width: 200%; height: 200%;
background: radial-gradient(circle at 50% 50%, rgba(184, 164, 237, 0.15) 0%, rgba(255, 77, 139, 0.05) 25%, transparent 50%);
z-index: -1;
animation: rotate-gradient 20s linear infinite;
pointer-events: none;
}
@keyframes rotate-gradient { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
.hero-logo {
width: 72px; height: 72px;
margin: 0 auto var(--space-xl);
border-radius: 28px;
box-shadow: 0 12px 32px rgba(0,0,0,0.1);
animation: float 6s ease-in-out infinite;
display: block;
}
.hero-badge {
display: inline-flex; align-items: center; gap: var(--space-xs);
padding: var(--space-xs) var(--space-md);
border-radius: var(--radius-pill);
background-color: var(--surface-card);
border: 1px solid var(--hairline);
font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
color: var(--muted);
margin-bottom: var(--space-lg);
}
.hero h1 { margin-bottom: var(--space-md); }
.hero-sub { color: var(--muted); max-width: 560px; margin: 0 auto var(--space-xxl); }
/* ── ADS SECTION ── */
.ads-section { margin-bottom: var(--space-xl); }
.ads-section-label {
font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
color: var(--muted); margin-bottom: var(--space-lg); text-align: center;
}
.ads-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-lg); }
.ad-card {
background-color: var(--surface-card);
border: 1px solid var(--hairline);
border-radius: var(--radius-xl);
padding: var(--space-lg);
width: 100%;
min-width: 0;
overflow: hidden;
box-sizing: border-box;
}
.ad-card.full-width { grid-column: 1 / -1; }
.ad-card h3 { font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: var(--space-xs); }
.ad-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: var(--space-md); }
.ad-slot {
min-height: 100px;
border-radius: var(--radius-md);
border: 2px dashed var(--hairline);
background-color: var(--surface-soft);
display: flex; align-items: center; justify-content: center;
text-align: center; color: var(--muted); font-size: 13px;
padding: var(--space-md);
overflow: hidden;
width: 100%;
max-width: 100%;
}
.ad-slot.banner-slot { min-height: 70px; }
.top-banner iframe,
.ad-slot iframe, .ad-slot ins, .ad-slot div,
[id^="container-"] iframe, [id^="container-"] div {
max-width: 100% !important;
box-sizing: border-box !important;
}
.native-ad-frame {
width: 100%;
max-height: 240px;
overflow-y: auto;
overflow-x: hidden;
border-radius: var(--radius-md);
background-color: var(--surface-soft);
scrollbar-width: thin;
}
.native-ad-frame iframe, .native-ad-frame div {
max-width: 100% !important;
box-sizing: border-box !important;
}
/* ── SPONSOR STRIP ── */
.sponsor-strip {
background-color: var(--accent-violet);
border-radius: var(--radius-xl);
padding: var(--space-lg);
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: var(--space-md);
margin-bottom: var(--space-xl);
text-align: left;
}
.sponsor-strip p { font-size: 14px; color: rgba(10,10,10,0.75); line-height: 1.6; max-width: 600px; }
/* ── CONTACT GRID ── */
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-lg);
margin-bottom: var(--space-lg);
}
/* ── CONTACT CARDS ── */
.contact-card {
border-radius: var(--radius-xl);
padding: var(--space-xl);
text-align: left;
display: flex;
flex-direction: column;
gap: var(--space-md);
}
.contact-card.tg-card {
background: linear-gradient(135deg, #d9f1fd 0%, #b6e5f8 100%);
border: none;
}
.contact-card.gh-card {
background: linear-gradient(135deg, #e8e8f4 0%, #d0d0ea 100%);
border: none;
}
.contact-card.contact-email {
grid-column: 1 / -1;
background-color: var(--surface-card);
border: 1px solid var(--hairline);
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: var(--space-xl);
}
.card-icon {
width: 52px; height: 52px;
border-radius: 16px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.card-icon.tg-icon { background: linear-gradient(135deg, #2aabee, #1e96d8); }
.card-icon.gh-icon { background: linear-gradient(135deg, #1a1a2e, #2d2d44); }
.card-icon.email-icon { background: var(--accent-peach); }
.card-icon svg { width: 26px; height: 26px; }
.card-body { flex: 1; }
.card-label {
font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
color: var(--muted); margin-bottom: 6px;
}
.card-title {
font-family: 'Unbounded', sans-serif;
font-size: 18px; font-weight: 500;
color: var(--ink); margin-bottom: 6px;
line-height: 1.3;
}
.card-desc { font-size: 13px; color: rgba(10,10,10,0.65); line-height: 1.6; }
/* ── WARNING BOX ── */
.info-box {
background-color: var(--accent-mint);
border-radius: var(--radius-xl);
padding: var(--space-lg);
display: flex;
gap: var(--space-md);
align-items: flex-start;
margin-bottom: var(--space-xl);
text-align: left;
}
.info-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.info-text { font-size: 14px; color: rgba(10,10,10,0.8); line-height: 1.6; }
.info-text strong { display: block; margin-bottom: 4px; color: var(--ink); font-family: 'Unbounded', sans-serif; font-weight: 500; font-size: 15px; }
/* ── FOOTER NOTE ── */
.footer-note {
text-align: center;
color: var(--muted);
font-size: 13px;
line-height: 1.6;
margin-top: var(--space-xl);
padding: var(--space-lg);
background-color: var(--surface-soft);
border: 1px solid var(--hairline);
border-radius: var(--radius-lg);
}
/* ── FOOTER ── */
footer {
background-color: var(--surface-soft);
border-top: 1px solid var(--hairline);
padding: 48px 0;
padding-bottom: 80px;
margin-top: var(--space-section);
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: flex-start; }
.footer-col-right { display: flex; flex-direction: column; align-items: flex-end; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
.footer-logo {
display: flex; align-items: center;
font-size: 28px; color: var(--ink);
font-family: 'Unbounded', sans-serif; font-weight: 500;
margin-bottom: var(--space-xs);
}
.footer-logo img { width: 32px; height: 32px; border-radius: 8px; margin-right: 12px; }
.footer-tagline { color: var(--muted); font-size: 16px; }
.footer-link { color: var(--muted); text-decoration: none; font-size: 16px; font-weight: 500; transition: color 0.2s ease; }
.footer-link:hover { color: var(--ink); }
.social-links { display: flex; gap: 28px; }
.social-icon-link {
display: inline-block;
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.social-icon-link:hover { transform: scale(1.1); }
.social-icon-link img { width: 48px; height: 48px; object-fit: contain; display: block; }
/* ── SUPPORT FAB ── */
.support-fab {
position: fixed; bottom: 32px; right: 32px; z-index: 1000;
display: none; flex-direction: column; align-items: flex-end; gap: 16px;
text-decoration: none;
}
.support-msg-bubble {
background-color: var(--canvas);
color: var(--ink);
border: 2px solid var(--ink);
box-shadow: 4px 4px 0px var(--ink);
padding: 16px 24px;
border-radius: 20px 20px 0 20px;
font-size: 15px; font-weight: 600;
max-width: 260px;
opacity: 0;
transform: translateY(10px) scale(0.9);
transition: opacity 0.4s ease, transform 0.4s ease;
pointer-events: none;
line-height: 1.5;
}
.support-msg-bubble.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.cursor { display: inline-block; width: 2px; background-color: var(--ink); margin-left: 2px; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.support-btn {
width: 64px; height: 64px; border-radius: 50%;
border: 3px solid var(--ink);
box-shadow: 4px 4px 0px var(--ink);
transition: transform 0.2s ease, box-shadow 0.2s ease;
overflow: hidden; background: var(--surface-card);
display: flex; align-items: center; justify-content: center;
}
.support-btn img { width: 100%; height: 100%; object-fit: cover; }
.support-fab:hover .support-btn { transform: translate(-2px, -2px); box-shadow: 6px 6px 0px var(--ink); }
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
.contact-grid, .ads-grid { grid-template-columns: 1fr; }
.contact-card.contact-email { grid-column: 1 / -1; flex-direction: column; }
.footer-grid { grid-template-columns: 1fr; }
.footer-col-right { align-items: flex-start; }
.footer-nav { justify-content: flex-start; }
}
@media (max-width: 640px) {
.page-wrapper { padding-top: 24px; }
.hero { padding-top: 56px; padding-bottom: 16px; }
.display-md { font-size: 28px; }
.container { padding: 0 var(--space-md); }
.support-fab { bottom: 20px; right: 16px; }
.support-msg-bubble { font-size: 13px; padding: 12px 16px; max-width: 220px; }
.top-banner, .sponsor-strip { flex-direction: column; align-items: flex-start; }
.top-banner .btn, .sponsor-strip .btn { width: 100%; }
.contact-card { padding: var(--space-lg); }
}
</style>
</head>
<body>
<!-- NAV -->
<nav id="navbar">
<div class="container">
<div class="nav-inner">
<a href="index.html" class="nav-logo">
<img src="./assets/pluginstream.png" alt="PluginStream" class="nav-logo-img">
PluginStream
</a>
<a href="index.html" class="btn btn-secondary ripple" style="height:40px; font-size:13px;">← Back</a>
</div>
</div>
</nav>
<!-- PAGE -->
<div class="page-wrapper">
<div class="container">
<!-- SPONSORED BANNER -->
<div class="top-banner">
<div class="top-banner-copy">
<strong>Sponsored Access</strong>
<span>This optional offer helps keep PluginStream free and supported for everyone.</span>
</div>
<a class="btn btn-primary ripple"
href="https://www.effectivecpmnetwork.com/q9fcq65yfr?key=08d2509c203cbea44e79039ef1bab143"
target="_blank" rel="noopener noreferrer sponsored nofollow">Open Offer</a>
</div>
<!-- HERO -->
<section class="hero">
<img src="./assets/pluginstream.png" alt="PluginStream" class="hero-logo">
<div class="hero-badge">Support & Community</div>
<h1 class="display-md">We're Here to Help</h1>
<p class="body-md hero-sub">Have a question, found a bug, or want to say hi? Choose the best way to reach us — we're active and responsive on all channels.</p>
</section>
<!-- AD: BANNER -->
<section class="ads-section">
<div class="ad-card full-width" style="text-align:center;">
<div class="ad-slot banner-slot">
<script>
atOptions = {
'key' : '6a9374ce5ba7bf38f6bc7d29a48035bd',
'format' : 'iframe',
'height' : 50,
'width' : 320,
'params' : {}
};
</script>
<script src="https://www.highperformanceformat.com/6a9374ce5ba7bf38f6bc7d29a48035bd/invoke.js"></script>
</div>
</div>
</section>
<!-- NATIVE AD -->
<section class="ads-section">
<div class="ad-card full-width">
<h3>Recommended for You</h3>
<p>Helps keep PluginStream free. Placed here so it doesn't interrupt your support experience.</p>
<div class="native-ad-frame">
<div id="container-4a575ee99f3cffbac7552b0593539196"></div>
</div>
<script async="async" data-cfasync="false" src="https://pl29725289.effectivecpmnetwork.com/4a575ee99f3cffbac7552b0593539196/invoke.js"></script>
</div>
</section>
<!-- SPONSOR STRIP -->
<div class="sponsor-strip">
<p>Like PluginStream? Checking our partner offers is the easiest way to support development — it costs you nothing.</p>
<a class="btn btn-primary ripple"
href="https://www.effectivecpmnetwork.com/q9fcq65yfr?key=08d2509c203cbea44e79039ef1bab143"
target="_blank" rel="noopener noreferrer sponsored nofollow">Support Us ☕</a>
</div>
<!-- CONTACT CARDS GRID -->
<div class="contact-grid">
<!-- Telegram Card -->
<section class="contact-card tg-card">
<div style="display:flex; align-items:center; gap:14px;">
<div class="card-icon tg-icon">
<svg viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.64 6.8l-1.68 7.93c-.13.58-.47.72-.95.45l-2.62-1.93-1.27 1.22c-.14.14-.26.26-.53.26l.19-2.66 4.83-4.36c.21-.19-.05-.29-.32-.1L7.41 14.61 4.83 13.8c-.57-.18-.58-.57.12-.84l8.95-3.45c.47-.17.88.11.74.83v.46z"/></svg>
</div>
<div>
<div class="card-label">Community</div>
<div class="card-title">Telegram</div>
</div>
</div>
<p class="card-desc">Join our official Telegram channel for updates, announcements, fast support, and to chat with the community.</p>
<a href="telegram.html" target="_blank" rel="noopener noreferrer"
class="btn btn-tg ripple" style="width:100%;">
<svg class="btn-icon" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.64 6.8l-1.68 7.93c-.13.58-.47.72-.95.45l-2.62-1.93-1.27 1.22c-.14.14-.26.26-.53.26l.19-2.66 4.83-4.36c.21-.19-.05-.29-.32-.1L7.41 14.61 4.83 13.8c-.57-.18-.58-.57.12-.84l8.95-3.45c.47-.17.88.11.74.83v.46z"/></svg>
Join Telegram
</a>
</section>
<!-- GitHub Card -->
<section class="contact-card gh-card">
<div style="display:flex; align-items:center; gap:14px;">
<div class="card-icon gh-icon">
<svg viewBox="0 0 24 24" fill="white"><path d="M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34-.46-1.16-1.11-1.47-1.11-1.47-.91-.62.07-.6.07-.6 1 .07 1.53 1.03 1.53 1.03.87 1.52 2.34 1.07 2.91.83.09-.65.35-1.09.63-1.34-2.22-.25-4.55-1.11-4.55-4.92 0-1.11.38-2 1.03-2.71-.1-.25-.45-1.29.1-2.64 0 0 .84-.27 2.75 1.02.79-.22 1.65-.33 2.5-.33.85 0 1.71.11 2.5.33 1.91-1.29 2.75-1.02 2.75-1.02.55 1.35.2 2.39.1 2.64.65.71 1.03 1.6 1.03 2.71 0 3.82-2.34 4.66-4.57 4.91.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2z"/></svg>
</div>
<div>
<div class="card-label">Open Source</div>
<div class="card-title">GitHub</div>
</div>
</div>
<p class="card-desc">Browse the source code, report bugs via Issues, contribute PRs, or check the latest release changelogs.</p>
<a href="github.html" target="_blank" rel="noopener noreferrer"
class="btn btn-gh ripple" style="width:100%;">
<svg class="btn-icon" viewBox="0 0 24 24" fill="white"><path d="M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34-.46-1.16-1.11-1.47-1.11-1.47-.91-.62.07-.6.07-.6 1 .07 1.53 1.03 1.53 1.03.87 1.52 2.34 1.07 2.91.83.09-.65.35-1.09.63-1.34-2.22-.25-4.55-1.11-4.55-4.92 0-1.11.38-2 1.03-2.71-.1-.25-.45-1.29.1-2.64 0 0 .84-.27 2.75 1.02.79-.22 1.65-.33 2.5-.33.85 0 1.71.11 2.5.33 1.91-1.29 2.75-1.02 2.75-1.02.55 1.35.2 2.39.1 2.64.65.71 1.03 1.6 1.03 2.71 0 3.82-2.34 4.66-4.57 4.91.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2z"/></svg>
View on GitHub
</a>
</section>
<!-- Email / Contact Card — full width -->
<section class="contact-card contact-email">
<div style="display:flex; align-items:center; gap:14px;">
<div class="card-icon email-icon">
<svg viewBox="0 0 24 24" fill="rgba(10,10,10,0.75)"><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>
</div>
<div class="card-body">
<div class="card-label">Direct Message</div>
<div class="card-title">Send us a Message</div>
<p class="card-desc">Have a specific question, collaboration idea, or bug report? Use our contact form and we'll get back to you.</p>
</div>
</div>
<a href="contact.html"
class="btn btn-contact ripple" style="flex-shrink:0; white-space:nowrap;">
<svg class="btn-icon" viewBox="0 0 24 24" fill="none"><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" fill="currentColor"/></svg>
Contact Us
</a>
</section>
</div>
<!-- INFO BOX -->
<div class="info-box">
<div class="info-icon">💡</div>
<div class="info-text">
<strong>Fastest way to get help?</strong>
Join the Telegram channel — the community and team respond quickly to questions, issues, and install problems. GitHub Issues is best for technical bug reports with logs.
</div>
</div>
<!-- AD GRID -->
<section class="ads-section" aria-label="Sponsored placements" id="ads-section">
<div class="ads-section-label">Sponsored Placements</div>
<div class="ads-grid">
<article class="ad-card">
<h3>Recommended Offers</h3>
<p>Helps support PluginStream development without affecting your experience.</p>
<div class="ad-slot" id="ad-slot-1">
<!-- Ad will load lazily -->
</div>
</article>
<article class="ad-card">
<h3>Compact Banner</h3>
<p>A smaller placement to keep the page monetized without being intrusive.</p>
<div class="ad-slot banner-slot" id="ad-slot-2">
<!-- Ad will load lazily -->
</div>
</article>
</div>
</section>
<!-- FOOTER NOTE -->
<p class="footer-note">Sponsored placements help keep PluginStream downloads and support free. Popunder and social bar are session-limited and do not block your experience.</p>
</div>
</div>
<!-- FOOTER -->
<footer>
<div class="container">
<div class="footer-grid">
<div>
<div class="footer-logo">
<img src="./assets/pluginstream.png" alt="PluginStream Logo">
PluginStream
</div>
<div class="footer-tagline body-sm">Free Premium Movies & OTT Plugins</div>
<div class="caption" style="margin-top: 16px; color: var(--muted); max-width: 280px; line-height: 1.4;">
The ultimate free streaming app with ad-free experience, 100+ OTT plugins, and seamless access to Netflix, Prime, HBO, Disney+ and YouTube.
</div>
</div>
<div class="footer-col-right">
<div>
<div class="title-sm" style="margin-bottom: 16px; color: var(--ink); font-size: 20px;">Join the community</div>
<div class="social-links">
<a href="github.html" target="_blank" rel="noopener noreferrer" class="social-icon-link">
<img src="./assets/github.svg" alt="GitHub">
</a>
<a href="telegram.html" target="_blank" rel="noopener noreferrer" class="social-icon-link">
<img src="./assets/telegram.svg" alt="Telegram">
</a>
<a href="contact.html" target="_blank" rel="noopener noreferrer" class="social-icon-link">
<img src="./assets/email.svg" alt="Email">
</a>
</div>
</div>
<div class="footer-nav" style="margin-top: 32px;">
<a href="portfolio.html" class="footer-link" target="_blank" rel="noopener noreferrer">PortFolio</a>
<a href="privacy.html" class="footer-link">Privacy Policy</a>
<a href="terms.html" class="footer-link">Terms & Conditions</a>
</div>
</div>
</div>
</div>
</footer>
<!-- SUPPORT FAB -->
<a href="https://omg10.com/4/11143190" target="_blank" rel="noopener noreferrer" class="support-fab" id="support-fab">
<div class="support-msg-bubble">
<span id="typewriter-text"></span><span class="cursor">|</span>
</div>
<div class="support-btn">
<img src="https://github.com/am-abdulmueed.png" alt="Support" class="support-avatar">
</div>
</a>
<script>
// ── Navbar scroll ──
const navbar = document.getElementById('navbar');
window.addEventListener('scroll', () => {
const currentScrollY = window.scrollY;
if (currentScrollY > 50) {
navbar.classList.add('visible');
} else {
navbar.classList.remove('visible');
}
const fabBubble = document.querySelector('.support-msg-bubble');
if (currentScrollY > 50) {
if (fabBubble) fabBubble.classList.add('show');
if (typeof startTypeWriter === 'function') startTypeWriter();
} else {
if (fabBubble) fabBubble.classList.remove('show');
}
}, { passive: true });
// ── Ripple effect ──
function createRipple(event) {
const button = event.currentTarget;
const circle = document.createElement("span");
const diameter = Math.max(button.clientWidth, button.clientHeight);
const radius = diameter / 2;
let x, y;
if (event.touches && event.touches.length > 0) {
x = event.touches[0].clientX - button.getBoundingClientRect().left;
y = event.touches[0].clientY - button.getBoundingClientRect().top;
} else {
x = event.clientX - button.getBoundingClientRect().left;
y = event.clientY - button.getBoundingClientRect().top;
}
circle.style.width = circle.style.height = `${diameter}px`;
circle.style.left = `${x - radius}px`;
circle.style.top = `${y - radius}px`;
circle.classList.add("ripple-span");
const existing = button.querySelector('.ripple-span');
if (existing) existing.remove();
button.appendChild(circle);
setTimeout(() => circle.remove(), 600);
}
// ── Typewriter FAB ──
const typeText = document.getElementById('typewriter-text');
const msg = "Hi! If you love PluginStream, consider supporting my work! ☕";
let typeIndex = 0;
let hasTyped = false;
function typeWriter() {
if (typeIndex < msg.length) {
typeText.innerHTML += msg.charAt(typeIndex);
typeIndex++;
setTimeout(typeWriter, 40);
} else {
setTimeout(() => {
const cursor = document.querySelector('.cursor');
if (cursor) cursor.style.display = 'none';
}, 2000);
}
}
function startTypeWriter() {
if (!hasTyped) { hasTyped = true; setTimeout(typeWriter, 300); }
}
document.addEventListener('DOMContentLoaded', () => {
document.querySelectorAll('.btn.ripple').forEach(btn => {
btn.addEventListener('mousedown', createRipple);
btn.addEventListener('touchstart', createRipple, { passive: true });
});
});
</script>
<script type="module">
import { initializeApp } from "https://www.gstatic.com/firebasejs/12.14.0/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/12.14.0/firebase-analytics.js";
const firebaseConfig = {
apiKey: "AIzaSyCuTunuW_XuQ_bcQdqwNElEfKZlHP8WdSc",
authDomain: "pluginstream-94ff5.firebaseapp.com",
projectId: "pluginstream-94ff5",
storageBucket: "pluginstream-94ff5.firebasestorage.app",
messagingSenderId: "525209317723",
appId: "1:525209317723:web:02102e4da04f0c05bcea7e",
measurementId: "G-2HWE46P8EY"
};
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);
</script>
<!-- Lazy Load Ads -->
<script>
let adsLoaded = false;
function loadAds() {
if (adsLoaded) return;
adsLoaded = true;
const pushScript = document.createElement('script');
pushScript.src = 'https://5gvci.com/act/files/tag.min.js?z=11143232';
pushScript.setAttribute('data-cfasync', 'false');
pushScript.async = true;
document.body.appendChild(pushScript);
setTimeout(() => {
const popunderScript = document.createElement('script');
popunderScript.innerHTML = "(function(s){s.dataset.zone='11143227',s.src='https://al5sm.com/tag.min.js'})([document.documentElement, document.body].filter(Boolean).pop().appendChild(document.createElement('script')))";
document.body.appendChild(popunderScript);
}, 2000);
setTimeout(() => {
const inPageScript = document.createElement('script');
inPageScript.innerHTML = "(function(s){s.dataset.zone='11143238',s.src='https://nap5k.com/tag.min.js'})([document.documentElement, document.body].filter(Boolean).pop().appendChild(document.createElement('script')))";
document.body.appendChild(inPageScript);
}, 3000);
setTimeout(() => {
const vignetteScript = document.createElement('script');
vignetteScript.innerHTML = "(function(s){s.dataset.zone='11143239',s.src='https://n6wxm.com/vignette.min.js'})([document.documentElement, document.body].filter(Boolean).pop().appendChild(document.createElement('script')))";
document.body.appendChild(vignetteScript);
}, 4000);
loadAdSlots();
}
function loadAdSlots() {
const adSlot1 = document.getElementById('ad-slot-1');
if (adSlot1) {
const s1 = document.createElement('script');
s1.innerHTML = "atOptions = { 'key' : '6a9374ce5ba7bf38f6bc7d29a48035bd', 'format' : 'iframe', 'height' : 50, 'width' : 320, 'params' : {} };";
adSlot1.appendChild(s1);
const i1 = document.createElement('script');
i1.src = 'https://www.highperformanceformat.com/6a9374ce5ba7bf38f6bc7d29a48035bd/invoke.js';
i1.async = true;
adSlot1.appendChild(i1);
}
const adSlot2 = document.getElementById('ad-slot-2');
if (adSlot2) {
const s2 = document.createElement('script');
s2.innerHTML = "atOptions = { 'key' : '6a9374ce5ba7bf38f6bc7d29a48035bd', 'format' : 'iframe', 'height' : 50, 'width' : 320, 'params' : {} };";
adSlot2.appendChild(s2);
const i2 = document.createElement('script');
i2.src = 'https://www.highperformanceformat.com/6a9374ce5ba7bf38f6bc7d29a48035bd/invoke.js';
i2.async = true;
adSlot2.appendChild(i2);
}
}
document.addEventListener('DOMContentLoaded', () => {
const adsSection = document.getElementById('ads-section');
if (adsSection && 'IntersectionObserver' in window) {
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) { loadAds(); observer.unobserve(entry.target); }
});
}, { threshold: 0.1 });
observer.observe(adsSection);
} else {
window.addEventListener('load', loadAds);
}
setTimeout(loadAds, 5000);
});
</script>
</body>
</html>