-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1055 lines (1009 loc) · 47.7 KB
/
Copy pathindex.html
File metadata and controls
1055 lines (1009 loc) · 47.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The Glue Guy Podcast</title>
<meta name="description" content="The Glue Guy Podcast — weekly sports coverage for people who love the game, have busy lives, and want the most important information without the fluff." />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QNN2TSGE64"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QNN2TSGE64');
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap" rel="stylesheet" />
<style>
:root {
--navy: #002654;
--royal: #4A6FA5;
--steel: #A8BBCF;
--frost: #E8EEF4;
--slate: #6B7280;
--white: #FFFFFF;
--ink: #0D1B2A;
--rule: rgba(0,38,84,0.1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
/* ── NAV ── */
nav {
position: sticky; top: 0; z-index: 900;
background: var(--navy);
border-bottom: 3px solid rgba(74,111,165,0.6);
}
.nav-inner {
display: flex; align-items: stretch;
justify-content: space-between;
padding: 0 48px; height: 64px;
max-width: 1400px; margin: 0 auto;
}
.nav-logo {
display: flex; flex-direction: column; justify-content: center;
padding-right: 28px; margin-right: 28px;
border-right: 1px solid rgba(168,187,207,0.15);
}
.nav-logo-name {
font-family: 'Bebas Neue', sans-serif;
font-size: 1.6rem; color: var(--white);
letter-spacing: 0.06em; line-height: 1;
}
.nav-logo-sub {
font-size: 0.55rem; font-weight: 700;
letter-spacing: 0.28em; text-transform: uppercase;
color: var(--royal); margin-top: 2px;
}
.nav-links {
display: flex; align-items: stretch;
list-style: none; flex: 1;
}
.nav-links li { display: flex; align-items: stretch; }
.nav-links a {
display: flex; align-items: center;
padding: 0 18px;
font-size: 0.7rem; font-weight: 700;
letter-spacing: 0.14em; text-transform: uppercase;
color: var(--steel);
border-bottom: 3px solid transparent;
margin-bottom: -3px;
transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover { color: var(--white); border-color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-listen {
font-size: 0.68rem; font-weight: 700;
letter-spacing: 0.12em; text-transform: uppercase;
color: var(--steel); transition: color 0.2s;
}
.nav-listen:hover { color: var(--white); }
.nav-cta {
background: var(--royal); color: var(--white);
padding: 9px 20px;
font-size: 0.68rem; font-weight: 700;
letter-spacing: 0.14em; text-transform: uppercase;
border-radius: 2px; transition: background 0.2s;
}
.nav-cta:hover { background: #5a80b8; }
/* Mobile nav */
.nav-hamburger {
display: none;
flex-direction: column; justify-content: center;
gap: 5px; cursor: pointer; padding: 8px;
}
.nav-hamburger span {
display: block; width: 22px; height: 2px;
background: var(--white); border-radius: 2px;
transition: all 0.2s;
}
.mobile-menu {
display: none;
position: fixed; top: 64px; left: 0; right: 0;
background: var(--navy);
border-bottom: 2px solid var(--royal);
z-index: 899; padding: 16px 24px 24px;
flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
display: block; padding: 12px 0;
font-size: 0.82rem; font-weight: 700;
letter-spacing: 0.14em; text-transform: uppercase;
color: var(--steel);
border-bottom: 1px solid rgba(168,187,207,0.1);
transition: color 0.15s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mobile-cta {
margin-top: 12px;
background: var(--royal); color: var(--white) !important;
padding: 13px 20px; text-align: center;
border-radius: 2px; border-bottom: none !important;
}
/* ── HERO ── */
.hero {
position: relative;
min-height: 520px;
border-bottom: 1px solid var(--rule);
display: flex; flex-direction: column; justify-content: flex-end;
overflow: hidden;
background: var(--navy);
}
.hero-banner-img {
position: absolute; inset: 0;
width: 100%; height: 100%;
object-fit: cover; object-position: right center;
display: block; opacity: 0.55;
}
.hero-overlay {
position: absolute; inset: 0;
background: linear-gradient(to right, rgba(0,38,84,0.97) 35%, rgba(0,38,84,0.6) 65%, rgba(0,38,84,0.2) 100%);
}
.hero-main {
position: relative; z-index: 2;
padding: 80px 56px;
display: flex; flex-direction: column; justify-content: center;
max-width: 620px;
}
.hero-tag {
display: inline-flex; align-items: center; gap: 10px;
font-size: 0.65rem; font-weight: 700;
letter-spacing: 0.22em; text-transform: uppercase;
color: var(--royal); margin-bottom: 18px;
position: relative; z-index: 1;
}
.hero-tag::before { content:''; width:24px; height:2px; background:var(--royal); }
.hero-title {
font-family: 'Playfair Display', serif;
font-size: clamp(36px, 4.8vw, 64px);
font-weight: 900; line-height: 1.06;
color: var(--white); margin-bottom: 20px;
max-width: 620px; position: relative; z-index: 1;
}
.hero-title em { font-style: italic; color: var(--steel); }
.hero-desc {
font-size: 0.98rem; color: rgba(168,187,207,0.8);
line-height: 1.65; max-width: 500px;
margin-bottom: 36px; position: relative; z-index: 1;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white {
background: var(--white); color: var(--navy);
padding: 13px 28px; font-size: 0.7rem; font-weight: 700;
letter-spacing: 0.14em; text-transform: uppercase;
border-radius: 2px; display: inline-flex; align-items: center; gap: 8px;
transition: background 0.2s, transform 0.15s;
}
.btn-white:hover { background: var(--frost); transform: translateY(-1px); }
.btn-ghost {
border: 1px solid rgba(168,187,207,0.35); color: var(--steel);
padding: 13px 28px; font-size: 0.7rem; font-weight: 600;
letter-spacing: 0.14em; text-transform: uppercase;
border-radius: 2px; transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--steel); color: var(--white); }
/* ── HERO SIDEBAR ── */
.hero-sidebar {
border-left: 1px solid rgba(168,187,207,0.15);
display: flex; flex-direction: column;
background: var(--navy);
}
.hero-sidebar-brand {
flex: 1; display: flex; flex-direction: column;
align-items: center; justify-content: center;
padding: 36px 28px; text-align: center; gap: 16px;
border-bottom: 1px solid rgba(168,187,207,0.1);
}
.cover-art-img {
width: 220px; height: 220px;
border-radius: 6px; overflow: hidden; flex-shrink: 0;
box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.cover-art-img img { display: block; width: 100%; height: 100%; object-fit: cover; }
.host-line {
font-size: 0.72rem; font-weight: 600;
letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel);
}
.host-line span { color: rgba(168,187,207,0.5); font-weight: 400; }
.hero-sidebar-listen { padding: 20px 24px; }
.listen-label-sm {
font-size: 0.58rem; font-weight: 700;
letter-spacing: 0.2em; text-transform: uppercase;
color: var(--slate); margin-bottom: 10px;
}
.platform-list { display: flex; flex-direction: column; gap: 7px; }
.platform-row {
display: flex; align-items: center; gap: 10px;
padding: 9px 12px;
border: 1px solid rgba(168,187,207,0.12); border-radius: 2px;
font-size: 0.76rem; font-weight: 600; color: var(--steel);
background: rgba(255,255,255,0.03);
transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.platform-row:hover { background: rgba(255,255,255,0.07); border-color: rgba(168,187,207,0.3); color: var(--white); }
.p-arrow { margin-left: auto; font-size: 0.65rem; color: var(--royal); }
/* ── SEGMENT STRIP ── */
.segment-strip {
background: var(--navy);
display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
border-top: 1px solid rgba(168,187,207,0.08);
border-bottom: 1px solid rgba(168,187,207,0.08);
}
.strip-div { background: rgba(168,187,207,0.1); }
.strip-item { padding: 36px 40px; display: flex; gap: 18px; align-items: flex-start; }
.strip-num {
font-family: 'Bebas Neue', sans-serif;
font-size: 2.6rem; color: rgba(74,111,165,0.35);
line-height: 1; flex-shrink: 0; width: 44px;
}
.strip-name {
font-family: 'Bebas Neue', sans-serif;
font-size: 1rem; letter-spacing: 0.08em;
color: var(--white); margin-bottom: 7px;
}
.strip-desc { font-size: 0.8rem; color: var(--steel); line-height: 1.6; }
.strip-time {
font-size: 0.62rem; font-weight: 700;
letter-spacing: 0.16em; text-transform: uppercase;
color: var(--royal); margin-top: 9px;
}
/* ── SECTIONS ── */
.section-wrap { padding: 72px 48px; }
.section-wrap.tinted { background: var(--frost); }
.section-wrap.dark { background: var(--navy); }
.section-header {
display: flex; align-items: baseline;
justify-content: space-between;
border-bottom: 2px solid var(--navy);
padding-bottom: 12px; margin-bottom: 40px;
}
.section-header.light { border-color: rgba(168,187,207,0.2); }
.section-header-left { display: flex; align-items: baseline; gap: 14px; }
.section-kicker {
font-size: 0.62rem; font-weight: 700;
letter-spacing: 0.22em; text-transform: uppercase;
color: var(--royal); padding: 3px 9px;
background: rgba(74,111,165,0.1); border-radius: 2px;
}
.section-kicker.light { color: var(--steel); background: rgba(168,187,207,0.12); }
.section-hed {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(26px, 3vw, 38px);
letter-spacing: 0.03em; color: var(--navy); line-height: 1;
}
.section-hed.light { color: var(--white); }
.section-all {
font-size: 0.68rem; font-weight: 700;
letter-spacing: 0.14em; text-transform: uppercase;
color: var(--royal); transition: color 0.2s;
}
.section-all:hover { color: var(--navy); }
.section-all.light { color: var(--steel); }
.section-all.light:hover { color: var(--white); }
/* ── LATEST EPISODE PREVIEW ── */
.ep-preview {
background: var(--ink); border-radius: 3px;
overflow: hidden; position: relative;
min-height: 360px; padding: 40px 36px;
display: flex; flex-direction: column; justify-content: flex-end;
}
.ep-preview-bg {
position: absolute; inset: 0;
background: repeating-linear-gradient(135deg,
rgba(74,111,165,0.05) 0px, rgba(74,111,165,0.05) 1px,
transparent 1px, transparent 40px);
}
.ep-preview::after {
content: ''; position: absolute; inset: 0;
background: linear-gradient(to top, rgba(0,38,84,0.96) 40%, rgba(0,38,84,0.15) 100%);
z-index: 1;
}
.ep-preview > * { position: relative; z-index: 2; }
.ep-num {
font-size: 0.62rem; font-weight: 700;
letter-spacing: 0.22em; text-transform: uppercase;
color: var(--royal); margin-bottom: 10px;
}
.ep-title {
font-family: 'Playfair Display', serif;
font-size: clamp(20px, 2.4vw, 30px);
font-weight: 900; color: var(--white);
line-height: 1.2; margin-bottom: 12px;
}
.ep-desc {
font-size: 0.86rem; color: var(--steel);
line-height: 1.6; margin-bottom: 22px; max-width: 560px;
}
.ep-tags { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.ep-tag {
font-size: 0.6rem; font-weight: 700;
letter-spacing: 0.14em; text-transform: uppercase;
padding: 3px 9px; border-radius: 2px;
}
.ep-tag.s { background: rgba(74,111,165,0.25); color: var(--steel); }
.ep-tag.c { background: rgba(168,187,207,0.12); color: var(--steel); }
.ep-tag.l { background: rgba(0,38,84,0.5); color: var(--steel); border: 1px solid rgba(168,187,207,0.15); }
.ep-runtime { font-size: 0.66rem; color: rgba(168,187,207,0.4); letter-spacing: 0.08em; }
.ep-play {
display: inline-flex; align-items: center; gap: 8px;
background: var(--white); color: var(--navy);
padding: 11px 24px; font-size: 0.68rem; font-weight: 700;
letter-spacing: 0.14em; text-transform: uppercase;
border-radius: 2px; margin-top: 20px; align-self: flex-start;
transition: background 0.2s;
}
.ep-play:hover { background: var(--frost); }
/* ── EMAIL CAPTURE ── */
.email-capture {
background: var(--navy); padding: 52px 48px;
display: flex; align-items: center;
justify-content: space-between; gap: 48px;
border-top: 1px solid rgba(168,187,207,0.08);
border-bottom: 1px solid rgba(168,187,207,0.08);
}
.email-capture-left { max-width: 480px; }
.email-capture-eyebrow {
font-size: 0.65rem; font-weight: 700;
letter-spacing: 0.22em; text-transform: uppercase;
color: var(--royal); margin-bottom: 10px;
}
.email-capture-hed {
font-family: 'Bebas Neue', sans-serif;
font-size: 2rem; color: var(--white);
letter-spacing: 0.04em; line-height: 1; margin-bottom: 8px;
}
.email-capture-sub { font-size: 0.86rem; color: var(--steel); line-height: 1.6; }
.email-capture-right { flex-shrink: 0; width: 400px; }
.email-form { display: flex; gap: 0; }
.email-input {
flex: 1; padding: 13px 16px;
border: 1px solid rgba(168,187,207,0.2); border-right: none;
border-radius: 2px 0 0 2px;
background: rgba(255,255,255,0.06);
font-family: 'DM Sans', sans-serif;
font-size: 0.88rem; color: var(--white); outline: none;
transition: border-color 0.2s, background 0.2s;
}
.email-input::placeholder { color: rgba(168,187,207,0.4); }
.email-input:focus { border-color: var(--royal); background: rgba(255,255,255,0.09); }
.email-btn {
background: var(--royal); color: var(--white);
border: none; padding: 13px 22px;
font-family: 'DM Sans', sans-serif;
font-size: 0.7rem; font-weight: 700;
letter-spacing: 0.14em; text-transform: uppercase;
border-radius: 0 2px 2px 0; cursor: pointer; white-space: nowrap;
transition: background 0.2s;
}
.email-btn:hover { background: #5a80b8; }
.email-fine { font-size: 0.65rem; color: rgba(168,187,207,0.35); margin-top: 8px; }
.email-success { display: none; font-size: 0.86rem; color: var(--steel); padding: 13px 0; }
.email-success strong { color: var(--white); }
/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-body { font-size: 0.98rem; color: var(--slate); line-height: 1.8; }
.about-body p + p { margin-top: 14px; }
.about-pull {
font-family: 'Playfair Display', serif;
font-size: 1.4rem; font-style: italic; font-weight: 700;
color: var(--navy); line-height: 1.4;
border-left: 4px solid var(--royal);
padding-left: 22px; margin: 28px 0;
}
.about-card {
background: var(--frost);
border: 1px solid var(--rule); border-radius: 3px; overflow: hidden;
}
.about-card-header {
background: var(--navy); padding: 0;
overflow: hidden; position: relative;
min-height: 280px; display: flex; align-items: flex-end;
}
.about-card-illustration {
width: 100%; height: 280px;
object-fit: cover; object-position: center top; display: block;
}
.about-card-header-overlay {
position: absolute; bottom: 0; left: 0; right: 0;
background: linear-gradient(to top, rgba(0,38,84,0.95) 0%, transparent 100%);
padding: 20px 24px 18px;
}
.host-name {
font-family: 'Bebas Neue', sans-serif;
font-size: 1.25rem; color: var(--white); letter-spacing: 0.06em;
}
.host-title { font-size: 0.66rem; color: var(--steel); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
.about-stats {
display: grid; grid-template-columns: 1fr 1fr;
gap: 1px; background: var(--rule); border-top: 1px solid var(--rule);
}
.stat-cell { background: var(--frost); padding: 18px 22px; }
.stat-n {
font-family: 'Bebas Neue', sans-serif;
font-size: 1.9rem; color: var(--navy);
letter-spacing: 0.04em; line-height: 1;
}
.stat-l { font-size: 0.65rem; color: var(--slate); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; }
.about-bio { padding: 22px 26px; font-size: 0.83rem; color: var(--slate); line-height: 1.65; border-top: 1px solid var(--rule); }
/* ── SUBMIT ── */
.submit-layout { display: grid; grid-template-columns: 1fr 480px; gap: 60px; align-items: start; }
.submit-intro { font-size: 0.98rem; color: rgba(168,187,207,0.78); line-height: 1.7; margin-bottom: 36px; max-width: 460px; }
.rules { display: flex; flex-direction: column; }
.rule-row {
display: grid; grid-template-columns: 32px 1fr;
gap: 14px; padding: 18px 0;
border-bottom: 1px solid rgba(168,187,207,0.1);
}
.rule-row:first-child { border-top: 1px solid rgba(168,187,207,0.1); }
.rule-n { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; color: rgba(74,111,165,0.45); line-height: 1.1; }
.rule-copy { font-size: 0.83rem; color: var(--steel); line-height: 1.6; padding-top: 2px; }
.rule-copy strong { color: var(--white); }
.form-card { background: var(--white); border-radius: 3px; overflow: hidden; border: 1px solid var(--rule); }
.form-card-header {
background: var(--navy); padding: 18px 26px;
display: flex; align-items: center; justify-content: space-between;
}
.form-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--white); letter-spacing: 0.06em; }
.form-card-status { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); }
.form-body { padding: 26px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
width: 100%; padding: 10px 13px;
border: 1px solid rgba(0,38,84,0.15); border-radius: 2px;
background: var(--white); font-family: 'DM Sans', sans-serif;
font-size: 0.86rem; color: var(--ink);
transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
border-color: var(--royal);
box-shadow: 0 0 0 3px rgba(74,111,165,0.1);
}
.form-textarea { resize: vertical; min-height: 90px; }
/* Glue Guy Report box */
.ggr-box {
background: var(--frost);
border: 1px solid rgba(0,38,84,0.12);
border-radius: 2px; padding: 16px 18px;
margin-bottom: 16px;
}
.ggr-label {
font-size: 0.6rem; font-weight: 700;
letter-spacing: 0.2em; text-transform: uppercase;
color: var(--royal); margin-bottom: 10px;
display: flex; align-items: center; gap: 8px;
}
.ggr-label::after { content: ''; flex: 1; height: 1px; background: rgba(74,111,165,0.2); }
/* ── SOCIAL BAR ── */
.social-bar {
background: var(--ink);
padding: 28px 48px;
display: flex; align-items: center;
justify-content: space-between; gap: 24px;
flex-wrap: wrap;
}
.social-bar-label {
font-size: 0.65rem; font-weight: 700;
letter-spacing: 0.22em; text-transform: uppercase;
color: var(--slate);
}
.social-bar-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-chip {
display: inline-flex; align-items: center; gap: 8px;
padding: 10px 20px;
border: 1px solid rgba(168,187,207,0.15);
border-radius: 2px;
font-size: 0.72rem; font-weight: 700;
letter-spacing: 0.1em; text-transform: uppercase;
color: var(--steel);
transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-chip:hover { border-color: var(--steel); color: var(--white); background: rgba(255,255,255,0.04); }
/* ── FORM SECTIONS ── */
.form-section-label {
font-size: 0.58rem; font-weight: 700;
letter-spacing: 0.22em; text-transform: uppercase;
color: var(--royal);
padding: 10px 0 8px;
border-bottom: 1px solid rgba(0,38,84,0.1);
margin-bottom: 14px; margin-top: 4px;
display: flex; align-items: center; gap: 10px;
}
.form-section-label::after { content:''; flex:1; height:1px; background: rgba(74,111,165,0.15); }
.form-helper { font-size: 0.67rem; color: var(--slate); margin-top: 5px; line-height: 1.4; }
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-option {
display: flex; align-items: flex-start; gap: 10px;
padding: 10px 12px;
border: 1px solid rgba(0,38,84,0.12); border-radius: 2px;
cursor: pointer; transition: background 0.15s, border-color 0.15s;
}
.radio-option:hover { background: var(--frost); border-color: var(--royal); }
.radio-option input[type="radio"] { margin-top: 2px; accent-color: var(--navy); flex-shrink: 0; }
.radio-option-text { font-size: 0.84rem; color: var(--ink); line-height: 1.4; }
.checkbox-option {
display: flex; align-items: flex-start; gap: 10px;
padding: 12px 14px;
border: 1px solid rgba(0,38,84,0.12); border-radius: 2px;
cursor: pointer; background: var(--frost);
}
.checkbox-option input[type="checkbox"] { margin-top: 3px; accent-color: var(--navy); flex-shrink: 0; }
.checkbox-option-text { font-size: 0.82rem; color: var(--ink); line-height: 1.5; }
#contact-field { display: none; }
width: 100%; background: var(--navy); color: var(--white);
border: none; padding: 14px;
font-family: 'DM Sans', sans-serif;
font-size: 0.7rem; font-weight: 700;
letter-spacing: 0.18em; text-transform: uppercase;
cursor: pointer; border-radius: 2px; margin-top: 4px;
transition: background 0.2s;
}
.btn-submit:hover { background: var(--royal); }
.form-fine { font-size: 0.63rem; color: var(--steel); text-align: center; margin-top: 9px; line-height: 1.5; }
#form-success { display: none; text-align: center; padding: 44px 26px; }
.s-icon { font-size: 2rem; margin-bottom: 10px; }
.s-hed { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 8px; }
.s-body { font-size: 0.86rem; color: var(--slate); line-height: 1.65; }
/* ── FOOTER ── */
footer { background: var(--ink); }
.footer-wm-bar {
display: flex; align-items: center;
justify-content: space-between;
padding: 44px 48px;
border-bottom: 1px solid rgba(168,187,207,0.07); gap: 32px;
}
.footer-wm {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(40px, 7vw, 100px);
color: var(--white); letter-spacing: 0.04em; line-height: 1; opacity: 0.88;
}
.footer-tagline {
font-family: 'Playfair Display', serif;
font-style: italic; font-size: 1.05rem;
color: rgba(168,187,207,0.4);
max-width: 300px; line-height: 1.6; text-align: right;
}
.footer-cols {
display: grid; grid-template-columns: repeat(4, 1fr);
gap: 1px; background: rgba(168,187,207,0.07);
border-bottom: 1px solid rgba(168,187,207,0.07);
}
.footer-col { padding: 32px 48px; }
.footer-col h4 {
font-size: 0.58rem; font-weight: 700;
letter-spacing: 0.24em; text-transform: uppercase;
color: var(--slate); margin-bottom: 14px; padding-bottom: 9px;
border-bottom: 1px solid rgba(168,187,207,0.08);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.8rem; color: rgba(168,187,207,0.4); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
padding: 18px 48px;
display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.65rem; color: rgba(168,187,207,0.22); letter-spacing: 0.08em; }
.footer-social { display: flex; gap: 22px; }
.footer-social a {
font-size: 0.62rem; font-weight: 700;
letter-spacing: 0.16em; text-transform: uppercase;
color: rgba(168,187,207,0.22); transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
.hero { min-height: 420px; }
.about-grid { grid-template-columns: 1fr; gap: 48px; }
.submit-layout { grid-template-columns: 1fr; }
.segment-strip { grid-template-columns: 1fr; }
.strip-div { display: none; }
.footer-cols { grid-template-columns: 1fr 1fr; }
.email-capture { flex-direction: column; gap: 28px; }
.email-capture-right { width: 100%; }
}
@media (max-width: 768px) {
.nav-inner { padding: 0 20px; }
.nav-links { display: none; }
.nav-right { display: none; }
.nav-hamburger { display: flex; }
.hero { min-height: 360px; }
.hero-main { padding: 36px 20px 44px; }
.section-wrap { padding: 52px 20px; }
.email-capture { padding: 40px 20px; }
.footer-wm-bar { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
.footer-tagline { text-align: left; }
.footer-col { padding: 26px 20px; }
.footer-bottom { padding: 16px 20px; flex-direction: column; gap: 6px; }
.form-row-2 { grid-template-columns: 1fr; }
.footer-cols { grid-template-columns: 1fr 1fr; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.hero-tag { animation: fadeUp 0.5s ease both 0.1s; }
.hero-title { animation: fadeUp 0.5s ease both 0.2s; }
.hero-desc { animation: fadeUp 0.5s ease both 0.32s; }
.hero-actions { animation: fadeUp 0.5s ease both 0.44s; }
</style>
</head>
<body>
<!-- NAV -->
<nav>
<div class="nav-inner">
<a href="index.html" class="nav-logo">
<div class="nav-logo-name">The Glue Guy</div>
<div class="nav-logo-sub">Podcast</div>
</a>
<ul class="nav-links">
<li><a href="#what-is">About</a></li>
<li><a href="episodes.html">Episodes</a></li>
<li><a href="blog.html">The Rundown</a></li>
<li><a href="#submit">Submit a Take</a></li>
</ul>
<div class="nav-right">
<a href="episodes.html" class="nav-listen">Listen ↗</a>
<a href="#submit" class="nav-cta">Submit a Take</a>
</div>
<div class="nav-hamburger" onclick="toggleMenu()" id="hamburger">
<span></span><span></span><span></span>
</div>
</div>
</nav>
<!-- MOBILE MENU -->
<div class="mobile-menu" id="mobile-menu">
<a href="#what-is" onclick="toggleMenu()">About</a>
<a href="episodes.html" onclick="toggleMenu()">Episodes</a>
<a href="blog.html" onclick="toggleMenu()">The Rundown</a>
<a href="#submit" onclick="toggleMenu()" class="mobile-cta">Submit a Take</a>
</div>
<!-- HERO -->
<div class="hero">
<img src="hero-banner.png" alt="The Glue Guy Podcast" class="hero-banner-img" />
<div class="hero-overlay"></div>
<div class="hero-main">
<div class="hero-tag">Weekly Sports Podcast</div>
<h1 class="hero-title">
Where Glue Guys<br>
<em>Come to Talk Sports.</em>
</h1>
<p class="hero-desc">
The most important stories in sports, culture, and business — covered every week for people who love the game, have busy lives, and refuse to miss what matters. No filler. Just the good stuff.
</p>
<div class="hero-actions">
<a href="episodes.html" class="btn-white">▶ Latest Episode</a>
<a href="#submit" class="btn-ghost">Submit a Take</a>
</div>
</div>
</div>
<!-- SEGMENT STRIP -->
<div class="segment-strip" id="about">
<div class="strip-item">
<div class="strip-num">01</div>
<div>
<div class="strip-name">The Rundown</div>
<div class="strip-desc">Cannon's solo breakdown of the 4–5 biggest stories in sports that week, plus 1–2 from business or culture that actually matter. What happened, why it matters, what's coming next.</div>
<div class="strip-time">15–18 min</div>
</div>
</div>
<div class="strip-div"></div>
<div class="strip-item">
<div class="strip-num">02</div>
<div>
<div class="strip-name">The Guest</div>
<div class="strip-desc">A guest with real insight into the biggest stories happening right now or coming up next. People with perspective you can't get anywhere else — not just talking heads, but people close to the action.</div>
<div class="strip-time">20–25 min</div>
</div>
</div>
<div class="strip-div"></div>
<div class="strip-item">
<div class="strip-num">03</div>
<div>
<div class="strip-name">Glue Guys</div>
<div class="strip-desc">Listeners submit their takes, questions, and ideas throughout the week. Cannon sorts through them, then records the conversation with selected contributors — and that conversation closes every episode.</div>
<div class="strip-time">8–12 min</div>
</div>
</div>
</div>
<!-- LATEST EPISODE -->
<div class="section-wrap" id="episodes">
<div class="section-header">
<div class="section-header-left">
<span class="section-kicker">Latest</span>
<h2 class="section-hed">This Week's Episode</h2>
</div>
<a href="episodes.html" class="section-all">All Episodes →</a>
</div>
<div class="ep-preview">
<div class="ep-preview-bg"></div>
<div class="ep-num">Episode 9 — Now Live</div>
<div class="ep-title">The Biggest Comeback in NBA Finals History and a World Cup Crash Course</div>
<div class="ep-desc">The Knicks pulled off the largest comeback in NBA Finals history — down 29, on the road, against Wemby playing like Wemby. Cannon, Cole, and Ethan break down how San Antonio gave it away, Brunson as the Thanos of fourth quarters, and where this series goes from here. Then Avina joins to get Cannon up to speed on the 2026 World Cup — the 48-team format, the real Group of Death, and what it'll take for the USMNT to finally get past the Round of 16 on home soil.</div>
<div class="ep-tags">
<span class="ep-tag s">NBA Finals</span>
<span class="ep-tag c">World Cup 2026</span>
<span class="ep-tag l">USMNT</span>
<span class="ep-runtime">Every Monday</span>
</div>
<div style="display:flex; gap:12px; flex-wrap:wrap; margin-top:20px; position:relative; z-index:2;">
<a href="https://open.spotify.com/show/1uNk79bZNiIKSxtBbUaQyr" target="_blank" class="ep-play">🎧 Spotify</a>
<a href="https://podcasts.apple.com/us/podcast/the-glue-guy-podcast/id1889022669" target="_blank" class="ep-play" style="background:var(--royal); color:var(--white);">🎙 Apple Podcasts</a>
<a href="https://www.youtube.com/playlist?list=PLxCUST1lN2bI2F_6aZssBEJvg7WBt2RW9" target="_blank" class="ep-play" style="background:rgba(168,187,207,0.15); color:var(--white);">▶ YouTube</a>
</div>
</div>
</div>
<!-- EMAIL CAPTURE -->
<div class="email-capture" id="notify">
<div class="email-capture-left">
<div class="email-capture-eyebrow">Stay in the Loop</div>
<div class="email-capture-hed">New Episode Alerts. Nothing Else.</div>
<div class="email-capture-sub">Drop your email and we'll let you know when a new episode drops every Monday. No spam — just a heads up when there's something worth your time.</div>
</div>
<div class="email-capture-right">
<form id="email-form" action="https://formspree.io/f/xvzwjovz" method="POST">
<input type="hidden" name="_subject" value="New Email Signup — The Glue Guy Podcast" />
<div class="email-form">
<input class="email-input" type="email" name="email" placeholder="your@email.com" required />
<button class="email-btn" type="submit" id="email-btn">Notify Me</button>
</div>
<div class="email-fine">No spam. Unsubscribe anytime.</div>
</form>
<div class="email-success" id="email-success"><strong>You're in.</strong> We'll hit you when Episode 1 drops.</div>
</div>
</div>
<!-- ABOUT -->
<div class="section-wrap" id="what-is">
<div class="section-header">
<div class="section-header-left">
<span class="section-kicker">The Show</span>
<h2 class="section-hed">What Is The Glue Guy Podcast?</h2>
</div>
</div>
<div class="about-grid">
<div>
<div class="about-body">
<p>The glue guy never gets the credit. But take them out of the lineup and everything falls apart. The Glue Guy Podcast is built for that person — the sports fan who stays informed, shows up every week, and holds it all together without anyone noticing.</p>
<p>This is a community for people who love sports and have full lives. No hot takes for clicks. No filler. Just the stories that matter, the guests who know them best, and a community of people who get it.</p>
</div>
<div class="about-pull">"The most important stories in sports — for the people who actually care about them."</div>
<div class="about-body">
<p>The Glue Guy Podcast is hosted by Cannon Simmons. Married with one son, works in education, and has been a sports fan his entire life. He started this show because he wanted what didn't exist — a weekly sports podcast that respects your time and your intelligence.</p>
</div>
</div>
<div class="about-card">
<div style="background: var(--navy); overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 40px;">
<img src="cover-art.png" alt="The Glue Guy Podcast" style="width: 100%; max-width: 320px; height: auto; display: block; border-radius: 4px; box-shadow: 0 12px 40px rgba(0,0,0,0.4);" />
</div>
<div style="background: var(--navy); padding: 16px 24px; border-top: 1px solid rgba(168,187,207,0.1);">
<div class="host-name">Cannon Simmons</div>
<div class="host-title">Host, The Glue Guy Podcast</div>
</div>
<div class="about-stats">
<div class="stat-cell"><div class="stat-n">Weekly</div><div class="stat-l">Release Cadence</div></div>
<div class="stat-cell"><div class="stat-n">45–60</div><div class="stat-l">Min Per Episode</div></div>
<div class="stat-cell"><div class="stat-n">3</div><div class="stat-l">Segments</div></div>
<div class="stat-cell"><div class="stat-n">Mon</div><div class="stat-l">Drops Every Monday</div></div>
</div>
<div class="about-bio">Sharp takes, real guests, and a community built around the people who actually know the game. The Glue Guy Podcast is for the sports fan who wants substance over noise.</div>
</div>
</div>
</div>
<!-- SUBMIT A TAKE -->
<div class="section-wrap dark" id="submit">
<div class="section-header light">
<div class="section-header-left">
<span class="section-kicker light">Segment 3</span>
<h2 class="section-hed light">Submit Your Take</h2>
</div>
</div>
<div class="submit-layout">
<div>
<p class="submit-intro">
Every week, one submission makes it on the show. Read your name, your contract status, your player comp — then your take, question, or story. The best ones air. Submit yours below.
</p>
<div class="rules">
<div class="rule-row">
<div class="rule-n">01</div>
<div class="rule-copy"><strong>Anything goes.</strong> Sports takes, questions for Cannon, hot takes on life, feedback on the show — if it's worth talking about, send it.</div>
</div>
<div class="rule-row">
<div class="rule-n">02</div>
<div class="rule-copy"><strong>Be direct.</strong> The best submissions are specific and opinionated. If you wouldn't say it out loud to someone, rewrite it.</div>
</div>
<div class="rule-row">
<div class="rule-n">03</div>
<div class="rule-copy"><strong>Include your player comp.</strong> Pick a pro athlete whose current situation mirrors yours. Any sport, any era. The reasoning is the point.</div>
</div>
<div class="rule-row">
<div class="rule-n">04</div>
<div class="rule-copy"><strong>Want to come on?</strong> Select yes and Cannon will reach out to schedule a short pre-record session with you.</div>
</div>
</div>
</div>
<div class="form-card">
<div class="form-card-header">
<div class="form-card-title">Submit Your Take</div>
<div class="form-card-status">Open Now</div>
</div>
<div id="form-success">
<div class="s-icon">✓</div>
<div class="s-hed">Got it.</div>
<div class="s-body">Cannon reviews every submission before each episode. If yours makes the show you'll hear your name on air — and if you said you want to come on, he'll reach out to schedule. Keep listening.</div>
</div>
<div class="form-body" id="form-body-wrap">
<form id="take-form" action="https://formspree.io/f/xvzwjovz" method="POST">
<!-- SECTION 1: WHO YOU ARE -->
<div class="form-section-label">Who You Are</div>
<div class="form-group">
<label class="form-label" for="name">Name or Username</label>
<input class="form-input" type="text" id="name" name="name" placeholder="What should Cannon call you on air?" required />
<div class="form-helper">Can be your real name, a handle, whatever you want read on the show.</div>
</div>
<div class="form-group">
<label class="form-label" for="location">City / State or Region</label>
<input class="form-input" type="text" id="location" name="location" placeholder="e.g. Salt Lake City, UT or Pacific Northwest" required />
<div class="form-helper">Just general location — no street addresses. This gets read on air.</div>
</div>
<!-- SECTION 2: PLAYER COMP -->
<div class="form-section-label">Your Player Comp</div>
<div class="form-group">
<label class="form-label" for="comp">Who are you right now?</label>
<textarea class="form-textarea" id="comp" name="player_comp" style="min-height:90px;" placeholder="e.g. 'I'm Kawhi Leonard on the Spurs before anyone realized how good he was — doing everything right, waiting for my moment.'" required></textarea>
<div class="form-helper">Pick a professional athlete — any sport, any era — whose current situation or career stage best mirrors where you are in your own life or career right now. The reasoning matters as much as the name. 1–3 sentences.</div>
</div>
<!-- SECTION 3: YOUR SUBMISSION -->
<div class="form-section-label">Your Submission</div>
<div class="form-group">
<label class="form-label" for="take">Your take, question, or story</label>
<textarea class="form-textarea" id="take" name="take" style="min-height:120px;" placeholder="Write it out. Be direct. The best submissions are specific and opinionated." required></textarea>
<div class="form-helper">No length requirement but tighter is better. If you wouldn't say it out loud to someone, rewrite it.</div>
</div>
<div class="form-group">
<label class="form-label">Want to come on the show?</label>
<div class="radio-group">
<label class="radio-option">
<input type="radio" name="come_on" value="Yes — I want to come on and discuss it live with Cannon (we'll pre-record)" id="come-on-yes" onchange="toggleContact()" required />
<span class="radio-option-text">Yes — I want to come on and discuss it live with Cannon <em style="color:var(--slate); font-style:normal;">(we'll pre-record)</em></span>
</label>
<label class="radio-option">
<input type="radio" name="come_on" value="No — just read and react to my submission on air" id="come-on-no" onchange="toggleContact()" />
<span class="radio-option-text">No — just read and react to my submission on air</span>
</label>
</div>
<div class="form-helper">If you want to come on, Cannon will reach out to schedule a short pre-record session.</div>
</div>
<div class="form-group" id="contact-field">
<label class="form-label" for="contact">Best way to reach you</label>
<input class="form-input" type="text" id="contact" name="contact_info" placeholder="Email or Instagram/X handle" />
<div class="form-helper">Only used to schedule your recording. Not shared anywhere.</div>
</div>
<!-- SECTION 4: CONSENT -->
<div class="form-group" style="margin-top: 4px;">
<label class="checkbox-option">
<input type="checkbox" name="consent" required />
<span class="checkbox-option-text">I understand my submission may be read, played, or discussed on the Glue Guy Podcast and shared on social media.</span>
</label>
</div>
<button class="btn-submit" type="submit" id="submit-btn">Submit Your Take</button>
<p class="form-fine">Submissions are reviewed before each episode. The best ones make it on air.</p>
</form>
</div>
</div>
</div>
</div>
<!-- SOCIAL BAR -->
<div class="social-bar">
<span class="social-bar-label">Follow The Glue Guy Podcast</span>
<div class="social-bar-links">
<a href="https://x.com/GlueGuyPodcast" target="_blank" class="social-chip">𝕏 Twitter / X</a>
<a href="https://instagram.com/glueguypodcast" target="_blank" class="social-chip">◎ Instagram</a>
<a href="https://tiktok.com/@glueguypodcast" target="_blank" class="social-chip">♪ TikTok</a>
<a href="https://www.youtube.com/@GlueGuyPodcast" target="_blank" class="social-chip">▶ YouTube</a>
<a href="#notify" class="social-chip">✉ Email Updates</a>
</div>
</div>
<!-- FOOTER -->
<footer>
<div class="footer-wm-bar">
<div class="footer-wm">The Glue Guy Podcast</div>
<div class="footer-tagline">For the people who love sports, have full lives, and refuse to miss what matters.</div>
</div>
<div class="footer-cols">
<div class="footer-col">
<h4>Listen</h4>
<ul>
<li><a href="https://open.spotify.com/show/1uNk79bZNiIKSxtBbUaQyr" target="_blank">Spotify</a></li>
<li><a href="https://podcasts.apple.com/us/podcast/the-glue-guy-podcast/id1889022669" target="_blank">Apple Podcasts</a></li>
<li><a href="https://www.youtube.com/@GlueGuyPodcast" target="_blank">YouTube</a></li>
<li><a href="https://open.spotify.com/show/1uNk79bZNiIKSxtBbUaQyr" target="_blank">Pocket Casts</a></li>
</ul>
</div>
<div class="footer-col">
<h4>The Show</h4>
<ul>
<li><a href="#about">About</a></li>
<li><a href="episodes.html">Episodes</a></li>
<li><a href="blog.html">The Rundown</a></li>
<li><a href="#submit">Submit a Take</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Connect</h4>
<ul>
<li><a href="https://x.com/GlueGuyPodcast" target="_blank">Twitter / X</a></li>
<li><a href="https://instagram.com/glueguypodcast" target="_blank">Instagram</a></li>
<li><a href="https://tiktok.com/@glueguypodcast" target="_blank">TikTok</a></li>
<li><a href="#notify">Newsletter</a></li>
</ul>
</div>
<div class="footer-col">
<h4>The Host</h4>
<ul>
<li><a href="#about">Cannon Simmons</a></li>
<li><a href="#">Guest Inquiry</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<span class="footer-copy">© 2026 The Glue Guy Podcast. All rights reserved.</span>
<div class="footer-social">
<a href="https://x.com/GlueGuyPodcast" target="_blank">X</a>
<a href="https://instagram.com/glueguypodcast" target="_blank">Instagram</a>
<a href="https://tiktok.com/@glueguypodcast" target="_blank">TikTok</a>
<a href="https://www.youtube.com/@GlueGuyPodcast" target="_blank">YouTube</a>
</div>
</div>