-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1311 lines (1154 loc) · 57.5 KB
/
Copy pathindex.html
File metadata and controls
1311 lines (1154 loc) · 57.5 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" />
<meta name="description" content="Samay Raina Tribute Page by Jainish Jain" />
<title>Samay Raina -TributePage</title>
<link rel="icon" type="image/png" href="/assets/img/samay.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
/* Chess Board Color Palette */
:root {
--bg-1: #eeeed2;
--bg-2: #769656;
--hg: #baca44;
--clr-1: #000000;
--clr-2: #f9f9f9;
}
html {
scroll-behavior: smooth;
cursor: url('/assets/respectable-ghoda.png'), auto;
}
/* Body */
body {
margin: 0;
padding: 0;
text-align: center;
background-color: var(--bg-1);
font-family: Arial, sans-serif;
line-height: 1.2;
}
/* Home */
#home {
margin: 10px;
text-align: center;
justify-content: center;
color: var(--clr-1);
background-color: var(--bg-1);
}
/* Header */
header {
background-color: var(--bg-2);
border-radius: 5px;
padding: 1rem;
}
#supreme {
margin-top: -1%;
margin-bottom: 10px;
margin-right: auto;
margin-left: .5%;
text-align: center;
}
#supreme:hover {
color: var(--clr-2);
}
h1 a, h2 a {
color: var(--clr-1);
}
h2 {
transition: color 0.3s ease;
}
a {
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: var(--hg);
cursor: url('/assets/img/respectable-ghoda-hover.png'), auto;
}
/* samayNav */
.samayNav {
background-color: var(--clr-2);
border-radius: .3em;
padding: auto;
}
.samayNav a {
color: var(--bg-2);
}
.samayNav ul {
list-style-type: none;
}
.samayNav ul li {
display: inline-block;
margin-right: 10px;
}
.samayNav ul li a {
text-decoration: none;
transition: color 0.3s ease;
}
/* Tibute Info Para and IMG */
#tribute-info {
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
#maisamayhoon {
display: flex;
height: auto;
width: 100%;
border-radius: 10px;
max-width: 100%;
}
figcaption{
font-weight: bold;
}
/* https://www.youtube.com/watch?v=McPdzhLRzCg */
.slider-wrapper {
position: relative;
max-width: 600px;
margin: 0 auto;
overflow: hidden;
}
.slider {
display: flex;
transition: transform 0.5s ease;
}
.slider img {
min-width: 100%;
object-fit: cover;
border-radius: 0.5rem;
}
.slider-img:hover {
cursor: url('/assets/img/respectable-ghoda-hover.png'), auto;
border-radius: 0.5rem;
}
.slider-nav {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
}
.slider-nav a {
display: block;
width: 10px;
height: 10px;
background-color: white;
border-radius: 50%;
opacity: 0.7;
}
.slider-nav a:hover {
opacity: 1;
cursor: url('/assets/img/respectable-ghoda-hover.png');
}
#samay {
display: flex;
font-size: 125%;
font-style: oblique;
text-align: justify;
transition: color 0.3s ease-in-out;
}
/* Alignments of Para and IMG */
#ld {
flex: 1;
padding: 10px;
border-radius: 10px;
margin: 10px;
}
#rd {
flex: 2;
padding: 15px;
background-color: var(--clr-2);
border-radius: 10px;
margin: 10px;
}
#rd:hover {
background-color: var(--clr-1);
color: var(--hg);
cursor: url('/assets/img/respectable-ghoda-hover.png'), auto;
}
@media (max-width: 768px) {
#tribute-info {
flex-direction: column;
}
#ld, #rd {
width: 100%;
}
.video-grid {
grid-template-columns: 1fr;
}
}
/* Timeline */
#timeline {
background-color: var(--bg-2);
font-size: larger;
font-size: 20px;
border-radius: 15px;
margin: 30px 10px;
padding: 10px;
}
#timeline h2 {
margin-top: 20px;
}
#timeline ul {
list-style-type: none;
padding: 0;
}
#timeline ul li {
padding: 10px 20px;
border-bottom: 1px solid var(--hg);
color: var(--clr-2);
}
#timeline ul li strong {
font-weight: bold;
}
#timeline:hover {
cursor: url('/assets/img/respectable-ghoda-hg.png'), auto;
/*
color: var(--bg-2);
background-color: var(--clr-1);
*/
}
/* Photo Gallery */
#photo-gallery {
background-color: var(--bg-2);
color: var(--clr-1);
font-size: larger;
border-radius: 15px;
margin: 30px 10px;
padding: 10px;
}
/* Carousel */
.custom-carousel {
position: relative;
max-width: 700px;
margin: 20px auto;
overflow: hidden;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.custom-carousel-inner {
position: relative;
width: 100%;
height: 0;
padding-bottom: 100%; /* 1:1 aspect ratio */
}
.custom-carousel-item {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.5s ease-in-out;
}
.custom-carousel-item.active {
opacity: 1;
}
.custom-carousel-item img {
width: 100%;
height: 100%;
object-fit: cover;
}
.custom-carousel-control {
position: absolute;
top: 50%;
transform: translateY(-50%);
color: var(--bg-1);
font-size: 24px;
text-decoration: none;
padding: 10px;
border-radius: 10px;
cursor: url('/assets/img/respectable-ghoda-hover.png'), auto;
background-color: rgba(24, 24, 24, 0.466);
}
.custom-carousel-control-prev {
left: 10px;
}
.custom-carousel-control-next {
right: 10px;
}
.custom-carousel-indicators {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
list-style: none;
display: flex;
}
.custom-carousel-indicators li {
width: 10px;
height: 10px;
background-color: rgba(255,255,255,0.5);
border-radius: 50%;
margin: 0 5px;
cursor: url(/assets/img/respectable-ghoda-hover.png), auto;
}
.custom-carousel-indicators li.active {
border-radius: 35%;
background-color: var(--clr-2);
}
#samayCarousel1 {
border-radius: 0%;
}
#samayCarousel2 {
border-radius: 10%;
}
#samayCarousel:hover, #samayCarousel2:hover {
cursor: url(/assets/img/avif/respectable-ghoda-hover.avif), auto;
}
@media (max-width: 700px) {
.custom-carousel {
max-width: 100%;
margin: 10px;
}
}
/* video-gallery */
#video-gallery {
border-radius: 15px;
margin: 30px 10px;
padding: 10px;
background-color: var(--bg-2);
cursor: url('/assets/img/respectable-ghoda-hover.png'), auto;
}
.video-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.video-item {
background-color: var(--bg-1);
padding: 10px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
transition: transform 0.5s ease, filter 0.5s ease;
}
.video-item h4 {
margin-top: 10px;
font-weight: bold;
color: #333;
}
.video-item:hover, .video-item h4:hover {
background-color: var(--clr-2);
color: var(--bg-2);
}
#video-gallery:hover, .video-wrapper iframe:hover {
cursor: url('/assets/img/parental-advisory4.2.1.png'), auto;
}
.video-wrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 aspect ratio */
height: 0;
overflow: hidden;
border-radius: .5em;
}
.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.video-wrapper img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
cursor: pointer;
}
/* Slider container */
.vslider-container {
position: relative;
width: 100%;
max-width: 700px; /* Adjust as needed */
margin: auto;
overflow: hidden;
border-radius: .4em; /* Optional: for rounded corners */
}
.vslider-wrapper {
display: flex;
transition: transform 0.5s ease-in-out;
}
.video-item {
min-width: 100%;
box-sizing: border-box;
padding: .6em;
}
/* Non-active slides styling */
.video-item:not(.active) {
transform: scale(0.9); /* Shrink non-active items */
filter: grayscale(70%) blur(.2em); /* Apply grayscale and blur to non-active items */
}
/* Ensure active slide is clear */
.video-item.active {
transform: scale(1); /* Ensure active item is at full scale */
filter: none; /* Remove any grayscale and blur from the active item */
}
/* Navigation buttons */
.vslider-nav {
position: absolute;
top: 50%;
width: 100%;
display: flex;
justify-content: space-between;
transform: translateY(-50%);
pointer-events: none; /* Prevent buttons from interfering with clicks */
}
.vnav-button {
background-color: rgba(24, 24, 24, 0.466);
border: none;
color: white;
padding: 1.5em .5em;
cursor: pointer;
font-size: 1.5em;
pointer-events: all; /* Allow buttons to be clickable */
z-index: 1; /* Ensure buttons are above other content */
}
#prev-btn:hover {
background-color: rgba(0, 0, 0, 0.8);
color: var(--clr-2);
}
#next-btn:hover {
background-color: rgba(0, 0, 0, 0.8);
color: var(--clr-2);
}
#prev-btn {
border-radius: 0 .5em .5em 0;
}
#next-btn {
border-radius: .5em 0 0 .5em;
}
/* Modal Styles */
.modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,.8);
justify-content: center;
align-items: center;
}
.modal-content {
position: relative;
width: 80%;
max-width: 50em;
}
.modal-content iframe {
width: 100%;
height: 30em;
max-height: 80%;
border-radius: .3em; /* Rounded corners for iframe */
}
@media (max-width: 700px) {
.modal-content {
max-width: 100%;
padding: 0;
margin: .2em;
}
.modal-content iframe {
height: 20em;
}
.vnav-button {
background-color: rgba(24, 24, 24, 0.7);
padding: 1em .3em;
font-size: 1.5em;
}
.vslider-nav {
top: 35%;
}
.video-item {
padding: .4em;
}
}
/* Close button styles */
.close {
position: fixed; /* Make it fixed to the viewport */
top: 20px;
right: 20px;
color: var(--clr-2);
font-size: 30px;
font-weight: bold;
cursor: pointer;
border: none;
background: transparent;
transition: color 0.3s, transform 0.3s;
z-index: 2; /* Ensure the close button is above the modal content */
}
.close:hover,
.close:focus {
color: var(--hg); /* Change color on hover */
transform: scale(1.1); /* Slightly enlarge on hover */
}
.footerContainer {
background-color: var(--bg-2);
color: var(--clr-2);
padding: 20px;
text-align: center;
border-radius: 15px;
margin: 30px 10px;
padding: 10px;
}
.socials {
margin-bottom: 10px;
}
.socials a {
color: var(--clr-2);
font-size: 1.5rem;
margin: 0 10px;
text-decoration: none;
transition: color 0.3s ease;
}
.socials a:hover {
color: var(--clr-1);
cursor: url('/assets/chessPieces/kinglight.png'), pointer;
}
.footerNav ul {
list-style-type: none;
padding: 0;
}
.footerNav ul li {
display: inline-block;
margin-right: 10px;
}
.footerNav ul li a {
color: var(--clr-2);
text-decoration: none;
transition: color 0.3s ease;
}
.footerNav ul li a:hover {
color: var(--clr-1);
cursor: url('/assets/chessPieces/kingdark.png'), pointer;
}
.designer a {
color: var(--clr-2);
text-decoration: none;
transition: color 0.3s ease;
}
.designer a:hover {
color: var(--clr-1);
text-decoration: double;
cursor: url('/assets/chessPieces/rooklight.png'), pointer;
}
/* NoCopyright */
.tooltip {
position: relative;
display: inline-block;
cursor: url('/assets/chessPieces/pawndark.png'), auto;
text-decoration: underline;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 100%;
background-color: var(--clr-1);
color: var(--clr-2);
text-align: center;
border-radius: 5px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%; /* Position above the text */
left: 50%;
margin-left: -80px; /* Center the tooltip */
opacity: 0;
transition: opacity 0.3s;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
#back-to-top {
position: fixed;
bottom: 20px;
right: 20px;
background-color: var(--clr-1);
color: var(--hg);
border: none;
border-radius: 50%;
width: 50px;
height: 50px;
font-size: 2rem;
cursor: pointer;
display: none;
transition: background-color 0.3s ease;
}
#back-to-top:hover {
background-color: var(--hg);
color: var(--clr-1);
cursor: url('/assets/img/respectable-ghoda-hover.png'), auto;
}
</style>
</head>
<body aria-labelledby="home" id="home">
<header>
<h1 id="title"><a href="#home">Samay Raina</a></h1>
<h2 id="supreme">The Hustler</h2>
</header>
<main>
<!--
<div class="samayNav">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#timeline">Timeline</a></li>
<li><a href="#photo-gallery">Photo Gallery</a></li>
<li><a href="#video-gallery">Video Gallery</a></li>
</ul>
</div>
-->
<!-- Tribute -->
<div id="tribute-info">
<!-- Image Slider -->
<div id="ld">
<figure>
<section class="container">
<div class="slider-wrapper">
<div class="slider">
<img src="/assets/img/maisamayhoon-2.jpg" class="slider-img" id="slide-1" alt="maisamayhoon">
<img id="slide-2" class="slider-img" src="/assets/img/maisamayhoon.jpg" alt="maisamayhoon">
<img id="slide-3" class="slider-img" src="/assets/img/maisamayhoon-3.jpg" alt="maisamayhoon">
<img id="slide-9" class="slider-img" src="/assets/img/maisamayhoon-16.jpg" alt="maisamayhoon">
</div>
<div class="slider-nav">
<a href="#slide-1"></a>
<a href="#slide-2"></a>
<a href="#slide-3"></a>
<a href="#slide-9"></a>
</div>
</div>
</section>
<figcaption>MAI SAMAY HOON</figcaption>
</figure>
</div>
<!-- About Samay -->
<article id="rd">
<h2>About Samay Raina</h2>
<p id="samay">Samay Raina is a versatile Indian entertainer who has won the hearts of millions with his unique mix of stand-up comedy and chess streaming. Hailing from Pune, Samay's journey to fame began with his passion for comedy, which he refined through local performances.</p>
<p id="samay">His big break came when he won the second season of Comicstaan, a popular comedy competition series. This victory established him as one of India’s rising comedy stars, known for his sharp wit and relatable humor.</p>
<p id="samay">During the COVID-19 lockdown, Samay combined his love for comedy and chess, becoming one of India’s most popular chess YouTubers. His channel features a blend of humor and strategic insights, attracting both chess enthusiasts and casual viewers.</p>
<p id="samay">Samay's collaborations with grandmasters and fellow comedians have revitalized interest in chess among younger audiences, making the game more accessible and enjoyable.</p>
<!--
<p id="samay">Samay Raina is a renowned Indian stand-up comedian and YouTuber known for his witty humor and entertaining content. With a massive following on social media, he has made a name for himself in the entertainment industry.</p>
<p id="samay">Samay's unique blend of humor and chess enthusiasm has endeared him to fans across the country. He has used his platform to support charitable causes and make a positive impact on his audience.</p>
-->
</article>
</div>
<!-- Timeline -->
<div id="timeline" aria-labelledby="timeline">
<h2><a href="#timeline">Samay OP: Timeline</a></h2>
<ul>
<li><strong>26 October 1997</strong>: Born in Jammu, India.</li>
<li><strong>Early 2000s</strong>: Raised in a Kashmiri Pandit family, influenced by Jammu and Kashmir's cultural richness.</li>
<li><strong>School Years</strong>: Educated at Ramadevi Public School and Hyderabad Public School.</li>
<li><strong>College Years</strong>: Pursued Printing Engineering at Pune Vidhyarthi Griha’s College Of Engineering And Technology.</li>
<li><strong>Early Career</strong>: Started performing stand-up comedy at local open mics during college.</li>
<li><strong>2019</strong>: Co-won Comicstaan Season 2 on Amazon Prime Video, gaining national recognition.</li>
<li><strong>2020</strong>: Pivoted to YouTube chess streaming during the COVID-19 pandemic.</li>
<li><strong>2021</strong>: Expanded online presence, collaborating with YouTubers and diversifying content.</li>
<li><strong>2023</strong>: Reached milestones with millions of YouTube subscribers, solidifying his status as a content creator.</li>
<li><strong>Present</strong>: Actively engages as a stand-up comedian, YouTuber, and chess enthusiast, while supporting charitable causes.</li>
</ul>
</div>
<!-- Photo Gallery -->
<div id="photo-gallery" aria-labelledby="photo-gallery">
<h2><a href="#photo-gallery">Samay Raina: Photo Gallery</a></h2>
<div class="custom-carousel" id="samayCarousel2">
<div class="custom-carousel-inner">
<div class="custom-carousel-item active">
<img src="/assets/img/avif/maisamayhoon.avif" alt="Mai Samay Hoon 1">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-2.avif" alt="Mai Samay Hoon 2">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-3.avif" alt="Mai Samay Hoon 3">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-4.avif" alt="Mai Samay Hoon 4">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-5.avif" alt="Mai Samay Hoon 5">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-6.avif" alt="Mai Samay Hoon 6">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-7.avif" alt="Mai Samay Hoon 7">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-8.avif" alt="Mai Samay Hoon 8">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-9.avif" alt="Mai Samay Hoon 9">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-10.avif" alt="Mai Samay Hoon 10">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-11.avif" alt="Mai Samay Hoon 11">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-12.avif" alt="Mai Samay Hoon 12">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-13.avif" alt="Mai Samay Hoon 13">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-14.avif" alt="Mai Samay Hoon 14">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-15.avif" alt="Mai Samay Hoon 15">
</div>
<div class="custom-carousel-item">
<img src="/assets/img/avif/maisamayhoon-16.avif" alt="Mai Samay Hoon 16">
</div>
</div>
<a class="custom-carousel-control custom-carousel-control-prev" role="button" data-slide="prev">
❮
</a>
<a class="custom-carousel-control custom-carousel-control-next" role="button" data-slide="next">
❯
</a>
<ol class="custom-carousel-indicators"></ol>
</div>
</div>
<!-- Video Gallery -->
<div id="video-gallery" aria-labelledby="video-gallery-title">
<h2 id="video-gallery-title"><a href="#video-gallery">Samay Raina: Video Gallery</a></h2>
<div class="vslider-container">
<div class="vslider-wrapper">
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="FhCbx2TmFUE" alt="Thumbnail of Samay Raina's video titled 'NARAK | Stand-up Comedy by Samay Raina'" />
</div>
<h4>NARAK | Stand-up Comedy by Samay Raina</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="KKnhgkmV7k8" alt="Thumbnail of Samay Raina's video titled 'Printing Engineering | Stand-up Comedy by Samay Raina'" />
</div>
<h4>Printing Engineering | Standup Comedy by Samay Raina</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="wVBf39WPInc" alt="Thumbnail of Samay Raina's video titled 'BHARWO KE KHILADI | Life is Unfair'" />
</div>
<h4>BHARWO KE KHILADI | Life is Unfair</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="pysQmeEYOJk" alt="Thumbnail of Samay Raina's video titled 'INDIA'S GOT LATENT | EP 01 ft. @raftaarmusic'" />
</div>
<h4>INDIA'S GOT LATENT | EP 01 ft. @raftaarmusic</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="DLgcCTnMheg" alt="Thumbnail of Samay Raina's video titled 'INDIA'S GOT LATENT | EP 02 ft. @GamerFleet @JokeSingh @KaranSinghMagic'" />
</div>
<h4>INDIA'S GOT LATENT | EP 02 ft. @GamerFleet @JokeSingh @KaranSinghMagic</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="xR_8_OHFo1k" alt="Thumbnail of Samay Raina's video titled 'INDIA'S GOT LATENT | EP 03 ft. Urfi Javed @ashishsolanki_1 @yashrajnt'" />
</div>
<h4>INDIA'S GOT LATENT | EP 03 ft. Urfi Javed @ashishsolanki_1 @yashrajnt</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="Vsx9a7-IXX4" alt="Thumbnail of Samay Raina's video titled 'INDIA'S GOT LATENT | EP 04 ft. @ComedianMaheepSingh @TandonAmit @neetipalta9490'" />
</div>
<h4>INDIA'S GOT LATENT | EP 04 ft. @ComedianMaheepSingh @TandonAmit @neetipalta9490</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="5d2iztjXNPE" alt="Thumbnail of Samay Raina's video titled 'Trying Food Hacks So You Don't Have To Ft. @SamayRainaOfficial | Sahiba Bali | Zomato'" />
</div>
<h4>Trying Food Hacks So You Don't Have To Ft. @SamayRainaOfficial | Sahiba Bali | Zomato</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="GR6mTKCXqgY" alt="Thumbnail of Samay Raina's video titled 'Comedian @SamayRainaOfficial 's Detox Challenge Ft. Sahiba Bali | Model Diet Food Challenge | Zomato'" />
</div>
<h4>Comedian @SamayRainaOfficial 's Detox Challenge Ft. Sahiba Bali | Model Diet Food Challenge | Zomato</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="jQMr3059Yyg" alt="Thumbnail of Samay Raina's video titled 'Comedian @SamayRainaOfficial cooks Biryani for Sahiba Bali | Wasting Samay | Zomato'" />
</div>
<h4>Comedian @SamayRainaOfficial cooks Biryani for Sahiba Bali | Wasting Samay | Zomato</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="nG8af3PbEaQ" alt="Thumbnail of Samay Raina's video titled 'DEFEATING @CarryMinati, @tanmaybhat ft. @BBKiVines HIGHLIGHTS'" />
</div>
<h4>DEFEATING @CarryMinati, @tanmaybhat ft. @BBKiVines HIGHLIGHTS</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="JXyI9EkTtVg" alt="Thumbnail of Samay Raina's video titled 'CHAT LEAKED MY CHILDHOOD PICS on REDDIT ft. Mom and Dad'" />
</div>
<h4>CHAT LEAKED MY CHILDHOOD PICS on REDDIT ft. Mom and Dad</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="Lg9TnNhEu6Q" alt="Thumbnail of Samay Raina's video titled 'FART OFF | SAMAY x CHAT x MUNAWAR | KR$NA ❤️'" />
</div>
<h4>FART OFF | SAMAY x CHAT x MUNAWAR | KR$NA ❤️</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="HYw--zi_HLs" alt="Thumbnail of Samay Raina's video titled 'Samay Raina X Mamaearth 😂'" />
</div>
<h4>Samay Raina X Mamaearth 😂</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="uAQLCjWG0vo" alt="Thumbnail of Samay Raina's video titled 'I BOUGHT THE MOST EXPENSIVE CHESS BOARD ON LIVE STREAM'" />
</div>
<h4>I BOUGHT THE MOST EXPENSIVE CHESS BOARD ON LIVE STREAM</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="4lDLyQFlCRA" alt="Thumbnail of Samay Raina's video titled 'Munawar Faruqui's bad habits'" />
</div>
<h4>Munawar Faruqui's bad habits</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="bif7Iu-SI7c" alt="Thumbnail of Samay Raina's video titled 'Bro spares nobody☠️ ft. @SHARKSHE'" />
</div>
<h4>Bro spares nobody☠️ ft. @SHARKSHE</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="378h3TP25to" alt="Thumbnail of Samay Raina's video titled 'Story of every Printing Engineer😂'" />
</div>
<h4>Story of every Printing Engineer😂</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="ylN-BnCAoXM" alt="Thumbnail of Samay Raina's video titled 'Samay Raina needs to hesitate☠️'" />
</div>
<h4>Samay Raina needs to hesitate☠️</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="Pqgz3GtWUvc" alt="Thumbnail of Samay Raina's video titled 'Samay Raina unbelievable Prediction in IND vs PAK 🤯'" />
</div>
<h4>Samay Raina unbelievable Prediction in IND vs PAK 🤯</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="URR2VWqb5iA" alt="Thumbnail of Samay Raina's video titled 'Samay got Fat sh*med 🤣'" />
</div>
<h4>Samay got Fat sh*med 🤣</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="YggJwXAeRfo" alt="Thumbnail of Samay Raina's video titled 'Zomato Roast'" />
</div>
<h4>Zomato Roast</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="QXSf_17xflk" alt="Thumbnail of Samay Raina's video titled 'India's Got Latent | Ep 1 - Mommy issues'" />
</div>
<h4>India's Got Latent | Ep 1 - Mommy issues</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="kFdUJbNNKKg" alt="Thumbnail of Samay Raina's video titled 'Funniest🤣 Questions of Samay Raina | Munawar Faruqui |Raftaar|Suhani Shah'" />
</div>
<h4>Funniest🤣 Questions of Samay Raina | Munawar Faruqui | Raftaar | Suhani Shah</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="FNNFfnDaVI4" alt="Thumbnail of Samay Raina's video titled 'WHY BRANDS LOVE💖 SAMAY RAINA?'" />
</div>
<h4>WHY BRANDS LOVE💖 SAMAY RAINA?</h4>
</div>
<div class="video-item">
<div class="video-wrapper">
<img class="video-thumbnail" data-video-id="J0QAIn9nF84" alt="Thumbnail of Samay Raina's video titled 'Worst Pickup Lines 😂 × @SamayRainaOfficial'" />
</div>
<h4>Worst Pickup Lines 😂 × @SamayRainaOfficial</h4>
</div>
<div class="video-item">
<div class="video-wrapper">