-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEl_Boletin_PostSOAR_Web.html
More file actions
951 lines (797 loc) · 73.8 KB
/
El_Boletin_PostSOAR_Web.html
File metadata and controls
951 lines (797 loc) · 73.8 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>El Boletín — After SOAR | Despierta Boricua at Yale</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Open+Sans:wght@400;600&family=Pacifico&family=Courier+Prime:wght@400;700&display=swap" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NBLXR36GVL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NBLXR36GVL');
</script>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', sans-serif; background: linear-gradient(135deg, #E8DCC4 0%, #D4C5A9 100%); color: #2B2D42; line-height: 1.6; }
.container { max-width: 850px; margin: 0 auto; background: #FFF8E7; box-shadow: 0 0 50px rgba(0,0,0,0.3); position: relative; overflow: hidden; }
/* RAILROAD TRACKS */
.railroad-track-left, .railroad-track-right { position: absolute; width: 8px; background: linear-gradient(180deg, #6B4423 0%, #8B5A2B 50%, #6B4423 100%); top: 0; bottom: 0; z-index: 1; box-shadow: 0 0 15px rgba(107, 68, 35, 0.4); }
.railroad-track-left { left: 60px; }
.railroad-track-right { right: 60px; }
.railroad-track-left::before, .railroad-track-right::before { content: ''; position: absolute; width: 150%; height: 100%; background-image: repeating-linear-gradient(0deg, transparent, transparent 45px, #4A3219 45px, #4A3219 55px, transparent 55px, transparent 100px); left: -25%; top: 0; }
/* Vines */
.vine-left, .vine-right { position: absolute; width: 50px; top: 0; bottom: 0; z-index: 2; pointer-events: none; }
.vine-left { left: 35px; background: linear-gradient(180deg, transparent 0%, rgba(45,106,79,0.35) 8%, transparent 16%, rgba(64,145,108,0.45) 24%, transparent 32%, rgba(45,106,79,0.35) 40%, transparent 48%, rgba(64,145,108,0.45) 56%, transparent 64%, rgba(45,106,79,0.35) 72%, transparent 80%, rgba(64,145,108,0.45) 88%, transparent 96%); }
.vine-right { right: 35px; background: linear-gradient(180deg, transparent 0%, rgba(64,145,108,0.45) 12%, transparent 20%, rgba(45,106,79,0.35) 28%, transparent 36%, rgba(64,145,108,0.45) 44%, transparent 52%, rgba(45,106,79,0.35) 60%, transparent 68%, rgba(64,145,108,0.45) 76%, transparent 84%, rgba(45,106,79,0.35) 92%, transparent 100%); }
/* Flowers */
.flower-accent { position: absolute; font-size: 1.8em; z-index: 3; animation: sway 4s ease-in-out infinite; filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2)); }
@keyframes sway { 0%, 100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }
.flower-accent:nth-child(1) { left: 45px; top: 5%; }
.flower-accent:nth-child(2) { right: 45px; top: 10%; animation-delay: 0.5s; }
.flower-accent:nth-child(3) { left: 50px; top: 18%; animation-delay: 1s; }
.flower-accent:nth-child(4) { right: 50px; top: 26%; animation-delay: 1.5s; }
.flower-accent:nth-child(5) { left: 48px; top: 34%; animation-delay: 2s; }
.flower-accent:nth-child(6) { right: 48px; top: 42%; animation-delay: 2.5s; }
.flower-accent:nth-child(7) { left: 45px; top: 50%; animation-delay: 0.3s; }
.flower-accent:nth-child(8) { right: 45px; top: 58%; animation-delay: 0.8s; }
.flower-accent:nth-child(9) { left: 50px; top: 66%; animation-delay: 1.3s; }
.flower-accent:nth-child(10) { right: 50px; top: 74%; animation-delay: 1.8s; }
.flower-accent:nth-child(11) { left: 48px; top: 82%; animation-delay: 2.3s; }
.flower-accent:nth-child(12) { right: 48px; top: 90%; animation-delay: 0.6s; }
.content-wrapper { position: relative; z-index: 4; padding: 0 90px; }
/* Header */
.railroad-header { background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #1B1B1B 100%); border-top: 12px solid #D4A574; border-bottom: 12px solid #2D6A4F; padding: 50px 40px; text-align: center; position: relative; overflow: hidden; box-shadow: inset 0 0 50px rgba(0,0,0,0.5); }
.railroad-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(circle at 20% 30%, rgba(241,168,150,0.15) 0%, transparent 40%), radial-gradient(circle at 80% 60%, rgba(168,218,220,0.15) 0%, transparent 40%), radial-gradient(circle at 40% 80%, rgba(45,106,79,0.2) 0%, transparent 40%); opacity: 0.6; }
.railroad-company-logo { background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%); border: 4px solid #D4A574; padding: 20px 30px; display: inline-block; margin-bottom: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); position: relative; }
.railroad-company-logo::before, .railroad-company-logo::after { content: '🌿'; position: absolute; font-size: 1.5em; filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.3)); }
.railroad-company-logo::before { top: -10px; left: -10px; transform: rotate(-45deg); }
.railroad-company-logo::after { top: -10px; right: -10px; transform: rotate(45deg); }
.company-name { font-family: 'Courier Prime', monospace; font-size: 0.9em; font-weight: 700; color: #6B4423; letter-spacing: 3px; margin-bottom: 5px; text-transform: uppercase; }
.established { font-family: 'Courier Prime', monospace; font-size: 0.7em; color: #2D6A4F; letter-spacing: 2px; }
.main-title { font-family: 'Poppins', sans-serif; font-size: 4em; font-weight: 800; color: #D4A574; margin: 25px 0; text-shadow: 3px 3px 0px rgba(0,0,0,0.3), 0 0 30px rgba(45,106,79,0.3); letter-spacing: 12px; position: relative; z-index: 2; }
.edition-badge { background: linear-gradient(135deg, #E63946 0%, #C5303E 100%); color: #FFF8E7; padding: 8px 25px; display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1em; letter-spacing: 3px; margin-bottom: 15px; border: 3px solid #FFD60A; box-shadow: 0 4px 15px rgba(230,57,70,0.4); animation: pulse-glow 3s ease-in-out infinite; }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 4px 15px rgba(230,57,70,0.4); } 50% { box-shadow: 0 4px 25px rgba(230,57,70,0.7), 0 0 40px rgba(255,214,10,0.3); } }
.subtitle-box { background: linear-gradient(135deg, #2D6A4F 0%, #40916C 100%); padding: 15px 30px; display: inline-block; color: #FFF8E7; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.1em; box-shadow: 0 4px 10px rgba(45,106,79,0.4); margin: 15px 0; border: 3px solid #D4A574; }
.route-info { font-family: 'Courier Prime', monospace; color: #A8DADC; font-size: 1em; margin-top: 20px; letter-spacing: 2px; line-height: 2; }
.route-info strong { color: #F1A896; }
.train-icon { font-size: 3em; margin: 15px 0; animation: train-cross 10s linear infinite; filter: drop-shadow(0 0 20px rgba(45,106,79,0.5)); }
@keyframes train-cross { 0% { transform: translateX(120%); opacity: 0; } 1%, 49% { opacity: 1; } 50% { transform: translateX(0); opacity: 1; } 99% { opacity: 1; } 100% { transform: translateX(-120%); opacity: 0; } }
/* Special edition banner */
.special-edition-banner { background: linear-gradient(135deg, #FFD60A 0%, #FFC300 50%, #FFD60A 100%); color: #1B1B1B; padding: 12px 30px; text-align: center; font-family: 'Courier Prime', monospace; font-weight: 700; font-size: 1em; letter-spacing: 3px; border: 3px solid #2D6A4F; margin-top: 15px; display: inline-block; }
/* Station Platforms */
.station-platform { background: linear-gradient(135deg, #6B4423 0%, #4A3219 100%); color: #FFF8E7; padding: 25px 35px; margin: 50px 0 30px 0; position: relative; border-left: 8px solid #2D6A4F; border-right: 8px solid #2D6A4F; box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.station-platform::before { content: '🌺'; position: absolute; left: -25px; top: 50%; transform: translateY(-50%); font-size: 2.5em; filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3)); animation: sway 3s ease-in-out infinite; }
.station-platform::after { content: '🌸'; position: absolute; right: -25px; top: 50%; transform: translateY(-50%); font-size: 2.5em; filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3)); animation: sway 3s ease-in-out infinite 1.5s; }
.platform-number { font-family: 'Courier Prime', monospace; font-size: 0.9em; letter-spacing: 3px; opacity: 0.8; margin-bottom: 5px; }
.platform-name { font-family: 'Poppins', sans-serif; font-size: 2em; font-weight: 800; letter-spacing: 3px; }
.content { padding: 40px 0; }
.section { margin-bottom: 60px; }
/* Ticket stubs */
.ticket-stub { background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%); border: 3px dashed #6B4423; padding: 25px; margin: 20px 0; position: relative; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.ticket-stub::before { content: '✂'; position: absolute; left: -15px; top: 50%; transform: translateY(-50%) rotate(90deg); font-size: 1.5em; color: #6B4423; }
.ticket-header { font-family: 'Courier Prime', monospace; font-size: 0.8em; letter-spacing: 2px; color: #6B4423; border-bottom: 2px solid #D4A574; padding-bottom: 10px; margin-bottom: 15px; display: flex; justify-content: space-between; }
/* Railway manifests */
.railway-manifest { background: linear-gradient(135deg, #2B2B2B 0%, #1B4332 100%); color: #FFF8E7; padding: 30px; border: 6px double #D4A574; font-family: 'Courier Prime', monospace; margin: 40px 0; box-shadow: 0 6px 20px rgba(0,0,0,0.4); position: relative; }
.railway-manifest::before { content: '🌿'; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); font-size: 2em; background: #2D6A4F; padding: 8px 15px; border-radius: 20px; border: 3px solid #D4A574; z-index: 10; }
.railway-manifest.shoutouts::before { content: '✨'; }
.railway-manifest.partnerships::before { content: '🤝'; }
.railway-manifest.schedule::before { content: '📅'; }
.manifest-header { text-align: center; font-size: 1.2em; letter-spacing: 4px; border-bottom: 3px solid #D4A574; padding-bottom: 15px; margin-bottom: 20px; color: #FFD60A; }
.manifest-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(212,165,116,0.4); gap: 15px; }
.manifest-item:last-child { border-bottom: none; }
.manifest-item-label { font-weight: 700; flex: 1; }
.manifest-item-detail { font-size: 0.85em; color: #A8DADC; text-align: right; flex-shrink: 0; }
.manifest-item-body { font-size: 0.85em; color: #D4C8B8; margin-top: 5px; font-weight: 400; }
/* Quote boxes */
.quote-box { background: linear-gradient(135deg, #2D6A4F 0%, #1B4332 100%); padding: 30px; margin: 30px 0; text-align: center; color: #FFF8E7; font-size: 1.3em; font-weight: 600; font-style: italic; border: 4px solid #D4A574; position: relative; }
.quote-box::before { content: '"'; position: absolute; top: -20px; left: 20px; font-size: 4em; color: #D4A574; font-family: Georgia, serif; line-height: 1; }
.quote-box .attribution { font-size: 0.7em; margin-top: 15px; font-style: normal; color: #A8DADC; letter-spacing: 2px; }
/* Event / recap cards */
.train-ticket { background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%); border: 4px solid #6B4423; border-left: 20px solid #D4A574; padding: 30px; position: relative; box-shadow: 0 6px 15px rgba(45,106,79,0.2); transition: all 0.3s ease; margin-bottom: 30px; }
.train-ticket:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(45,106,79,0.3); }
.train-ticket::before { content: ''; position: absolute; left: -25px; top: 0; bottom: 0; width: 20px; background: repeating-linear-gradient(0deg, transparent, transparent 10px, #2D6A4F 10px, #2D6A4F 15px); }
.train-ticket.red { border-left-color: #E63946; }
.train-ticket.red::before { background: repeating-linear-gradient(0deg, transparent, transparent 10px, #E63946 10px, #E63946 15px); }
.train-ticket.gold { border-left-color: #FFD60A; }
.train-ticket.gold::before { background: repeating-linear-gradient(0deg, transparent, transparent 10px, #B8860B 10px, #B8860B 15px); }
.ticket-route { font-family: 'Courier Prime', monospace; font-size: 0.8em; color: #2D6A4F; letter-spacing: 2px; margin-bottom: 10px; text-transform: uppercase; }
.ticket-route.red { color: #E63946; }
.ticket-event-name { font-family: 'Poppins', sans-serif; font-size: 1.6em; font-weight: 700; color: #2B2B2B; margin: 10px 0 5px 0; }
.ticket-date { font-size: 0.9em; color: #2D6A4F; font-weight: 600; margin-bottom: 15px; }
.ticket-divider { border: none; border-top: 2px dashed #D4A574; margin: 20px 0; }
.ticket-footer { color: #2D6A4F; font-weight: 700; font-size: 0.9em; font-family: 'Courier Prime', monospace; }
/* Photo grid */
.photo-grid { display: grid; gap: 12px; margin: 25px 0; }
.photo-grid.two-col { grid-template-columns: 1fr 1fr; }
.photo-grid.three-col { grid-template-columns: 1fr 1fr 1fr; }
.photo-item { position: relative; overflow: hidden; border: 3px solid #D4A574; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.photo-item:hover img { transform: scale(1.04); }
.photo-item.tall { grid-row: span 2; }
.photo-caption { font-family: 'Courier Prime', monospace; font-size: 0.75em; color: #6B4423; text-align: center; margin-top: 8px; font-style: italic; letter-spacing: 0.5px; padding: 0 4px; }
/* Portrait photo (Orlando, Sonia) */
.portrait-frame { text-align: center; margin: 25px 0; }
.portrait-frame img { max-width: 420px; width: 100%; border: 4px solid #D4A574; box-shadow: 0 8px 25px rgba(0,0,0,0.2); display: block; margin: 0 auto; }
.portrait-caption { font-family: 'Courier Prime', monospace; font-size: 0.8em; color: #6B4423; text-align: center; margin-top: 10px; font-style: italic; letter-spacing: 0.5px; }
/* Announcement / Calle Corona hero */
.calle-corona-hero { background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%); padding: 50px 40px; text-align: center; color: #FFF8E7; border: 6px double #D4A574; margin: 40px 0; position: relative; overflow: hidden; }
.calle-corona-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 50%, rgba(255,214,10,0.08) 0%, transparent 60%), radial-gradient(circle at 70% 40%, rgba(241,168,150,0.1) 0%, transparent 60%); pointer-events: none; }
.calle-corona-hero .date-label { font-family: 'Courier Prime', monospace; font-size: 0.9em; letter-spacing: 3px; color: #F1A896; margin-bottom: 10px; }
.calle-corona-hero h2 { font-family: 'Poppins', sans-serif; font-size: 3em; font-weight: 800; color: #FFD60A; letter-spacing: 5px; margin: 15px 0; text-shadow: 2px 2px 0 rgba(0,0,0,0.4); position: relative; z-index: 2; }
.calle-corona-hero .tagline { font-family: 'Pacifico', cursive; font-size: 1.3em; color: #F1A896; margin-bottom: 20px; }
.calle-corona-hero .divider { height: 3px; background: linear-gradient(90deg, transparent, #D4A574, transparent); max-width: 300px; margin: 20px auto; }
.calle-corona-hero p { font-size: 1.05em; line-height: 1.9; margin: 15px 0; position: relative; z-index: 2; }
.calle-corona-hero .footer-note { font-family: 'Courier Prime', monospace; font-size: 0.85em; color: #A8DADC; margin-top: 20px; letter-spacing: 1px; }
/* SOAR Video box */
.soar-video-box { background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%); border: 3px dashed #2D6A4F; padding: 30px; margin: 30px 0; }
.soar-video-box .box-label { font-family: 'Courier Prime', monospace; font-size: 0.8em; letter-spacing: 2px; color: #2D6A4F; border-bottom: 2px solid #D4A574; padding-bottom: 10px; margin-bottom: 15px; }
/* Shoutout box */
.shoutout-box { background: linear-gradient(135deg, #2B2B2B 0%, #1B1B1B 100%); color: #FFF8E7; border: 4px solid #D4A574; padding: 25px; margin: 25px 0; font-family: 'Courier Prime', monospace; }
.shoutout-header { text-align: center; color: #FFD60A; font-size: 1em; letter-spacing: 2px; border-bottom: 2px solid #D4A574; padding-bottom: 12px; margin-bottom: 18px; }
.shoutout-item { padding: 9px 0; border-bottom: 1px solid rgba(212,165,116,0.3); font-size: 0.9em; line-height: 1.6; }
.shoutout-item:last-child { border-bottom: none; }
.shoutout-note { color: #A8DADC; font-size: 0.8em; font-style: italic; margin-top: 12px; display: block; }
/* Green banner */
.green-banner { background: linear-gradient(135deg, #2D6A4F 0%, #1B4332 100%); color: #FFF8E7; padding: 25px 30px; text-align: center; font-family: 'Poppins', sans-serif; font-size: 1.15em; font-weight: 600; margin: 30px 0; }
/* Tribute cards */
.tribute-card { background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%); border: 4px solid #6B4423; border-left: 20px solid #2D6A4F; padding: 30px; margin-bottom: 30px; position: relative; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.tribute-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(45,106,79,0.25); }
.tribute-card::before { content: ''; position: absolute; left: -25px; top: 0; bottom: 0; width: 20px; background: repeating-linear-gradient(0deg, transparent, transparent 10px, #2D6A4F 10px, #2D6A4F 15px); }
.tribute-card.gold-left { border-left-color: #D4A574; }
.tribute-card.gold-left::before { background: repeating-linear-gradient(0deg, transparent, transparent 10px, #B8860B 10px, #B8860B 15px); }
.tribute-card-label { font-family: 'Courier Prime', monospace; font-size: 0.75em; letter-spacing: 2px; color: #2D6A4F; margin-bottom: 8px; text-transform: uppercase; }
.tribute-card-label.gold { color: #B8860B; }
.tribute-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.5em; font-weight: 700; color: #2B2D42; margin-bottom: 15px; }
.tribute-card-footer { border-top: 2px dashed #D4A574; padding-top: 15px; margin-top: 20px; color: #2D6A4F; font-weight: 700; font-size: 0.9em; font-family: 'Courier Prime', monospace; }
/* Initiative cards */
.initiative-card { background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%); border: 3px dashed #6B4423; padding: 28px; margin: 20px 0; position: relative; }
.initiative-label { font-family: 'Courier Prime', monospace; font-size: 0.75em; letter-spacing: 2px; color: #6B4423; border-bottom: 2px solid #D4A574; padding-bottom: 10px; margin-bottom: 15px; }
/* Schedule board */
.schedule-board { background: #1B1B1B; color: #FFD60A; padding: 30px; border: 8px solid #2D6A4F; font-family: 'Courier Prime', monospace; margin: 30px 0; box-shadow: inset 0 0 30px rgba(0,0,0,0.5), 0 6px 20px rgba(45,106,79,0.4); position: relative; }
.schedule-board::before { content: '🌴'; position: absolute; top: -20px; left: -20px; font-size: 2em; }
.schedule-board::after { content: '🌴'; position: absolute; bottom: -20px; right: -20px; font-size: 2em; }
.schedule-header { text-align: center; font-size: 1.5em; letter-spacing: 5px; margin-bottom: 25px; text-shadow: 0 0 10px #FFD60A, 0 0 20px rgba(45,106,79,0.5); }
.schedule-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; border-bottom: 1px solid #6B4423; transition: all 0.3s ease; }
.schedule-row:hover { background: rgba(45,106,79,0.2); }
.schedule-row:last-child { border-bottom: none; }
.schedule-row.highlight { background: rgba(230,57,70,0.15); border: 2px solid #E63946; margin: 5px 0; }
.schedule-name { font-size: 0.95em; }
.schedule-date { font-size: 0.85em; color: #A8DADC; letter-spacing: 1px; }
/* Donation CTA */
.donation-wink { background: linear-gradient(135deg, #FFF8E7 0%, #F5E6D3 100%); border: 3px dashed #E63946; padding: 35px; text-align: center; margin: 30px 0; }
.donation-wink .wink-label { font-family: 'Courier Prime', monospace; font-size: 0.75em; letter-spacing: 3px; color: #6B4423; margin-bottom: 15px; }
.donation-wink p { font-size: 1.05em; line-height: 1.8; margin-bottom: 25px; }
/* Buttons */
.railroad-button { display: inline-block; background: linear-gradient(135deg, #E63946 0%, #C5303E 100%); color: white; padding: 18px 40px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05em; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; border: 4px solid #2D6A4F; box-shadow: 0 6px 0 #8B1A1A, 0 8px 20px rgba(45,106,79,0.3); transition: all 0.2s ease; margin: 8px 5px; }
.railroad-button:hover { transform: translateY(3px); box-shadow: 0 3px 0 #8B1A1A, 0 5px 15px rgba(45,106,79,0.3); }
.railroad-button.green { background: linear-gradient(135deg, #2D6A4F 0%, #1B4332 100%); box-shadow: 0 6px 0 #0F2619, 0 8px 20px rgba(230,57,70,0.2); border-color: #D4A574; }
.railroad-button.gold { background: linear-gradient(135deg, #FFD60A 0%, #FFC300 100%); color: #1B1B1B; box-shadow: 0 6px 0 #B8860B, 0 8px 20px rgba(255,214,10,0.4); border-color: #2D6A4F; }
/* Track crossing divider */
.track-crossing { margin: 60px 0; text-align: center; position: relative; height: 40px; }
.track-crossing::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 6px; background: linear-gradient(90deg, #6B4423 0%, #2D6A4F 25%, #6B4423 50%, #2D6A4F 75%, #6B4423 100%); }
.track-crossing::after { content: '🚂'; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 2em; background: #FFF8E7; padding: 10px 20px; border: 4px solid #2D6A4F; border-radius: 50%; box-shadow: 0 4px 15px rgba(45,106,79,0.3); }
/* Ways to help */
.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
.help-card { background: linear-gradient(135deg, #2B2B2B 0%, #1B4332 100%); color: #FFF8E7; padding: 25px; border: 3px solid #D4A574; position: relative; transition: all 0.3s ease; }
.help-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(45,106,79,0.4); }
.help-card .help-badge { font-family: 'Courier Prime', monospace; font-size: 0.7em; letter-spacing: 2px; color: #FFD60A; margin-bottom: 8px; }
.help-card h4 { font-family: 'Poppins', sans-serif; font-size: 1.1em; font-weight: 700; margin-bottom: 10px; }
.help-card p { font-size: 0.9em; color: #A8DADC; line-height: 1.6; }
/* Links section */
.connect-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin: 30px 0; }
.connect-card { background: linear-gradient(135deg, #2B2B2B 0%, #1B1B1B 100%); color: #FFF8E7; padding: 20px 15px; text-align: center; text-decoration: none; border: 3px solid #D4A574; font-family: 'Courier Prime', monospace; transition: all 0.3s ease; display: block; }
.connect-card:hover { background: linear-gradient(135deg, #2D6A4F 0%, #1B4332 100%); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(45,106,79,0.4); }
.connect-card .connect-icon { font-size: 1.8em; margin-bottom: 8px; }
.connect-card .connect-name { font-size: 0.75em; letter-spacing: 2px; color: #FFD60A; margin-bottom: 5px; }
.connect-card .connect-handle { font-size: 0.8em; color: #A8DADC; }
/* Footer */
.train-depot-footer { background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #1B1B1B 100%); border-top: 12px solid #D4A574; color: #FFF8E7; padding: 60px 40px; text-align: center; position: relative; }
.train-depot-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 20%, rgba(241,168,150,0.15) 0%, transparent 50%); pointer-events: none; }
.depot-quote { font-family: 'Pacifico', cursive; font-size: 2.2em; color: #F1A896; margin-bottom: 30px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 30px rgba(45,106,79,0.3); position: relative; z-index: 2; }
.depot-message { font-size: 1.1em; line-height: 2; margin: 20px 0; position: relative; z-index: 2; }
.final-destination { font-family: 'Courier Prime', monospace; font-size: 1.2em; color: #FFD60A; letter-spacing: 3px; margin: 30px 0; padding: 20px; border: 3px dashed #2D6A4F; position: relative; z-index: 2; }
.footer-links { margin: 30px 0; position: relative; z-index: 2; }
.footer-links a { color: #A8DADC; text-decoration: none; margin: 0 15px; font-size: 0.95em; transition: color 0.2s ease; }
.footer-links a:hover { color: #FFD60A; }
.wepa { font-family: 'Poppins', sans-serif; font-size: 3em; font-weight: 800; color: #FFD60A; margin: 30px 0; text-shadow: 3px 3px 0 rgba(0,0,0,0.3); position: relative; z-index: 2; }
.footer-railroad-id { font-family: 'Courier Prime', monospace; font-size: 0.8em; letter-spacing: 2px; color: #A8DADC; line-height: 2; position: relative; z-index: 2; }
.footer-railroad-id .green { color: #2D6A4F; }
.postscript { font-size: 0.95em; margin-top: 30px; position: relative; z-index: 2; }
/* Typography helpers */
.drop-cap::first-letter { font-size: 4.5em; font-weight: 800; float: left; line-height: 0.8; margin: 10px 15px 0 0; color: #2D6A4F; font-family: 'Poppins', sans-serif; text-shadow: 2px 2px 0px #D4A574; }
.emphasis-text { font-family: 'Pacifico', cursive; font-size: 1.4em; color: #E63946; margin: 20px 0; }
.body-text { font-size: 1.05em; line-height: 1.85; margin: 18px 0; color: #2B2D42; }
.signature { text-align: right; font-style: italic; color: #666; margin: 25px 0; font-size: 0.95em; }
/* Responsive */
@media (max-width: 768px) {
.railroad-track-left { left: 20px; }
.railroad-track-right { right: 20px; }
.vine-left { left: 10px; }
.vine-right { right: 10px; }
.content-wrapper { padding: 0 50px; }
.main-title { font-size: 2.5em; letter-spacing: 6px; }
.platform-name { font-size: 1.5em; }
.flower-accent { display: none; }
.calle-corona-hero { padding: 35px 25px; }
.calle-corona-hero h2 { font-size: 2em; }
.photo-grid.two-col, .photo-grid.three-col { grid-template-columns: 1fr; }
.help-grid { grid-template-columns: 1fr; }
.connect-grid { grid-template-columns: 1fr 1fr; }
.station-platform::before, .station-platform::after { display: none; }
}
@media (max-width: 500px) {
.content-wrapper { padding: 0 30px; }
.railroad-header { padding: 35px 20px; }
.main-title { font-size: 2em; letter-spacing: 4px; }
.connect-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<div class="container">
<!-- Railroad tracks -->
<div class="railroad-track-left"></div>
<div class="railroad-track-right"></div>
<div class="vine-left"></div>
<div class="vine-right"></div>
<!-- Flowers along tracks -->
<div class="flower-accent">🌺</div>
<div class="flower-accent">🌸</div>
<div class="flower-accent">🌺</div>
<div class="flower-accent">🌿</div>
<div class="flower-accent">🌸</div>
<div class="flower-accent">🌺</div>
<div class="flower-accent">🌿</div>
<div class="flower-accent">🌸</div>
<div class="flower-accent">🌺</div>
<div class="flower-accent">🌿</div>
<div class="flower-accent">🌸</div>
<div class="flower-accent">🌺</div>
<div class="content-wrapper">
<!-- HEADER -->
<div class="railroad-header">
<div class="railroad-company-logo">
<div class="company-name">Puerto Rico Railroad & Transport Co.</div>
<div class="established">EST. 1891 — DESPIERTA BORICUA LINE — 2026</div>
</div>
<div class="train-icon">🚂</div>
<div class="edition-badge">🌟 SPECIAL EDITION — AFTER SOAR 🌟</div>
<h1 class="main-title">EL BOLETÍN</h1>
<div class="subtitle-box">THE DESPIERTA BORICUA RAILWAY GAZETTE</div>
<p class="route-info">
<strong>ROUTE:</strong> PAST 🌿 PRESENT 🌺 FUTURE<br>
<strong>DEPARTURE:</strong> FEBRUARY–MARCH 2026 | VOLUME 4<br>
<strong>DESTINATION:</strong> ¡PA'LANTE SIEMPRE!
</p>
</div>
<div class="content">
<!-- ══════════════════════════════════════ -->
<!-- ANDÉN NO. 1: DE LA DIRECTIVA -->
<!-- ══════════════════════════════════════ -->
<div class="station-platform">
<div class="platform-number">ANDÉN NO. 1</div>
<div class="platform-name">DE LA DIRECTIVA</div>
</div>
<div class="section">
<p class="emphasis-text">¡Wepa, familia!</p>
<p class="body-text drop-cap">We did it. We actually did it. SOAR is over. We're standing, hearts full, feeling something that's hard to put into words but impossible to ignore. This one is for you. All of you.</p>
<p class="body-text">Despierta Boricua reached its fundraising goal. And while the campaign numbers matter — we're not going to pretend they don't — what moved us most wasn't the total. It was the <em>who</em>. Alumni we hadn't heard from in years. Parents. Friends of friends who found us through a share, a post, a text from someone who said "you have to see what these students are doing." You showed up, and that means everything.</p>
<div class="ticket-stub">
<div class="ticket-header">
<span>CONDUCTOR'S MESSAGE</span>
<span>No. 004</span>
</div>
<p style="font-size: 1.1em; line-height: 1.8; font-style: italic;">"Your support was more than financial. It was a vote of confidence in what we're building and in who we are."</p>
</div>
<p class="signature">— La Directiva 2026 ✊🏽<br><em>(A.K.A. your hardworking, slightly caffeinated, always proud board)</em></p>
</div>
<div class="track-crossing"></div>
<!-- ══════════════════════════════════════ -->
<!-- ANDÉN NO. 2: GRACIAS -->
<!-- ══════════════════════════════════════ -->
<div class="station-platform">
<div class="platform-number">ANDÉN NO. 2</div>
<div class="platform-name">GRACIAS — WHAT YOUR SUPPORT MEANS</div>
</div>
<div class="section">
<p class="body-text">Because of your generosity, we are moving forward with one of the most ambitious things we've ever attempted: <strong>closing the streets for Calle Corona.</strong></p>
<!-- Calle Corona Hero Announcement -->
<div class="calle-corona-hero">
<div class="date-label">FRIDAY, APRIL 24, 2026</div>
<div style="font-size: 2.5em; margin: 10px 0;">🎉</div>
<h2>CALLE CORONA</h2>
<p class="tagline">SanSe llegó al Norte</p>
<div class="divider"></div>
<p>We're bringing <strong>Las Fiestas de la Calle San Sebastián</strong> to New Haven. Blocking off High Street and Crown Street. Bomba. Salsa. Flea market. Food trucks. Live performances. Local vendors. Yale meets New Haven — the way it should be.</p>
<p>This is about more than celebration. It's about inviting both communities together, letting our presence be known, and closing the gap between students at the university and those in New Haven. Puerto Rico's most beloved festival, brought to Connecticut. <strong>This one's for all of us.</strong></p>
<p class="footer-note">This is yours. You made it possible.</p>
</div>
<p class="body-text">It's hard to fully describe the feeling, not just that we reached our goal, but that so many of you <em>chose</em> to believe in us. That matters in a way that numbers can't capture.</p>
<!-- SOAR Video — separate, correct attribution -->
<div class="soar-video-box">
<div class="box-label">🎬 THE SOAR VIDEO</div>
<p class="body-text" style="margin: 0;">During the campaign, we released a video to support our SOAR fundraising push highlighting Despierta Boricua, the work we've been building, and why it matters. The response exceeded anything we expected. Engagement across our platforms surged, we surpassed <strong>1,000 followers</strong>, and alumni began reaching out directly — offering mentorship, collaboration, and support that extends far beyond donations. That was all you. Thank you.</p>
</div>
</div>
<!-- ╔══════════════════════════════════════════════════╗ -->
<!-- ║ DONOR ROLL SNIPPET — WEB VERSION ║ -->
<!-- ║ INSERT: Inside Andén No. 2 (Gracias section) ║ -->
<!-- ║ after the .manifest-item SOAR video box and ║ -->
<!-- ║ before the .track-crossing divider ║ -->
<!-- ╚══════════════════════════════════════════════════╝ -->
<div class="railway-manifest shoutouts" style="margin: 40px 0;">
<div class="manifest-header" style="color: #FFD60A; text-align: center;">
═══ NUESTROS PASAJEROS ═══
</div>
<div style="text-align: center; font-family: 'Courier Prime', monospace; font-size: 0.75em; color: #A8DADC; letter-spacing: 2px; margin: -8px 0 20px 0;">
SOAR CAMPAIGN — ROLL OF HONOR
</div>
<p style="font-family: 'Open Sans', sans-serif; font-size: 0.95em; color: #D4C8B8; line-height: 1.8; margin: 0 0 24px 0; text-align: center;">
These are the people who believed before the train left the station. Because of them, the tracks are laid.
</p>
<!-- Alumni -->
<div class="manifest-item" style="flex-direction: column; align-items: flex-start; gap: 10px;">
<div class="manifest-item-label" style="color: #FFD60A; letter-spacing: 2px; font-size: 0.78em;">
🎓 ALUMNI
</div>
<div style="display: flex; flex-wrap: wrap; gap: 8px 28px;">
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Billy Kolber</span>
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Eduardo Padro</span>
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Fabian Rosado</span>
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Gilbert Casellas</span>
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Graciela Trilla</span>
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Jose Montes</span>
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Martín José Sepúlveda MD ScD</span>
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Robert Rodriguez</span>
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Sonja Malek-Nieves</span>
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Anonymous</span>
</div>
</div>
<!-- Friends & Community -->
<div class="manifest-item" style="flex-direction: column; align-items: flex-start; gap: 10px;">
<div class="manifest-item-label" style="color: #F1A896; letter-spacing: 2px; font-size: 0.78em;">
🤝 FRIENDS & COMMUNITY
</div>
<div style="display: flex; flex-wrap: wrap; gap: 8px 28px;">
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Enrique Sacerio-Garí</span>
</div>
</div>
<!-- Faculty/Staff & Parents -->
<div class="manifest-item" style="flex-direction: column; align-items: flex-start; gap: 10px;">
<div class="manifest-item-label" style="color: #A8DADC; letter-spacing: 2px; font-size: 0.78em;">
🏫 FACULTY, STAFF & PARENTS
</div>
<div style="display: flex; flex-wrap: wrap; gap: 8px 28px;">
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Melissa Mason</span>
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Tamara Perry</span>
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Anonymous</span>
<span style="font-family: 'Courier Prime', monospace; font-size: 0.93em; color: #FFF8E7;">Anonymous</span>
</div>
</div>
<!-- Closing line -->
<div style="border-top: 1px solid rgba(212,165,116,0.35); padding-top: 16px; margin-top: 8px; text-align: center;">
<span style="font-family: 'Courier Prime', monospace; font-size: 0.78em; color: #A8DADC; letter-spacing: 1px; font-style: italic;">
Con todo el cariño y gratitud — La Directiva 2026 ✊🏽
</span>
</div>
</div>
<div class="track-crossing"></div>
<!-- ══════════════════════════════════════ -->
<!-- ANDÉN NO. 3: -->
<!-- ══════════════════════════════════════ -->
<div class="station-platform">
<div class="platform-number">ANDÉN NO. 3</div>
<div class="platform-name">LO QUE PASÓ — Gather, Gathered, and Gatherings</div>
</div>
<div class="section">
<div class="train-ticket red">
<div class="ticket-route red">ROUTE: MARSH HALL, YALE SCIENCE HILL</div>
<div class="ticket-event-name">🐰 THE BENITO BOWL — DB's Largest Event to Date</div>
<div class="ticket-date">Sunday, February 8 | 6:00 PM | In partnership with YCC</div>
<p class="body-text">We were thrilled to have partnered with YCC to host the <strong>largest event Despierta Boricua has organized to date</strong>: a Super Bowl watch celebration that brought together <strong>over 400 people</strong>. The room was filled with music, dancing, and joy as we watched a historic performance by Benito. With our instruments, we were the loudest ones in the room. Obvio.</p>
<p class="body-text">But this gathering was a cultural moment. A Spanish-language performance, rooted in Puerto Rican history and identity, took center stage on one of the most visible platforms in the country. It reminded us that success does not require erasure, that English is not the only language of value, and that Latino communities are creators of culture. <strong>America is a continent. A continent of proud Latinos who cannot be ignored.</strong></p>
<!-- Photo grid: 3 photos from the event -->
<div class="photo-grid two-col" style="margin: 25px 0;">
<!-- ✏️ REPLACE src values with your actual hosted image URLs -->
<div class="photo-item">
<img src="./BenitoBowl/DB_BenitoBowl.jpg" alt="Despierta Boricua team at the Benito Bowl" />
</div>
<div class="photo-item">
<img src="./BenitoBowl/LocalBusiness.jpg" alt="Food from local New Haven Puerto Rican restaurants" />
</div>
</div>
<div class="photo-grid" style="margin-bottom: 20px;">
<div class="photo-item">
<img src="./BenitoBowl/BenitoBowl_1.jpg" alt="400+ attendees at Marsh Hall for the Benito Bowl" />
</div>
</div>
<p class="body-text">As DB co-president Antonio Padilla shared during the event: <em>celebration and awareness must coexist.</em> While we recognized this moment as a collective win, we also acknowledged the realities facing our communities, including fear surrounding immigration enforcement. For many, speaking up carries risk. Using this space to affirm dignity and solidarity was part of what made the evening meaningful. Culture, after all, is inseparable from the lives of the people who create it.</p>
<!-- Antonio photo -->
<div class="portrait-frame" style="margin: 25px 0;">
<!-- ✏️ REPLACE src with Antonio's stage photo URL -->
<img src="./BenitoBowl/Antonio_Speech_BenitoBowl.jpg" alt="Antonio Padilla on stage at the Benito Bowl" />
<div class="portrait-caption">Antonio Padilla, DB Co-President, addressing 400+ attendees at the Benito Bowl <!-- ✏️ Add photo credit if needed --></div>
</div>
<p class="body-text">Events like this reflect what DB stands for: <strong>building spaces where joy, community, and consciousness can exist together.</strong> We are deeply proud of our community — of the resilience, creativity, and love that filled the room that night.</p>
<!-- Shoutout box -->
<div class="shoutout-box">
<div class="shoutout-header">✨ SHOUTOUTS — THIS HAPPENED BECAUSE OF YOU ✨</div>
<div class="shoutout-item">🎉 <strong>Daniel, Nina & Hector</strong> — Bad Bunny Trivia & Sapo Concho giveaway</div>
<div class="shoutout-item">📷 <strong>The LUL Brothers</strong> — 100 disposable cameras (yes, 100)</div>
<div class="shoutout-item">🤳 <strong>Our photo booth crew</strong> — for making memories worth developing</div>
<div class="shoutout-item">🍽️ <strong>Local New Haven restaurants</strong> — Sabor Nuestro, Cayeyena, El Coqui, Via Láctea</div>
<span class="shoutout-note">DB was proud to coordinate with local Puerto Rican & Latino businesses to feed the room.</span>
</div>
<hr class="ticket-divider">
<div class="portrait-frame" style="margin: 25px 0;">
<!-- ✏️ REPLACE src with Antonio's stage photo URL -->
<img src="./BenitoBowl/08super-bowl-halftime-grammy-moment-gfch-mediumSquareAt3X.jpg" alt="Antonio Padilla on stage at the Benito Bowl" />
<div class="portrait-caption"> </div>
</div>
<div class="ticket-footer" style="text-align: center; font-size: 1.05em; font-style: italic; color: #2B2D42; padding: 10px 0;">
"Y todos ustedes, personas maravillosas, son los verdaderos MVPs — nunca lo olviden."
</div>
</div>
</div>
<div class="train-ticket" style="border-left-color: #E63946;">
<div style="position:absolute;left:-25px;top:0;bottom:0;width:20px;background:repeating-linear-gradient(0deg,transparent,transparent 10px,#E63946 10px,#E63946 15px);"></div>
<div class="ticket-route" style="color:#E63946;">ROUTE: ST. ANTHONY HALL</div>
<div class="ticket-event-name">💋 Kiss N' Tell</div>
<div class="ticket-date">Friday, February 13 | 10:00 PM | St. Anthony Hall</div>
<div style="font-family:'Courier Prime',monospace;font-size:0.75em;letter-spacing:2px;color:#6B4423;margin:5px 0 15px 0;">DB × MEChA × De Colores × Blackout</div>
<p class="body-text">A Valentine's Day party dedicated to <strong>Black and Brown queerness and femininity</strong> — and one of the largest parties we've had all year.</p>
<p class="body-text"> For these communities, the dancefloor was more than a party; it became a space of expression, safety, and liberation.
The music was a way of expressing and finding romance, however hot or mild it may be.
This dancefloor held everything: techno, house, freestyle, jersey club, reggaetón, dembow.
Not the old story of these genres as background noise — but the new one, with the artists who are rewriting what that music means.
Ivy Queen. Young Miko. Karol G. Ice Spice. Tokischa. Strong, queer, femme, unapologetic. The room felt it.</p>
<!-- Two images side by side -->
<div class="photo-grid two-col" style="margin: 25px 0;">
<!-- ✏️ REPLACE with actual image URLs -->
<div class="photo-item">
<img src="./Kiss N Tell/Kiss N Tell/BarStation.jpg" />
</div>
<div class="photo-item">
<img src="./Kiss N Tell/Kiss N Tell/DJSetUp.jpg" />
</div>
</div>
<!-- Two more images side by side -->
<div class="photo-grid two-col" style="margin: 0 0 25px 0;">
<div class="photo-item">
<img src="./Kiss N Tell/Kiss N Tell/Dancefloor1.jpg" />
</div>
<div class="photo-item">
<img src="./Kiss N Tell/Dancefloor2.png" />
</div>
</div>
<p class="body-text">St. Anthony Hall gave us the ballroom and the bar and we came with the rest. The drinks menu was curated for the occasion:</p>
<!-- Drinks manifest -->
<div class="railway-manifest shoutouts" style="margin: 25px 0;">
<div class="manifest-header" style="color:#F1A896;">═══ DRINK MENU ═══</div>
<div class="manifest-item">
<div>
<div class="manifest-item-label">🩷 Hard Launch</div>
<div class="manifest-item-body">Alcoholic cranberry pineapple juice. Making your entrance official.</div>
</div>
</div>
<div class="manifest-item">
<div>
<div class="manifest-item-label">🤍 Soft Launch</div>
<div class="manifest-item-body">Non-alcoholic cranberry pineapple juice. Same energy, different proof.</div>
</div>
</div>
<div class="manifest-item">
<div>
<div class="manifest-item-label">🍷 Strapped N' Ready</div>
<div class="manifest-item-body">Sangria. No further explanation needed.</div>
</div>
</div>
</div>
<p class="body-text">And of course, the glow sticks. Blue/Purple for single. Green for taken. And yellow for... complicated.</p>
<div class="quote-box" style="font-size:1.1em;">
"Se sorprenderían con cuántos salieron con el amarillo."
<div class="attribution">— The Dancefloor Doesn't Lie</div>
</div>
<p class="body-text">The energy was high and the turnout brought new faces! This night only happened because four organizations showed up together: <strong>DB, MEChA, De Colores, and Blackout.</strong> Solidarity sometimes is a dancefloor on Valentine's night with glow sticks and sangria.</p>
<hr class="ticket-divider">
<div class="ticket-footer">🎉 Huge success. New faces. New energy. This community-building we're looking for.</div>
</div>
</div>
<div class="track-crossing"></div>
<!-- ══════════════════════════════════════ -->
<!-- ANDÉN NO. 4: SOLIDARITY IN ACTION -->
<!-- ══════════════════════════════════════ -->
<div class="station-platform">
<div class="platform-number">ANDÉN NO. 4</div>
<div class="platform-name">SOLIDARITY IN ACTION — JOINT VENTURES</div>
</div>
<div class="section">
<p class="body-text">SOAR may have officially closed. Our work has not. Here's what we've been up to and who we've been building with:</p>
<div class="railway-manifest partnerships">
<div class="manifest-header">═══ PARTNERSHIP MANIFEST ═══</div>
<div class="manifest-item">
<div>
<div class="manifest-item-label">📜 MEChA x DB — Teach-In on U.S. Imperialism</div>
<div class="manifest-item-body">Our very own Nina Bautista shared Puerto Rican history with the broader La Casa community. This is the kind of knowledge-sharing that builds real solidarity — not performative, not transactional, but rooted in mutual respect and a shared understanding of where we come from.</div>
</div>
</div>
<div class="manifest-item">
<div>
<div class="manifest-item-label">☕ MEChA x DB — Joint Cafecito</div>
<div class="manifest-item-body">Coming up this Friday. Come get coffee, meet people, and keep building what we started at the teach-in. La Casa Cultural.</div>
</div>
<div class="manifest-item-detail">UPCOMING</div>
</div>
<div class="manifest-item">
<div>
<div class="manifest-item-label">🏛️ Dwight Hall — Developing Partnership & Eventual Affiliation</div>
<div class="manifest-item-body">We're deepening our relationship with Dwight Hall as we work toward expanding impact in New Haven — strengthening the bridge between campus organizing and local community engagement.</div>
</div>
<div class="manifest-item-detail">IN PROGRESS</div>
</div>
</div>
<div class="green-banner">
🌟 When we come together, <em>magic</em> happens. Period. 🌟
</div>
</div>
<div class="track-crossing"></div>
<!-- ══════════════════════════════════════ -->
<!-- ANDÉN NO. 5: HOMENAJE -->
<!-- ══════════════════════════════════════ -->
<div class="station-platform">
<div class="platform-number">ANDÉN NO. 5</div>
<div class="platform-name">HOMENAJE — HONORING THOSE WHO CAME BEFORE</div>
</div>
<div class="section">
<!-- Orlando Rivera -->
<div class="tribute-card">
<div class="tribute-card-label">IN MEMORIAM</div>
<h3>🕊️ Orlando Rivera '77</h3>
<p class="body-text">We would like to extend our deepest gratitude to Orlando Rivera '77 for the space he fought to create for our community at Yale — a space that allows us to exist for one another, to organize, to learn, and to build together. Orlando did not simply help establish a physical location. He helped make possible a community rooted in care, dignity, and collective responsibility.</p>
<p class="body-text">He was an extraordinary human being, and his absence is deeply felt across generations. Quite simply, we would not be here without him.</p>
<!-- Orlando Photo -->
<div class="portrait-frame">
<!-- ✏️ REPLACE src with Orlando's actual photo URL -->
<img src="./Orlando Rivera/Orlando Rivera/Orlando1.jpg" alt="Orlando Rivera '77" />
<div class="portrait-caption">Orlando Rivera '77 - photo taken by David Gonzalez <!-- ✏️ Add photo credit: e.g. "Photo courtesy of [name / Yale archives / family]" --></div>
</div>
<!-- Orlando Photo -->
<div class="portrait-frame">
<!-- ✏️ REPLACE src with Orlando's actual photo URL -->
<img src="./Orlando Rivera/Orlando Rivera/Orlando2.jpg" alt="Orlando Rivera '77" />
</div>
<div class="portrait-frame">
<!-- ✏️ REPLACE src with Orlando's actual photo URL -->
<img src="./Orlando Rivera/Orlando Rivera/Orlando4.jpg" alt="Orlando Rivera '77" />
<div class="portrait-caption">Photo taken from Manuel Del Valle <!-- ✏️ Add photo credit: e.g. "Photo courtesy of [name / Yale archives / family]" --></div>
</div>
<hr class="ticket-divider">
<div class="tribute-card-footer">
For those who wish to offer condolences in Orlando's memory, donations may be made to Despierta Boricua or La Casa. Contributions made in his honor will help us continue caring for the very space he helped secure for our community.
</div>
</div>
<!-- Julia de Burgos / Sonia Rosa -->
<div class="tribute-card gold-left">
<div class="tribute-card-label gold">ROUTE: LA CASA CULTURAL</div>
<h3>🌺 Celebrating Julia de Burgos</h3>
<p class="body-text">We were honored to participate in this year's celebration of Julia de Burgos' birthday. The space Orlando helped found was never intended solely for Puerto Ricans, but for the broader Latino community — committed to open dialogue, to challenging injustice, and to fostering safety alongside critical thought. It's only fitting that it carries the name of an Afro-Boricua poet.</p>
<p class="body-text">We were especially proud to see our very own <strong>Sonia Rosa</strong> present on Julia de Burgos' life and legacy, her poetry and her character as both a historical figure and an enduring example of resistance, creativity, and intellectual courage.</p>
<!-- Sonia Photo -->
<div class="portrait-frame">
<!-- ✏️ REPLACE src with Sonia's actual photo URL -->
<img src="./Julia de Burgos Event 26/Julia de Burgos Event 26/IMG_7307.jpg" alt="Sonia Rosa presenting at the Julia de Burgos Birthday Celebration" />
<div class="portrait-caption">Sonia Rosa presenting at the Julia de Burgos Birthday Celebration, La Casa Cultural <!-- ✏️ Add photo credit if needed --></div>
</div>
<hr class="ticket-divider">
<div class="tribute-card-footer" style="color: #B8860B;">
✊🏽 Sonia Rosa, we see you. We're proud of you.
</div>
</div>
</div>
<div class="track-crossing"></div>
<!-- ══════════════════════════════════════ -->
<!-- ANDÉN NO. 6: INICIATIVAS -->
<!-- ══════════════════════════════════════ -->
<div class="station-platform">
<div class="platform-number">ANDÉN NO. 6</div>
<div class="platform-name">INICIATIVAS — BUILDING NEW TRACKS</div>
</div>
<div class="section">
<div class="initiative-card">
<div class="initiative-label">🏺 MEMORY, INDIGENEITY & THE TAÍNO EXHIBIT</div>
<p class="body-text">In line with our commitment to memory and <em>homenaje</em>, we're collaborating
with the curators of the Peabody Museum's Taíno exhibit to organize a curated walkthrough
— alongside NISAY — followed by a small-group conversation.</p>
<p class="body-text">We'll reflect on exhibit choices, what does indigeneity mean in a Caribbean context, and on the personal
paths many of us navigate in relation to Taíno identity today. Questions
we'll explore: What choices shaped the exhibit? What does it mean to present
indigenous identity? How do we connect personally and as a community to Taíno identity today?
How do exhibits shape how people understand survival, erasure, and revival?</p>
<p class="body-text">
We will begin with a screening of <i>We Are Still Here: The Taíno Lives</i> by Ermelinda Cortes. This will be followed by a curator-led walkthrough of the Taíno Exhibit and a facilitated group discussion with snacks, where students will ask questions, share perspectives, and engage collectively with themes of indigeneity and memory. We will conclude with a clay pottery studio session, highlighting ceramics as a shared Indigenous artistic tradition that reflects connection to the earth, community identity, and cultural continuity.
</p>
</div>
</div>
<div class="track-crossing"></div>
<!-- ══════════════════════════════════════ -->
<!-- ANDÉN NO. 7: THE PAGE IS STILL OPEN -->
<!-- ══════════════════════════════════════ -->
<div class="station-platform">
<div class="platform-number">ANDÉN NO. 7</div>
<div class="platform-name">THE TRAIN KEEPS MOVING — ONE MORE THING</div>
</div>
<div class="section">
<p class="body-text">Yale SOAR may have officially closed. Our work has not. And — purely hypothetically speaking — community support doesn't really operate on deadlines either.</p>
<p class="body-text">If you intended to donate but payday came late, or life simply got in the way — our page is still up. We're not <em>officially</em> asking (Yale policy and all that). But we're also not going to make it ugly.</p>
<div class="donation-wink">
<div class="wink-label">CONDUCTOR'S WINK</div>
<p>Can we explicitly ask for more donations? Legally… not quite.<br>Can we leave the page looking incredibly enticing? <strong>Absolutely.</strong></p>
<a href="https://givecampus.com/schools/YaleUniversity/yalesoar/pages/despierta-boricua" class="railroad-button">
💛 Donation Page 💛
</a>
<p style="margin-top: 20px; font-size: 0.9em; color: #666; font-style: italic;">You're welcome to be the first to test whether it works. Let us know. 😉</p>
</div>
</div>
<div class="track-crossing"></div>
<!-- ══════════════════════════════════════ -->
<!-- ANDÉN NO. 8: PRÓXIMA PARADA -->
<!-- ══════════════════════════════════════ -->
<div class="station-platform">
<div class="platform-number">ANDÉN NO. 8</div>
<div class="platform-name">PRÓXIMA PARADA — WHAT'S COMING</div>
</div>
<div class="section">
<p class="body-text">SOAR marked the end of a campaign. For Despierta Boricua, it marks the beginning of what comes next. Here's the full spring schedule — mark your calendars:</p>
<div class="schedule-board">
<div class="schedule-header">═══ SPRING 2026 SCHEDULE ═══</div>
<div class="schedule-row">
<span class="schedule-name">☕ MEChA x DB Joint Cafecito</span>
<span class="schedule-date">THIS FRIDAY | LA CASA</span>
</div>
<div class="schedule-row">
<span class="schedule-name">🏺 Taíno Heritage Exhibit Walkthrough</span>
<span class="schedule-date"> SAT 03/28 | PEABODY x NISAY</span>
</div>
<div class="schedule-row">
<span class="schedule-name">📚 Emma Amador x RITM Book Event</span>
<span class="schedule-date">APRIL 2026</span>
</div>
<div class="schedule-row highlight">
<span class="schedule-name">🎉 CALLE CORONA — SanSe in New Haven</span>
<span class="schedule-date">FRI 04/24 | HIGH ST & CROWN ST</span>
</div>
<div class="schedule-row">
<span class="schedule-name">🏛️ Estamos Aquí Conference</span>
<span class="schedule-date">FALL 2026 | 26 UNIVERSITIES</span>
</div>
</div>
<div style="text-align: center; margin: 40px 0;">
<p style="font-size: 1.1em; margin-bottom: 20px;">We always need more hands — and ideas. All aboard:</p>
<a href="mailto:[email protected]" class="railroad-button green">📧 Get Involved</a>
<a href="https://givecampus.com/schools/YaleUniversity/yalesoar/pages/despierta-boricua" class="railroad-button gold">💛 Support the Movement</a>
</div>
</div>
<div class="track-crossing"></div>
<!-- ══════════════════════════════════════ -->
<!-- ANDÉN NO. 9: HOW YOU CAN HELP -->
<!-- ══════════════════════════════════════ -->
<div class="station-platform">
<div class="platform-number">ANDÉN NO. 9</div>
<div class="platform-name">HOW YOU CAN HELP — BEYOND DONATING</div>
</div>
<div class="section">
<p class="body-text">Money isn't the only way to support the movement. Here's how else you can show up:</p>
<div class="help-grid">
<div class="help-card">
<div class="help-badge">HIGH IMPACT</div>
<h4>📤 Share the Campaign</h4>
<p>Post it. Text it to one person who might care. Forward this newsletter. Reach matters more than we can say.</p>
</div>
<div class="help-card">
<div class="help-badge">ARCHIVE</div>
<h4>📸 Share Your Memories</h4>
<p>Photos, stories, flyers, merchandise from any era. Our archival project is ongoing. Your history is our history.</p>
</div>
<div class="help-card">
<div class="help-badge">NETWORK</div>
<h4>🤝 Connect Us</h4>
<p>Know someone who should speak at the conference? A vendor for Calle Corona? A contact on the island? Introduce us.</p>
</div>
<div class="help-card">
<div class="help-badge">VISIBILITY</div>
<h4>📣 Spread the Word</h4>
<p>Tell people about DB. About the conference. About Calle Corona. The more people know, the bigger this gets.</p>
</div>
</div>
<div style="text-align: center; margin-top: 20px;">
<a href="mailto:[email protected]?subject=Archive" class="railroad-button green" style="font-size: 0.9em; padding: 14px 28px;">📧 Share Your Story / Archive</a>
<a href="mailto:[email protected]?subject=Ideas" class="railroad-button green" style="font-size: 0.9em; padding: 14px 28px;">💡 Share Ideas / Connections</a>
</div>
</div>
<div class="track-crossing"></div>
<!-- ══════════════════════════════════════ -->
<!-- ANDÉN NO. 10: MANTENTE CONECTADO -->
<!-- ══════════════════════════════════════ -->
<div class="station-platform">
<div class="platform-number">ANDÉN NO. 10</div>
<div class="platform-name">MANTENTE CONECTADO — ALL LINES OPEN</div>
</div>
<div class="section">
<p class="body-text" style="text-align: center;">We're everywhere, and we want YOU in the mix:</p>
<div class="connect-grid">
<a href="https://www.instagram.com/despiertaboricuayale/" class="connect-card">
<div class="connect-icon">📷</div>
<div class="connect-name">INSTAGRAM</div>
<div class="connect-handle">@DespiertaBoricuaYale</div>
</a>
<a href="https://www.facebook.com/despiertaboricuayale/" class="connect-card">
<div class="connect-icon">📘</div>
<div class="connect-name">FACEBOOK</div>
<div class="connect-handle">Despierta Boricua at Yale</div>
</a>
<a href="https://despiertaboricua-yale.org/" class="connect-card">
<div class="connect-icon">🌐</div>
<div class="connect-name">WEBSITE</div>
<div class="connect-handle">despiertaboricua-yale.org</div>
</a>
<a href="mailto:[email protected]" class="connect-card">
<div class="connect-icon">📧</div>
<div class="connect-name">EMAIL</div>
<div class="connect-handle">[email protected]</div>
</a>
<a href="https://www.linkedin.com/company/despierta-boricua-puerto-rican-student-organization-at-yale/?viewAsMember=true" class="connect-card">
<div class="connect-icon">💼</div>
<div class="connect-name">LINKEDIN</div>
<div class="connect-handle">Despierta Boricua at Yale</div>
</a>
<a href="https://linktr.ee/despiertaboricuayale" class="connect-card">
<div class="connect-icon">🔗</div>
<div class="connect-name">LINKTREE</div>
<div class="connect-handle">All links in one place</div>
</a>
</div>
<p class="body-text" style="text-align: center; margin-top: 30px;">
Got questions? Want to get involved? Just want to talk about the latest Bad Bunny drop?<br>
<strong>We're here. Always.</strong> 🇵🇷
</p>
</div>
</div><!-- end .content -->
</div><!-- end .content-wrapper -->
<!-- FOOTER -->
<div class="train-depot-footer">
<div class="depot-quote">Juntos somos más fuertes</div>
<p class="depot-message">SOAR marked the end of a campaign.<br>For Despierta Boricua, it marks the beginning of what comes next.</p>
<p class="depot-message">Whether you graduated decades ago or you're a first-year still finding your people, <em>you belong here</em>. This isn't just an org. It's a legacy. Our family. Our home.</p>
<p class="depot-message">So keep showing up. Keep sharing your stories. Keep waving that flag with pride.</p>
<div class="final-destination">PORQUE ESTO ES PA'LANTE, SIEMPRE PA'LANTE 🌿</div>
<div class="wepa">¡WEPA!</div>
<div style="height: 4px; background: linear-gradient(90deg, transparent, #D4A574, transparent); max-width: 400px; margin: 30px auto;"></div>
<div class="footer-railroad-id">
PUERTO RICO RAILROAD & TRANSPORT CO.<br>
DESPIERTA BORICUA LINE<br>
EST. 1891 — SERVING COMUNIDAD SINCE 2025<br>
<span class="green">━━━ Reclaimed by Nature, Restored by Community ━━━</span>
</div>
<div class="footer-links">
<a href="https://www.instagram.com/despiertaboricuayale/">Instagram</a>
<a href="https://www.facebook.com/despiertaboricuayale/">Facebook</a>
<a href="https://despiertaboricua-yale.org/">Website</a>
<a href="mailto:[email protected]">Email</a>
<a href="https://givecampus.com/schools/YaleUniversity/yalesoar/pages/despierta-boricua">Donate</a>
</div>
<p style="font-size: 0.85em; opacity: 0.7; position: relative; z-index: 2;">
🌴 Made with love, cafecito, and way too many late-night group chats 🌴
</p>
<p class="postscript">
<em>Con cariño y lucha,<br>Despierta Boricua at Yale</em>
</p>
<p class="postscript" style="margin-top: 20px;">
<strong>P.S.</strong> — If you made it this far, you're officially part of the family.<br>
Now go share this with someone who needs to see it. <em>¡Vamo'!</em>
</p>
</div>
</div><!-- end .container -->
</body>
</html>