@mottosports/motto-video-player 1.0.1-rc.74 → 1.0.1-rc.75

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -66,600 +66,8 @@ function styleInject(css, { insertAt } = {}) {
66
66
  }
67
67
  }
68
68
 
69
- // src/index.css
70
- styleInject(`/*! tailwindcss v4.1.8 | MIT License | https://tailwindcss.com */
71
- @layer properties;
72
- @layer theme, base, components, utilities;
73
- @layer theme {
74
- :root,
75
- :host {
76
- --font-sans:
77
- ui-sans-serif,
78
- system-ui,
79
- sans-serif,
80
- "Apple Color Emoji",
81
- "Segoe UI Emoji",
82
- "Segoe UI Symbol",
83
- "Noto Color Emoji";
84
- --font-mono:
85
- ui-monospace,
86
- SFMono-Regular,
87
- Menlo,
88
- Monaco,
89
- Consolas,
90
- "Liberation Mono",
91
- "Courier New",
92
- monospace;
93
- --color-red-600: oklch(57.7% 0.245 27.325);
94
- --color-black: #000;
95
- --color-white: #fff;
96
- --spacing: 0.25rem;
97
- --text-xs: 0.75rem;
98
- --text-xs--line-height: calc(1 / 0.75);
99
- --text-sm: 0.875rem;
100
- --text-sm--line-height: calc(1.25 / 0.875);
101
- --text-base: 1rem;
102
- --text-base--line-height: calc(1.5 / 1);
103
- --text-lg: 1.125rem;
104
- --text-lg--line-height: calc(1.75 / 1.125);
105
- --text-xl: 1.25rem;
106
- --text-xl--line-height: calc(1.75 / 1.25);
107
- --text-2xl: 1.5rem;
108
- --text-2xl--line-height: calc(2 / 1.5);
109
- --text-5xl: 3rem;
110
- --text-5xl--line-height: 1;
111
- --font-weight-medium: 500;
112
- --font-weight-semibold: 600;
113
- --font-weight-bold: 700;
114
- --tracking-wide: 0.025em;
115
- --tracking-widest: 0.1em;
116
- --radius-md: 0.375rem;
117
- --radius-2xl: 1rem;
118
- --animate-spin: spin 1s linear infinite;
119
- --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
120
- --aspect-video: 16 / 9;
121
- --default-transition-duration: 150ms;
122
- --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
123
- --default-font-family: var(--font-sans);
124
- --default-mono-font-family: var(--font-mono);
125
- }
126
- }
127
- @layer base {
128
- *,
129
- ::after,
130
- ::before,
131
- ::backdrop,
132
- ::file-selector-button {
133
- box-sizing: border-box;
134
- margin: 0;
135
- padding: 0;
136
- border: 0 solid;
137
- }
138
- html,
139
- :host {
140
- line-height: 1.5;
141
- -webkit-text-size-adjust: 100%;
142
- tab-size: 4;
143
- font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
144
- font-feature-settings: var(--default-font-feature-settings, normal);
145
- font-variation-settings: var(--default-font-variation-settings, normal);
146
- -webkit-tap-highlight-color: transparent;
147
- }
148
- hr {
149
- height: 0;
150
- color: inherit;
151
- border-top-width: 1px;
152
- }
153
- abbr:where([title]) {
154
- -webkit-text-decoration: underline dotted;
155
- text-decoration: underline dotted;
156
- }
157
- h1,
158
- h2,
159
- h3,
160
- h4,
161
- h5,
162
- h6 {
163
- font-size: inherit;
164
- font-weight: inherit;
165
- }
166
- a {
167
- color: inherit;
168
- -webkit-text-decoration: inherit;
169
- text-decoration: inherit;
170
- }
171
- b,
172
- strong {
173
- font-weight: bolder;
174
- }
175
- code,
176
- kbd,
177
- samp,
178
- pre {
179
- font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
180
- font-feature-settings: var(--default-mono-font-feature-settings, normal);
181
- font-variation-settings: var(--default-mono-font-variation-settings, normal);
182
- font-size: 1em;
183
- }
184
- small {
185
- font-size: 80%;
186
- }
187
- sub,
188
- sup {
189
- font-size: 75%;
190
- line-height: 0;
191
- position: relative;
192
- vertical-align: baseline;
193
- }
194
- sub {
195
- bottom: -0.25em;
196
- }
197
- sup {
198
- top: -0.5em;
199
- }
200
- table {
201
- text-indent: 0;
202
- border-color: inherit;
203
- border-collapse: collapse;
204
- }
205
- :-moz-focusring {
206
- outline: auto;
207
- }
208
- progress {
209
- vertical-align: baseline;
210
- }
211
- summary {
212
- display: list-item;
213
- }
214
- ol,
215
- ul,
216
- menu {
217
- list-style: none;
218
- }
219
- img,
220
- svg,
221
- video,
222
- canvas,
223
- audio,
224
- iframe,
225
- embed,
226
- object {
227
- display: block;
228
- vertical-align: middle;
229
- }
230
- img,
231
- video {
232
- max-width: 100%;
233
- height: auto;
234
- }
235
- button,
236
- input,
237
- select,
238
- optgroup,
239
- textarea,
240
- ::file-selector-button {
241
- font: inherit;
242
- font-feature-settings: inherit;
243
- font-variation-settings: inherit;
244
- letter-spacing: inherit;
245
- color: inherit;
246
- border-radius: 0;
247
- background-color: transparent;
248
- opacity: 1;
249
- }
250
- :where(select:is([multiple], [size])) optgroup {
251
- font-weight: bolder;
252
- }
253
- :where(select:is([multiple], [size])) optgroup option {
254
- padding-inline-start: 20px;
255
- }
256
- ::file-selector-button {
257
- margin-inline-end: 4px;
258
- }
259
- ::placeholder {
260
- opacity: 1;
261
- }
262
- @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
263
- ::placeholder {
264
- color: currentcolor;
265
- @supports (color: color-mix(in lab, red, red)) {
266
- color: color-mix(in oklab, currentcolor 50%, transparent);
267
- }
268
- }
269
- }
270
- textarea {
271
- resize: vertical;
272
- }
273
- ::-webkit-search-decoration {
274
- -webkit-appearance: none;
275
- }
276
- ::-webkit-date-and-time-value {
277
- min-height: 1lh;
278
- text-align: inherit;
279
- }
280
- ::-webkit-datetime-edit {
281
- display: inline-flex;
282
- }
283
- ::-webkit-datetime-edit-fields-wrapper {
284
- padding: 0;
285
- }
286
- ::-webkit-datetime-edit,
287
- ::-webkit-datetime-edit-year-field,
288
- ::-webkit-datetime-edit-month-field,
289
- ::-webkit-datetime-edit-day-field,
290
- ::-webkit-datetime-edit-hour-field,
291
- ::-webkit-datetime-edit-minute-field,
292
- ::-webkit-datetime-edit-second-field,
293
- ::-webkit-datetime-edit-millisecond-field,
294
- ::-webkit-datetime-edit-meridiem-field {
295
- padding-block: 0;
296
- }
297
- :-moz-ui-invalid {
298
- box-shadow: none;
299
- }
300
- button,
301
- input:where([type=button], [type=reset], [type=submit]),
302
- ::file-selector-button {
303
- appearance: button;
304
- }
305
- ::-webkit-inner-spin-button,
306
- ::-webkit-outer-spin-button {
307
- height: auto;
308
- }
309
- [hidden]:where(:not([hidden=until-found])) {
310
- display: none !important;
311
- }
312
- }
313
- @layer utilities {
314
- .pointer-events-none {
315
- pointer-events: none;
316
- }
317
- .visible {
318
- visibility: visible;
319
- }
320
- .sr-only {
321
- position: absolute;
322
- width: 1px;
323
- height: 1px;
324
- padding: 0;
325
- margin: -1px;
326
- overflow: hidden;
327
- clip: rect(0, 0, 0, 0);
328
- white-space: nowrap;
329
- border-width: 0;
330
- }
331
- .absolute {
332
- position: absolute;
333
- }
334
- .fixed {
335
- position: fixed;
336
- }
337
- .relative {
338
- position: relative;
339
- }
340
- .static {
341
- position: static;
342
- }
343
- .inset-0 {
344
- inset: calc(var(--spacing) * 0);
345
- }
346
- .top-4 {
347
- top: calc(var(--spacing) * 4);
348
- }
349
- .right-0 {
350
- right: calc(var(--spacing) * 0);
351
- }
352
- .right-4 {
353
- right: calc(var(--spacing) * 4);
354
- }
355
- .bottom-0 {
356
- bottom: calc(var(--spacing) * 0);
357
- }
358
- .bottom-4 {
359
- bottom: calc(var(--spacing) * 4);
360
- }
361
- .left-0 {
362
- left: calc(var(--spacing) * 0);
363
- }
364
- .left-4 {
365
- left: calc(var(--spacing) * 4);
366
- }
367
- .z-10 {
368
- z-index: 10;
369
- }
370
- .z-20 {
371
- z-index: 20;
372
- }
373
- .z-50 {
374
- z-index: 50;
375
- }
376
- .container {
377
- width: 100%;
378
- @media (width >= 40rem) {
379
- max-width: 40rem;
380
- }
381
- @media (width >= 48rem) {
382
- max-width: 48rem;
383
- }
384
- @media (width >= 64rem) {
385
- max-width: 64rem;
386
- }
387
- @media (width >= 80rem) {
388
- max-width: 80rem;
389
- }
390
- @media (width >= 96rem) {
391
- max-width: 96rem;
392
- }
393
- }
394
- .m-6 {
395
- margin: calc(var(--spacing) * 6);
396
- }
397
- .mt-1 {
398
- margin-top: calc(var(--spacing) * 1);
399
- }
400
- .mt-3 {
401
- margin-top: calc(var(--spacing) * 3);
402
- }
403
- .mb-2 {
404
- margin-bottom: calc(var(--spacing) * 2);
405
- }
406
- .mb-6 {
407
- margin-bottom: calc(var(--spacing) * 6);
408
- }
409
- .flex {
410
- display: flex;
411
- }
412
- .grid {
413
- display: grid;
414
- }
415
- .aspect-video {
416
- aspect-ratio: var(--aspect-video);
417
- }
418
- .h-2 {
419
- height: calc(var(--spacing) * 2);
420
- }
421
- .h-12 {
422
- height: calc(var(--spacing) * 12);
423
- }
424
- .h-24 {
425
- height: calc(var(--spacing) * 24);
426
- }
427
- .h-full {
428
- height: 100%;
429
- }
430
- .w-2 {
431
- width: calc(var(--spacing) * 2);
432
- }
433
- .w-12 {
434
- width: calc(var(--spacing) * 12);
435
- }
436
- .w-24 {
437
- width: calc(var(--spacing) * 24);
438
- }
439
- .w-full {
440
- width: 100%;
441
- }
442
- .grow {
443
- flex-grow: 1;
444
- }
445
- .animate-pulse {
446
- animation: var(--animate-pulse);
447
- }
448
- .animate-spin {
449
- animation: var(--animate-spin);
450
- }
451
- .auto-cols-max {
452
- grid-auto-columns: max-content;
453
- }
454
- .grid-flow-col {
455
- grid-auto-flow: column;
456
- }
457
- .flex-col {
458
- flex-direction: column;
459
- }
460
- .items-center {
461
- align-items: center;
462
- }
463
- .justify-center {
464
- justify-content: center;
465
- }
466
- .justify-stretch {
467
- justify-content: stretch;
468
- }
469
- .gap-1 {
470
- gap: calc(var(--spacing) * 1);
471
- }
472
- .overflow-hidden {
473
- overflow: hidden;
474
- }
475
- .rounded-full {
476
- border-radius: calc(infinity * 1px);
477
- }
478
- .rounded-md {
479
- border-radius: var(--radius-md);
480
- }
481
- .bg-\\[\\#111111\\] {
482
- background-color: #111111;
483
- }
484
- .bg-\\[\\#151515\\] {
485
- background-color: #151515;
486
- }
487
- .bg-black {
488
- background-color: var(--color-black);
489
- }
490
- .bg-red-600 {
491
- background-color: var(--color-red-600);
492
- }
493
- .bg-transparent {
494
- background-color: transparent;
495
- }
496
- .bg-white {
497
- background-color: var(--color-white);
498
- }
499
- .bg-gradient-to-t {
500
- --tw-gradient-position: to top in oklab;
501
- background-image: linear-gradient(var(--tw-gradient-stops));
502
- }
503
- .from-black\\/70 {
504
- --tw-gradient-from: color-mix(in srgb, #000 70%, transparent);
505
- @supports (color: color-mix(in lab, red, red)) {
506
- --tw-gradient-from: color-mix(in oklab, var(--color-black) 70%, transparent);
507
- }
508
- --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
509
- }
510
- .to-transparent {
511
- --tw-gradient-to: transparent;
512
- --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
513
- }
514
- .bg-cover {
515
- background-size: cover;
516
- }
517
- .bg-center {
518
- background-position: center;
519
- }
520
- .bg-no-repeat {
521
- background-repeat: no-repeat;
522
- }
523
- .p-2 {
524
- padding: calc(var(--spacing) * 2);
525
- }
526
- .p-4 {
527
- padding: calc(var(--spacing) * 4);
528
- }
529
- .px-2 {
530
- padding-inline: calc(var(--spacing) * 2);
531
- }
532
- .px-4 {
533
- padding-inline: calc(var(--spacing) * 4);
534
- }
535
- .py-1 {
536
- padding-block: calc(var(--spacing) * 1);
537
- }
538
- .text-center {
539
- text-align: center;
540
- }
541
- .text-left {
542
- text-align: left;
543
- }
544
- .font-mono {
545
- font-family: var(--font-mono);
546
- }
547
- .text-2xl {
548
- font-size: var(--text-2xl);
549
- line-height: var(--tw-leading, var(--text-2xl--line-height));
550
- }
551
- .text-base {
552
- font-size: var(--text-base);
553
- line-height: var(--tw-leading, var(--text-base--line-height));
554
- }
555
- .text-lg {
556
- font-size: var(--text-lg);
557
- line-height: var(--tw-leading, var(--text-lg--line-height));
558
- }
559
- .text-sm {
560
- font-size: var(--text-sm);
561
- line-height: var(--tw-leading, var(--text-sm--line-height));
562
- }
563
- .text-xl {
564
- font-size: var(--text-xl);
565
- line-height: var(--tw-leading, var(--text-xl--line-height));
566
- }
567
- .text-xs {
568
- font-size: var(--text-xs);
569
- line-height: var(--tw-leading, var(--text-xs--line-height));
570
- }
571
- .text-\\[10px\\] {
572
- font-size: 10px;
573
- }
574
- .leading-none {
575
- --tw-leading: 1;
576
- line-height: 1;
577
- }
578
- .font-bold {
579
- --tw-font-weight: var(--font-weight-bold);
580
- font-weight: var(--font-weight-bold);
581
- }
582
- .font-medium {
583
- --tw-font-weight: var(--font-weight-medium);
584
- font-weight: var(--font-weight-medium);
585
- }
586
- .font-semibold {
587
- --tw-font-weight: var(--font-weight-semibold);
588
- font-weight: var(--font-weight-semibold);
589
- }
590
- .tracking-wide {
591
- --tw-tracking: var(--tracking-wide);
592
- letter-spacing: var(--tracking-wide);
593
- }
594
- .tracking-widest {
595
- --tw-tracking: var(--tracking-widest);
596
- letter-spacing: var(--tracking-widest);
597
- }
598
- .text-white {
599
- color: var(--color-white);
600
- }
601
- .uppercase {
602
- text-transform: uppercase;
603
- }
604
- .shadow-lg {
605
- --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
606
- box-shadow:
607
- var(--tw-inset-shadow),
608
- var(--tw-inset-ring-shadow),
609
- var(--tw-ring-offset-shadow),
610
- var(--tw-ring-shadow),
611
- var(--tw-shadow);
612
- }
613
- .filter {
614
- filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
615
- }
616
- .md\\:gap-5 {
617
- @media (width >= 48rem) {
618
- gap: calc(var(--spacing) * 5);
619
- }
620
- }
621
- .md\\:rounded-2xl {
622
- @media (width >= 48rem) {
623
- border-radius: var(--radius-2xl);
624
- }
625
- }
626
- .md\\:rounded-2xl\\! {
627
- @media (width >= 48rem) {
628
- border-radius: var(--radius-2xl) !important;
629
- }
630
- }
631
- .md\\:text-5xl {
632
- @media (width >= 48rem) {
633
- font-size: var(--text-5xl);
634
- line-height: var(--tw-leading, var(--text-5xl--line-height));
635
- }
636
- }
637
- .md\\:text-base {
638
- @media (width >= 48rem) {
639
- font-size: var(--text-base);
640
- line-height: var(--tw-leading, var(--text-base--line-height));
641
- }
642
- }
643
- .md\\:text-sm {
644
- @media (width >= 48rem) {
645
- font-size: var(--text-sm);
646
- line-height: var(--tw-leading, var(--text-sm--line-height));
647
- }
648
- }
649
- .md\\:text-xl {
650
- @media (width >= 48rem) {
651
- font-size: var(--text-xl);
652
- line-height: var(--tw-leading, var(--text-xl--line-height));
653
- }
654
- }
655
- .md\\:text-xs {
656
- @media (width >= 48rem) {
657
- font-size: var(--text-xs);
658
- line-height: var(--tw-leading, var(--text-xs--line-height));
659
- }
660
- }
661
- }
662
- @layer components {
69
+ // src/styles.css
70
+ styleInject(`@layer components {
663
71
  video::-webkit-media-controls {
664
72
  display: none !important;
665
73
  }
@@ -729,8 +137,7 @@ styleInject(`/*! tailwindcss v4.1.8 | MIT License | https://tailwindcss.com */
729
137
  opacity: 0 !important;
730
138
  }
731
139
  .motto-video-container {
732
- position: relative;
733
- width: 100%;
140
+ @apply relative w-full;
734
141
  min-height: 300px;
735
142
  }
736
143
  @supports (aspect-ratio: 16/9) {
@@ -739,65 +146,16 @@ styleInject(`/*! tailwindcss v4.1.8 | MIT License | https://tailwindcss.com */
739
146
  }
740
147
  }
741
148
  .motto-video-responsive {
742
- position: absolute;
743
- top: calc(var(--spacing) * 0);
744
- left: calc(var(--spacing) * 0);
745
- height: 100%;
746
- width: 100%;
149
+ @apply absolute top-0 left-0 w-full h-full;
747
150
  }
748
151
  .motto-skip-button {
749
- position: absolute;
750
- top: calc(1/2 * 100%);
751
- z-index: 10;
752
- display: flex;
753
- height: calc(var(--spacing) * 16);
754
- width: calc(var(--spacing) * 16);
755
- --tw-translate-y: calc(calc(1/2 * 100%) * -1);
756
- translate: var(--tw-translate-x) var(--tw-translate-y);
757
- cursor: pointer;
758
- align-items: center;
759
- justify-content: center;
760
- border-radius: calc(infinity * 1px);
761
- border-style: var(--tw-border-style);
762
- border-width: 0px;
763
- background-color: color-mix(in srgb, #000 70%, transparent);
764
- @supports (color: color-mix(in lab, red, red)) {
765
- background-color: color-mix(in oklab, var(--color-black) 70%, transparent);
766
- }
767
- font-size: var(--text-2xl);
768
- line-height: var(--tw-leading, var(--text-2xl--line-height));
769
- color: var(--color-white);
770
- opacity: 80%;
771
- transition-property: all;
772
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
773
- transition-duration: var(--tw-duration, var(--default-transition-duration));
774
- --tw-duration: 200ms;
775
- transition-duration: 200ms;
776
- &:hover {
777
- @media (hover: hover) {
778
- --tw-scale-x: 110%;
779
- --tw-scale-y: 110%;
780
- --tw-scale-z: 110%;
781
- scale: var(--tw-scale-x) var(--tw-scale-y);
782
- }
783
- }
784
- &:hover {
785
- @media (hover: hover) {
786
- opacity: 100%;
787
- }
788
- }
789
- &:active {
790
- --tw-scale-x: 95%;
791
- --tw-scale-y: 95%;
792
- --tw-scale-z: 95%;
793
- scale: var(--tw-scale-x) var(--tw-scale-y);
794
- }
152
+ @apply absolute top-1/2 -translate-y-1/2 bg-black/70 text-white border-0 rounded-full w-16 h-16 text-2xl cursor-pointer flex items-center justify-center transition-all duration-200 z-10 opacity-80 hover:opacity-100 hover:scale-110 active:scale-95;
795
153
  }
796
154
  .motto-skip-button-back {
797
- left: calc(var(--spacing) * 5);
155
+ @apply left-5;
798
156
  }
799
157
  .motto-skip-button-forward {
800
- right: calc(var(--spacing) * 5);
158
+ @apply right-5;
801
159
  }
802
160
  }
803
161
  .shaka-seek-bar-container {
@@ -1073,119 +431,6 @@ html[dir=rtl] .shaka-overflow-menu .shaka-overflow-button .material-svg-icon:fir
1073
431
  pointer-events: none !important;
1074
432
  display: none !important;
1075
433
  }
1076
- @property --tw-gradient-position { syntax: "*"; inherits: false; }
1077
- @property --tw-gradient-from { syntax: "<color>"; inherits: false; initial-value: #0000; }
1078
- @property --tw-gradient-via { syntax: "<color>"; inherits: false; initial-value: #0000; }
1079
- @property --tw-gradient-to { syntax: "<color>"; inherits: false; initial-value: #0000; }
1080
- @property --tw-gradient-stops { syntax: "*"; inherits: false; }
1081
- @property --tw-gradient-via-stops { syntax: "*"; inherits: false; }
1082
- @property --tw-gradient-from-position { syntax: "<length-percentage>"; inherits: false; initial-value: 0%; }
1083
- @property --tw-gradient-via-position { syntax: "<length-percentage>"; inherits: false; initial-value: 50%; }
1084
- @property --tw-gradient-to-position { syntax: "<length-percentage>"; inherits: false; initial-value: 100%; }
1085
- @property --tw-leading { syntax: "*"; inherits: false; }
1086
- @property --tw-font-weight { syntax: "*"; inherits: false; }
1087
- @property --tw-tracking { syntax: "*"; inherits: false; }
1088
- @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1089
- @property --tw-shadow-color { syntax: "*"; inherits: false; }
1090
- @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1091
- @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1092
- @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
1093
- @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1094
- @property --tw-ring-color { syntax: "*"; inherits: false; }
1095
- @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1096
- @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
1097
- @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1098
- @property --tw-ring-inset { syntax: "*"; inherits: false; }
1099
- @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
1100
- @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
1101
- @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1102
- @property --tw-blur { syntax: "*"; inherits: false; }
1103
- @property --tw-brightness { syntax: "*"; inherits: false; }
1104
- @property --tw-contrast { syntax: "*"; inherits: false; }
1105
- @property --tw-grayscale { syntax: "*"; inherits: false; }
1106
- @property --tw-hue-rotate { syntax: "*"; inherits: false; }
1107
- @property --tw-invert { syntax: "*"; inherits: false; }
1108
- @property --tw-opacity { syntax: "*"; inherits: false; }
1109
- @property --tw-saturate { syntax: "*"; inherits: false; }
1110
- @property --tw-sepia { syntax: "*"; inherits: false; }
1111
- @property --tw-drop-shadow { syntax: "*"; inherits: false; }
1112
- @property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
1113
- @property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1114
- @property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
1115
- @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1116
- @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1117
- @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
1118
- @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
1119
- @property --tw-duration { syntax: "*"; inherits: false; }
1120
- @property --tw-scale-x { syntax: "*"; inherits: false; initial-value: 1; }
1121
- @property --tw-scale-y { syntax: "*"; inherits: false; initial-value: 1; }
1122
- @property --tw-scale-z { syntax: "*"; inherits: false; initial-value: 1; }
1123
- @keyframes spin {
1124
- to {
1125
- transform: rotate(360deg);
1126
- }
1127
- }
1128
- @keyframes pulse {
1129
- 50% {
1130
- opacity: 0.5;
1131
- }
1132
- }
1133
- @layer properties {
1134
- @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1135
- *,
1136
- ::before,
1137
- ::after,
1138
- ::backdrop {
1139
- --tw-gradient-position: initial;
1140
- --tw-gradient-from: #0000;
1141
- --tw-gradient-via: #0000;
1142
- --tw-gradient-to: #0000;
1143
- --tw-gradient-stops: initial;
1144
- --tw-gradient-via-stops: initial;
1145
- --tw-gradient-from-position: 0%;
1146
- --tw-gradient-via-position: 50%;
1147
- --tw-gradient-to-position: 100%;
1148
- --tw-leading: initial;
1149
- --tw-font-weight: initial;
1150
- --tw-tracking: initial;
1151
- --tw-shadow: 0 0 #0000;
1152
- --tw-shadow-color: initial;
1153
- --tw-shadow-alpha: 100%;
1154
- --tw-inset-shadow: 0 0 #0000;
1155
- --tw-inset-shadow-color: initial;
1156
- --tw-inset-shadow-alpha: 100%;
1157
- --tw-ring-color: initial;
1158
- --tw-ring-shadow: 0 0 #0000;
1159
- --tw-inset-ring-color: initial;
1160
- --tw-inset-ring-shadow: 0 0 #0000;
1161
- --tw-ring-inset: initial;
1162
- --tw-ring-offset-width: 0px;
1163
- --tw-ring-offset-color: #fff;
1164
- --tw-ring-offset-shadow: 0 0 #0000;
1165
- --tw-blur: initial;
1166
- --tw-brightness: initial;
1167
- --tw-contrast: initial;
1168
- --tw-grayscale: initial;
1169
- --tw-hue-rotate: initial;
1170
- --tw-invert: initial;
1171
- --tw-opacity: initial;
1172
- --tw-saturate: initial;
1173
- --tw-sepia: initial;
1174
- --tw-drop-shadow: initial;
1175
- --tw-drop-shadow-color: initial;
1176
- --tw-drop-shadow-alpha: 100%;
1177
- --tw-drop-shadow-size: initial;
1178
- --tw-translate-x: 0;
1179
- --tw-translate-y: 0;
1180
- --tw-translate-z: 0;
1181
- --tw-border-style: solid;
1182
- --tw-duration: initial;
1183
- --tw-scale-x: 1;
1184
- --tw-scale-y: 1;
1185
- --tw-scale-z: 1;
1186
- }
1187
- }
1188
- }
1189
434
  `);
1190
435
 
1191
436
  // src/Player.tsx
@@ -1245,7 +490,7 @@ var supportsWidevinePersistentLicenses = () => {
1245
490
  var import_mux_data_shakaplayer = __toESM(require("@mux/mux-data-shakaplayer"));
1246
491
 
1247
492
  // package.json
1248
- var version = "1.0.1-rc.74";
493
+ var version = "1.0.1-rc.75";
1249
494
 
1250
495
  // src/utils/licenseCache.ts
1251
496
  var PERSISTENT_LICENSE_PREFIX = "motto_lic_";
@@ -1716,7 +961,11 @@ var useShakaPlayer = ({
1716
961
  return;
1717
962
  }
1718
963
  if (!hasAds && !hasSystem73) {
964
+ console.log("\u{1F4FA} [Shaka] Auto-loading manifest:", manifestUrl);
1719
965
  await player.load(manifestUrl);
966
+ console.log("\u2705 [Shaka] Manifest auto-loaded successfully");
967
+ } else {
968
+ console.log("\u23ED\uFE0F [Shaka] Skipping auto-load (hasAds:", hasAds, ", hasSystem73:", hasSystem73, ")");
1720
969
  }
1721
970
  onPlayerReady?.(player);
1722
971
  return player;
@@ -1735,17 +984,19 @@ var useShakaPlayer = ({
1735
984
  const loadManifest = (0, import_react.useCallback)(async () => {
1736
985
  const player = playerRef.current;
1737
986
  if (!player) {
1738
- console.warn("Cannot load manifest: player not initialized");
987
+ console.warn("\u26A0\uFE0F [Shaka] Cannot load manifest: player not initialized");
1739
988
  return;
1740
989
  }
1741
990
  try {
1742
991
  const manifestUrl = getManifestUrl();
992
+ console.log("\u{1F4FA} [Shaka] Loading manifest:", manifestUrl);
1743
993
  await player.load(manifestUrl);
994
+ console.log("\u2705 [Shaka] Manifest loaded successfully");
1744
995
  } catch (error) {
1745
996
  if (error?.code === 7e3) {
1746
997
  return;
1747
998
  }
1748
- console.error("Error loading manifest:", error);
999
+ console.error("\u274C [Shaka] Error loading manifest:", error);
1749
1000
  onError?.(error);
1750
1001
  throw error;
1751
1002
  }
@@ -2889,1128 +2140,6 @@ var LiveBadge = ({
2889
2140
  );
2890
2141
  };
2891
2142
 
2892
- // src/styles.css
2893
- styleInject(`/*! tailwindcss v4.1.8 | MIT License | https://tailwindcss.com */
2894
- @layer properties;
2895
- @layer theme, base, components, utilities;
2896
- @layer theme {
2897
- :root,
2898
- :host {
2899
- --font-sans:
2900
- ui-sans-serif,
2901
- system-ui,
2902
- sans-serif,
2903
- "Apple Color Emoji",
2904
- "Segoe UI Emoji",
2905
- "Segoe UI Symbol",
2906
- "Noto Color Emoji";
2907
- --font-mono:
2908
- ui-monospace,
2909
- SFMono-Regular,
2910
- Menlo,
2911
- Monaco,
2912
- Consolas,
2913
- "Liberation Mono",
2914
- "Courier New",
2915
- monospace;
2916
- --color-red-600: oklch(57.7% 0.245 27.325);
2917
- --color-black: #000;
2918
- --color-white: #fff;
2919
- --spacing: 0.25rem;
2920
- --text-xs: 0.75rem;
2921
- --text-xs--line-height: calc(1 / 0.75);
2922
- --text-sm: 0.875rem;
2923
- --text-sm--line-height: calc(1.25 / 0.875);
2924
- --text-base: 1rem;
2925
- --text-base--line-height: calc(1.5 / 1);
2926
- --text-lg: 1.125rem;
2927
- --text-lg--line-height: calc(1.75 / 1.125);
2928
- --text-xl: 1.25rem;
2929
- --text-xl--line-height: calc(1.75 / 1.25);
2930
- --text-2xl: 1.5rem;
2931
- --text-2xl--line-height: calc(2 / 1.5);
2932
- --text-5xl: 3rem;
2933
- --text-5xl--line-height: 1;
2934
- --font-weight-medium: 500;
2935
- --font-weight-semibold: 600;
2936
- --font-weight-bold: 700;
2937
- --tracking-wide: 0.025em;
2938
- --tracking-widest: 0.1em;
2939
- --radius-md: 0.375rem;
2940
- --radius-2xl: 1rem;
2941
- --animate-spin: spin 1s linear infinite;
2942
- --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
2943
- --aspect-video: 16 / 9;
2944
- --default-transition-duration: 150ms;
2945
- --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2946
- --default-font-family: var(--font-sans);
2947
- --default-mono-font-family: var(--font-mono);
2948
- }
2949
- }
2950
- @layer base {
2951
- *,
2952
- ::after,
2953
- ::before,
2954
- ::backdrop,
2955
- ::file-selector-button {
2956
- box-sizing: border-box;
2957
- margin: 0;
2958
- padding: 0;
2959
- border: 0 solid;
2960
- }
2961
- html,
2962
- :host {
2963
- line-height: 1.5;
2964
- -webkit-text-size-adjust: 100%;
2965
- tab-size: 4;
2966
- font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
2967
- font-feature-settings: var(--default-font-feature-settings, normal);
2968
- font-variation-settings: var(--default-font-variation-settings, normal);
2969
- -webkit-tap-highlight-color: transparent;
2970
- }
2971
- hr {
2972
- height: 0;
2973
- color: inherit;
2974
- border-top-width: 1px;
2975
- }
2976
- abbr:where([title]) {
2977
- -webkit-text-decoration: underline dotted;
2978
- text-decoration: underline dotted;
2979
- }
2980
- h1,
2981
- h2,
2982
- h3,
2983
- h4,
2984
- h5,
2985
- h6 {
2986
- font-size: inherit;
2987
- font-weight: inherit;
2988
- }
2989
- a {
2990
- color: inherit;
2991
- -webkit-text-decoration: inherit;
2992
- text-decoration: inherit;
2993
- }
2994
- b,
2995
- strong {
2996
- font-weight: bolder;
2997
- }
2998
- code,
2999
- kbd,
3000
- samp,
3001
- pre {
3002
- font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
3003
- font-feature-settings: var(--default-mono-font-feature-settings, normal);
3004
- font-variation-settings: var(--default-mono-font-variation-settings, normal);
3005
- font-size: 1em;
3006
- }
3007
- small {
3008
- font-size: 80%;
3009
- }
3010
- sub,
3011
- sup {
3012
- font-size: 75%;
3013
- line-height: 0;
3014
- position: relative;
3015
- vertical-align: baseline;
3016
- }
3017
- sub {
3018
- bottom: -0.25em;
3019
- }
3020
- sup {
3021
- top: -0.5em;
3022
- }
3023
- table {
3024
- text-indent: 0;
3025
- border-color: inherit;
3026
- border-collapse: collapse;
3027
- }
3028
- :-moz-focusring {
3029
- outline: auto;
3030
- }
3031
- progress {
3032
- vertical-align: baseline;
3033
- }
3034
- summary {
3035
- display: list-item;
3036
- }
3037
- ol,
3038
- ul,
3039
- menu {
3040
- list-style: none;
3041
- }
3042
- img,
3043
- svg,
3044
- video,
3045
- canvas,
3046
- audio,
3047
- iframe,
3048
- embed,
3049
- object {
3050
- display: block;
3051
- vertical-align: middle;
3052
- }
3053
- img,
3054
- video {
3055
- max-width: 100%;
3056
- height: auto;
3057
- }
3058
- button,
3059
- input,
3060
- select,
3061
- optgroup,
3062
- textarea,
3063
- ::file-selector-button {
3064
- font: inherit;
3065
- font-feature-settings: inherit;
3066
- font-variation-settings: inherit;
3067
- letter-spacing: inherit;
3068
- color: inherit;
3069
- border-radius: 0;
3070
- background-color: transparent;
3071
- opacity: 1;
3072
- }
3073
- :where(select:is([multiple], [size])) optgroup {
3074
- font-weight: bolder;
3075
- }
3076
- :where(select:is([multiple], [size])) optgroup option {
3077
- padding-inline-start: 20px;
3078
- }
3079
- ::file-selector-button {
3080
- margin-inline-end: 4px;
3081
- }
3082
- ::placeholder {
3083
- opacity: 1;
3084
- }
3085
- @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
3086
- ::placeholder {
3087
- color: currentcolor;
3088
- @supports (color: color-mix(in lab, red, red)) {
3089
- color: color-mix(in oklab, currentcolor 50%, transparent);
3090
- }
3091
- }
3092
- }
3093
- textarea {
3094
- resize: vertical;
3095
- }
3096
- ::-webkit-search-decoration {
3097
- -webkit-appearance: none;
3098
- }
3099
- ::-webkit-date-and-time-value {
3100
- min-height: 1lh;
3101
- text-align: inherit;
3102
- }
3103
- ::-webkit-datetime-edit {
3104
- display: inline-flex;
3105
- }
3106
- ::-webkit-datetime-edit-fields-wrapper {
3107
- padding: 0;
3108
- }
3109
- ::-webkit-datetime-edit,
3110
- ::-webkit-datetime-edit-year-field,
3111
- ::-webkit-datetime-edit-month-field,
3112
- ::-webkit-datetime-edit-day-field,
3113
- ::-webkit-datetime-edit-hour-field,
3114
- ::-webkit-datetime-edit-minute-field,
3115
- ::-webkit-datetime-edit-second-field,
3116
- ::-webkit-datetime-edit-millisecond-field,
3117
- ::-webkit-datetime-edit-meridiem-field {
3118
- padding-block: 0;
3119
- }
3120
- :-moz-ui-invalid {
3121
- box-shadow: none;
3122
- }
3123
- button,
3124
- input:where([type=button], [type=reset], [type=submit]),
3125
- ::file-selector-button {
3126
- appearance: button;
3127
- }
3128
- ::-webkit-inner-spin-button,
3129
- ::-webkit-outer-spin-button {
3130
- height: auto;
3131
- }
3132
- [hidden]:where(:not([hidden=until-found])) {
3133
- display: none !important;
3134
- }
3135
- }
3136
- @layer utilities {
3137
- .pointer-events-none {
3138
- pointer-events: none;
3139
- }
3140
- .visible {
3141
- visibility: visible;
3142
- }
3143
- .sr-only {
3144
- position: absolute;
3145
- width: 1px;
3146
- height: 1px;
3147
- padding: 0;
3148
- margin: -1px;
3149
- overflow: hidden;
3150
- clip: rect(0, 0, 0, 0);
3151
- white-space: nowrap;
3152
- border-width: 0;
3153
- }
3154
- .absolute {
3155
- position: absolute;
3156
- }
3157
- .fixed {
3158
- position: fixed;
3159
- }
3160
- .relative {
3161
- position: relative;
3162
- }
3163
- .static {
3164
- position: static;
3165
- }
3166
- .inset-0 {
3167
- inset: calc(var(--spacing) * 0);
3168
- }
3169
- .top-4 {
3170
- top: calc(var(--spacing) * 4);
3171
- }
3172
- .right-0 {
3173
- right: calc(var(--spacing) * 0);
3174
- }
3175
- .right-4 {
3176
- right: calc(var(--spacing) * 4);
3177
- }
3178
- .bottom-0 {
3179
- bottom: calc(var(--spacing) * 0);
3180
- }
3181
- .bottom-4 {
3182
- bottom: calc(var(--spacing) * 4);
3183
- }
3184
- .left-0 {
3185
- left: calc(var(--spacing) * 0);
3186
- }
3187
- .left-4 {
3188
- left: calc(var(--spacing) * 4);
3189
- }
3190
- .z-10 {
3191
- z-index: 10;
3192
- }
3193
- .z-20 {
3194
- z-index: 20;
3195
- }
3196
- .z-50 {
3197
- z-index: 50;
3198
- }
3199
- .container {
3200
- width: 100%;
3201
- @media (width >= 40rem) {
3202
- max-width: 40rem;
3203
- }
3204
- @media (width >= 48rem) {
3205
- max-width: 48rem;
3206
- }
3207
- @media (width >= 64rem) {
3208
- max-width: 64rem;
3209
- }
3210
- @media (width >= 80rem) {
3211
- max-width: 80rem;
3212
- }
3213
- @media (width >= 96rem) {
3214
- max-width: 96rem;
3215
- }
3216
- }
3217
- .m-6 {
3218
- margin: calc(var(--spacing) * 6);
3219
- }
3220
- .mt-1 {
3221
- margin-top: calc(var(--spacing) * 1);
3222
- }
3223
- .mt-3 {
3224
- margin-top: calc(var(--spacing) * 3);
3225
- }
3226
- .mb-2 {
3227
- margin-bottom: calc(var(--spacing) * 2);
3228
- }
3229
- .mb-6 {
3230
- margin-bottom: calc(var(--spacing) * 6);
3231
- }
3232
- .flex {
3233
- display: flex;
3234
- }
3235
- .grid {
3236
- display: grid;
3237
- }
3238
- .aspect-video {
3239
- aspect-ratio: var(--aspect-video);
3240
- }
3241
- .h-2 {
3242
- height: calc(var(--spacing) * 2);
3243
- }
3244
- .h-12 {
3245
- height: calc(var(--spacing) * 12);
3246
- }
3247
- .h-24 {
3248
- height: calc(var(--spacing) * 24);
3249
- }
3250
- .h-full {
3251
- height: 100%;
3252
- }
3253
- .w-2 {
3254
- width: calc(var(--spacing) * 2);
3255
- }
3256
- .w-12 {
3257
- width: calc(var(--spacing) * 12);
3258
- }
3259
- .w-24 {
3260
- width: calc(var(--spacing) * 24);
3261
- }
3262
- .w-full {
3263
- width: 100%;
3264
- }
3265
- .grow {
3266
- flex-grow: 1;
3267
- }
3268
- .animate-pulse {
3269
- animation: var(--animate-pulse);
3270
- }
3271
- .animate-spin {
3272
- animation: var(--animate-spin);
3273
- }
3274
- .auto-cols-max {
3275
- grid-auto-columns: max-content;
3276
- }
3277
- .grid-flow-col {
3278
- grid-auto-flow: column;
3279
- }
3280
- .flex-col {
3281
- flex-direction: column;
3282
- }
3283
- .items-center {
3284
- align-items: center;
3285
- }
3286
- .justify-center {
3287
- justify-content: center;
3288
- }
3289
- .justify-stretch {
3290
- justify-content: stretch;
3291
- }
3292
- .gap-1 {
3293
- gap: calc(var(--spacing) * 1);
3294
- }
3295
- .overflow-hidden {
3296
- overflow: hidden;
3297
- }
3298
- .rounded-full {
3299
- border-radius: calc(infinity * 1px);
3300
- }
3301
- .rounded-md {
3302
- border-radius: var(--radius-md);
3303
- }
3304
- .bg-\\[\\#111111\\] {
3305
- background-color: #111111;
3306
- }
3307
- .bg-\\[\\#151515\\] {
3308
- background-color: #151515;
3309
- }
3310
- .bg-black {
3311
- background-color: var(--color-black);
3312
- }
3313
- .bg-red-600 {
3314
- background-color: var(--color-red-600);
3315
- }
3316
- .bg-transparent {
3317
- background-color: transparent;
3318
- }
3319
- .bg-white {
3320
- background-color: var(--color-white);
3321
- }
3322
- .bg-gradient-to-t {
3323
- --tw-gradient-position: to top in oklab;
3324
- background-image: linear-gradient(var(--tw-gradient-stops));
3325
- }
3326
- .from-black\\/70 {
3327
- --tw-gradient-from: color-mix(in srgb, #000 70%, transparent);
3328
- @supports (color: color-mix(in lab, red, red)) {
3329
- --tw-gradient-from: color-mix(in oklab, var(--color-black) 70%, transparent);
3330
- }
3331
- --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
3332
- }
3333
- .to-transparent {
3334
- --tw-gradient-to: transparent;
3335
- --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
3336
- }
3337
- .bg-cover {
3338
- background-size: cover;
3339
- }
3340
- .bg-center {
3341
- background-position: center;
3342
- }
3343
- .bg-no-repeat {
3344
- background-repeat: no-repeat;
3345
- }
3346
- .p-2 {
3347
- padding: calc(var(--spacing) * 2);
3348
- }
3349
- .p-4 {
3350
- padding: calc(var(--spacing) * 4);
3351
- }
3352
- .px-2 {
3353
- padding-inline: calc(var(--spacing) * 2);
3354
- }
3355
- .px-4 {
3356
- padding-inline: calc(var(--spacing) * 4);
3357
- }
3358
- .py-1 {
3359
- padding-block: calc(var(--spacing) * 1);
3360
- }
3361
- .text-center {
3362
- text-align: center;
3363
- }
3364
- .text-left {
3365
- text-align: left;
3366
- }
3367
- .font-mono {
3368
- font-family: var(--font-mono);
3369
- }
3370
- .text-2xl {
3371
- font-size: var(--text-2xl);
3372
- line-height: var(--tw-leading, var(--text-2xl--line-height));
3373
- }
3374
- .text-base {
3375
- font-size: var(--text-base);
3376
- line-height: var(--tw-leading, var(--text-base--line-height));
3377
- }
3378
- .text-lg {
3379
- font-size: var(--text-lg);
3380
- line-height: var(--tw-leading, var(--text-lg--line-height));
3381
- }
3382
- .text-sm {
3383
- font-size: var(--text-sm);
3384
- line-height: var(--tw-leading, var(--text-sm--line-height));
3385
- }
3386
- .text-xl {
3387
- font-size: var(--text-xl);
3388
- line-height: var(--tw-leading, var(--text-xl--line-height));
3389
- }
3390
- .text-xs {
3391
- font-size: var(--text-xs);
3392
- line-height: var(--tw-leading, var(--text-xs--line-height));
3393
- }
3394
- .text-\\[10px\\] {
3395
- font-size: 10px;
3396
- }
3397
- .leading-none {
3398
- --tw-leading: 1;
3399
- line-height: 1;
3400
- }
3401
- .font-bold {
3402
- --tw-font-weight: var(--font-weight-bold);
3403
- font-weight: var(--font-weight-bold);
3404
- }
3405
- .font-medium {
3406
- --tw-font-weight: var(--font-weight-medium);
3407
- font-weight: var(--font-weight-medium);
3408
- }
3409
- .font-semibold {
3410
- --tw-font-weight: var(--font-weight-semibold);
3411
- font-weight: var(--font-weight-semibold);
3412
- }
3413
- .tracking-wide {
3414
- --tw-tracking: var(--tracking-wide);
3415
- letter-spacing: var(--tracking-wide);
3416
- }
3417
- .tracking-widest {
3418
- --tw-tracking: var(--tracking-widest);
3419
- letter-spacing: var(--tracking-widest);
3420
- }
3421
- .text-white {
3422
- color: var(--color-white);
3423
- }
3424
- .uppercase {
3425
- text-transform: uppercase;
3426
- }
3427
- .shadow-lg {
3428
- --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
3429
- box-shadow:
3430
- var(--tw-inset-shadow),
3431
- var(--tw-inset-ring-shadow),
3432
- var(--tw-ring-offset-shadow),
3433
- var(--tw-ring-shadow),
3434
- var(--tw-shadow);
3435
- }
3436
- .filter {
3437
- filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
3438
- }
3439
- .md\\:gap-5 {
3440
- @media (width >= 48rem) {
3441
- gap: calc(var(--spacing) * 5);
3442
- }
3443
- }
3444
- .md\\:rounded-2xl {
3445
- @media (width >= 48rem) {
3446
- border-radius: var(--radius-2xl);
3447
- }
3448
- }
3449
- .md\\:rounded-2xl\\! {
3450
- @media (width >= 48rem) {
3451
- border-radius: var(--radius-2xl) !important;
3452
- }
3453
- }
3454
- .md\\:text-5xl {
3455
- @media (width >= 48rem) {
3456
- font-size: var(--text-5xl);
3457
- line-height: var(--tw-leading, var(--text-5xl--line-height));
3458
- }
3459
- }
3460
- .md\\:text-base {
3461
- @media (width >= 48rem) {
3462
- font-size: var(--text-base);
3463
- line-height: var(--tw-leading, var(--text-base--line-height));
3464
- }
3465
- }
3466
- .md\\:text-sm {
3467
- @media (width >= 48rem) {
3468
- font-size: var(--text-sm);
3469
- line-height: var(--tw-leading, var(--text-sm--line-height));
3470
- }
3471
- }
3472
- .md\\:text-xl {
3473
- @media (width >= 48rem) {
3474
- font-size: var(--text-xl);
3475
- line-height: var(--tw-leading, var(--text-xl--line-height));
3476
- }
3477
- }
3478
- .md\\:text-xs {
3479
- @media (width >= 48rem) {
3480
- font-size: var(--text-xs);
3481
- line-height: var(--tw-leading, var(--text-xs--line-height));
3482
- }
3483
- }
3484
- }
3485
- @layer components {
3486
- video::-webkit-media-controls {
3487
- display: none !important;
3488
- }
3489
- video::-webkit-media-controls-panel {
3490
- display: none !important;
3491
- }
3492
- video::-webkit-media-controls-play-button {
3493
- display: none !important;
3494
- }
3495
- video::-webkit-media-controls-timeline {
3496
- display: none !important;
3497
- }
3498
- video::-webkit-media-controls-current-time-display {
3499
- display: none !important;
3500
- }
3501
- video::-webkit-media-controls-time-remaining-display {
3502
- display: none !important;
3503
- }
3504
- video::-webkit-media-controls-mute-button {
3505
- display: none !important;
3506
- }
3507
- video::-webkit-media-controls-volume-slider {
3508
- display: none !important;
3509
- }
3510
- video::-webkit-media-controls-fullscreen-button {
3511
- display: none !important;
3512
- }
3513
- video::-webkit-media-controls-overlay-play-button {
3514
- display: none !important;
3515
- }
3516
- video::-moz-media-controls {
3517
- display: none !important;
3518
- }
3519
- video {
3520
- outline: none !important;
3521
- }
3522
- video[controls] {
3523
- -webkit-appearance: none !important;
3524
- appearance: none !important;
3525
- }
3526
- video::-webkit-media-controls-enclosure {
3527
- display: none !important;
3528
- }
3529
- video::-webkit-media-controls-start-playback-button {
3530
- display: none !important;
3531
- }
3532
- video[controls]::-webkit-media-controls,
3533
- video[controls]::-webkit-media-controls-panel,
3534
- video[controls]::-webkit-media-controls-play-button,
3535
- video[controls]::-webkit-media-controls-timeline,
3536
- video[controls]::-webkit-media-controls-current-time-display,
3537
- video[controls]::-webkit-media-controls-time-remaining-display,
3538
- video[controls]::-webkit-media-controls-mute-button,
3539
- video[controls]::-webkit-media-controls-volume-slider,
3540
- video[controls]::-webkit-media-controls-fullscreen-button,
3541
- video[controls]::-webkit-media-controls-overlay-play-button,
3542
- video[controls]::-webkit-media-controls-enclosure,
3543
- video[controls]::-webkit-media-controls-start-playback-button {
3544
- display: none !important;
3545
- visibility: hidden !important;
3546
- opacity: 0 !important;
3547
- pointer-events: none !important;
3548
- }
3549
- video[controls]::-moz-media-controls {
3550
- display: none !important;
3551
- visibility: hidden !important;
3552
- opacity: 0 !important;
3553
- }
3554
- .motto-video-container {
3555
- position: relative;
3556
- width: 100%;
3557
- min-height: 300px;
3558
- }
3559
- @supports (aspect-ratio: 16/9) {
3560
- .motto-video-container {
3561
- min-height: auto;
3562
- }
3563
- }
3564
- .motto-video-responsive {
3565
- position: absolute;
3566
- top: calc(var(--spacing) * 0);
3567
- left: calc(var(--spacing) * 0);
3568
- height: 100%;
3569
- width: 100%;
3570
- }
3571
- .motto-skip-button {
3572
- position: absolute;
3573
- top: calc(1/2 * 100%);
3574
- z-index: 10;
3575
- display: flex;
3576
- height: calc(var(--spacing) * 16);
3577
- width: calc(var(--spacing) * 16);
3578
- --tw-translate-y: calc(calc(1/2 * 100%) * -1);
3579
- translate: var(--tw-translate-x) var(--tw-translate-y);
3580
- cursor: pointer;
3581
- align-items: center;
3582
- justify-content: center;
3583
- border-radius: calc(infinity * 1px);
3584
- border-style: var(--tw-border-style);
3585
- border-width: 0px;
3586
- background-color: color-mix(in srgb, #000 70%, transparent);
3587
- @supports (color: color-mix(in lab, red, red)) {
3588
- background-color: color-mix(in oklab, var(--color-black) 70%, transparent);
3589
- }
3590
- font-size: var(--text-2xl);
3591
- line-height: var(--tw-leading, var(--text-2xl--line-height));
3592
- color: var(--color-white);
3593
- opacity: 80%;
3594
- transition-property: all;
3595
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
3596
- transition-duration: var(--tw-duration, var(--default-transition-duration));
3597
- --tw-duration: 200ms;
3598
- transition-duration: 200ms;
3599
- &:hover {
3600
- @media (hover: hover) {
3601
- --tw-scale-x: 110%;
3602
- --tw-scale-y: 110%;
3603
- --tw-scale-z: 110%;
3604
- scale: var(--tw-scale-x) var(--tw-scale-y);
3605
- }
3606
- }
3607
- &:hover {
3608
- @media (hover: hover) {
3609
- opacity: 100%;
3610
- }
3611
- }
3612
- &:active {
3613
- --tw-scale-x: 95%;
3614
- --tw-scale-y: 95%;
3615
- --tw-scale-z: 95%;
3616
- scale: var(--tw-scale-x) var(--tw-scale-y);
3617
- }
3618
- }
3619
- .motto-skip-button-back {
3620
- left: calc(var(--spacing) * 5);
3621
- }
3622
- .motto-skip-button-forward {
3623
- right: calc(var(--spacing) * 5);
3624
- }
3625
- }
3626
- .shaka-seek-bar-container {
3627
- height: 6px !important;
3628
- width: 100% !important;
3629
- margin: 8px 0 !important;
3630
- border-radius: 4px !important;
3631
- position: relative !important;
3632
- border-top: none !important;
3633
- border-bottom: none !important;
3634
- box-shadow: none !important;
3635
- }
3636
- .shaka-seek-bar {
3637
- height: 6px !important;
3638
- width: 100% !important;
3639
- -webkit-appearance: none !important;
3640
- appearance: none !important;
3641
- background: transparent !important;
3642
- cursor: pointer !important;
3643
- border: none !important;
3644
- outline: none !important;
3645
- position: absolute !important;
3646
- top: 0 !important;
3647
- left: 0 !important;
3648
- border-radius: 4px !important;
3649
- }
3650
- .shaka-seek-bar::-webkit-slider-runnable-track {
3651
- height: 6px !important;
3652
- background: transparent !important;
3653
- border-radius: 4px !important;
3654
- border: none !important;
3655
- }
3656
- .shaka-seek-bar::-moz-range-track {
3657
- height: 6px !important;
3658
- background: transparent !important;
3659
- border-radius: 4px !important;
3660
- border: none !important;
3661
- }
3662
- .shaka-seek-bar::-webkit-slider-thumb {
3663
- -webkit-appearance: none !important;
3664
- appearance: none !important;
3665
- width: 16px !important;
3666
- height: 16px !important;
3667
- border-radius: 50% !important;
3668
- background: #ffffff !important;
3669
- cursor: pointer !important;
3670
- border: 2px solid #ffffff !important;
3671
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
3672
- margin-top: -4px !important;
3673
- }
3674
- .shaka-seek-bar::-moz-range-thumb {
3675
- width: 16px !important;
3676
- height: 16px !important;
3677
- border-radius: 50% !important;
3678
- background: #ffffff !important;
3679
- cursor: pointer !important;
3680
- border: 2px solid #ffffff !important;
3681
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
3682
- margin-top: -4px !important;
3683
- }
3684
- .motto-skip-back-button,
3685
- .motto-skip-forward-button,
3686
- .motto-native-skip-button {
3687
- background: transparent !important;
3688
- border: none !important;
3689
- padding: 4px !important;
3690
- margin: 0px !important;
3691
- cursor: pointer !important;
3692
- color: #ffffff !important;
3693
- transition: all 0.2s ease !important;
3694
- min-width: 32px !important;
3695
- height: 32px !important;
3696
- display: flex !important;
3697
- align-items: center !important;
3698
- justify-content: center !important;
3699
- border-radius: 4px !important;
3700
- width: 25px;
3701
- }
3702
- .motto-skip-back-button:hover,
3703
- .motto-skip-forward-button:hover,
3704
- .motto-native-skip-button:hover {
3705
- opacity: 0.8 !important;
3706
- background: transparent !important;
3707
- transform: scale(1.05) !important;
3708
- }
3709
- .motto-skip-back-button:active,
3710
- .motto-skip-forward-button:active,
3711
- .motto-native-skip-button:active {
3712
- transform: scale(0.95) !important;
3713
- }
3714
- .motto-skip-back-button svg,
3715
- .motto-skip-forward-button svg,
3716
- .motto-native-skip-button svg {
3717
- width: 24px !important;
3718
- height: 24px !important;
3719
- }
3720
- .shaka-spinner-svg {
3721
- color: white !important;
3722
- fill: white !important;
3723
- }
3724
- .shaka-spinner-path {
3725
- stroke: white !important;
3726
- fill: none !important;
3727
- }
3728
- .shaka-spinner-container {
3729
- color: white !important;
3730
- }
3731
- .shaka-buffering-spinner {
3732
- color: white !important;
3733
- fill: white !important;
3734
- }
3735
- .shaka-buffering-spinner svg {
3736
- color: white !important;
3737
- fill: white !important;
3738
- }
3739
- .shaka-buffering-spinner path {
3740
- stroke: white !important;
3741
- fill: none !important;
3742
- }
3743
- [data-shaka-player-container] .shaka-spinner,
3744
- [data-shaka-player-container] .spinner {
3745
- color: white !important;
3746
- border-color: white !important;
3747
- }
3748
- .material-icons.shaka-spinner {
3749
- color: white !important;
3750
- }
3751
- .shaka-controls-container .shaka-spinner,
3752
- .shaka-video-container .shaka-spinner {
3753
- color: white !important;
3754
- fill: white !important;
3755
- }
3756
- .shaka-controls-container .shaka-spinner svg,
3757
- .shaka-video-container .shaka-spinner svg {
3758
- color: white !important;
3759
- fill: white !important;
3760
- }
3761
- .shaka-controls-container .shaka-spinner path,
3762
- .shaka-video-container .shaka-spinner path {
3763
- stroke: white !important;
3764
- }
3765
- .motto-video-loading-overlay {
3766
- position: absolute;
3767
- top: 0;
3768
- left: 0;
3769
- width: 100%;
3770
- height: 100%;
3771
- background:
3772
- linear-gradient(
3773
- 135deg,
3774
- #1a1a1a 0%,
3775
- #2d2d2d 100%);
3776
- display: flex;
3777
- flex-direction: column;
3778
- align-items: center;
3779
- justify-content: center;
3780
- z-index: 10;
3781
- transition: opacity 0.3s ease;
3782
- }
3783
- .motto-video-loading-overlay.hidden {
3784
- opacity: 0;
3785
- pointer-events: none;
3786
- }
3787
- .motto-video-loading-content {
3788
- text-align: center;
3789
- color: white;
3790
- }
3791
- .motto-video-loading-icon {
3792
- width: 64px;
3793
- height: 64px;
3794
- margin-bottom: 16px;
3795
- opacity: 0.7;
3796
- }
3797
- .motto-video-loading-text {
3798
- font-size: 16px;
3799
- font-weight: 500;
3800
- margin-bottom: 8px;
3801
- }
3802
- .motto-video-loading-subtext {
3803
- font-size: 14px;
3804
- opacity: 0.7;
3805
- }
3806
- @keyframes pulse-live {
3807
- 0% {
3808
- opacity: 1;
3809
- transform: scale(1);
3810
- }
3811
- 50% {
3812
- opacity: 0.7;
3813
- transform: scale(1.1);
3814
- }
3815
- 100% {
3816
- opacity: 1;
3817
- transform: scale(1);
3818
- }
3819
- }
3820
- .shaka-play-button {
3821
- background: rgba(255, 255, 255, 0.1) !important;
3822
- border: none !important;
3823
- color: white !important;
3824
- padding: 10px !important;
3825
- border-radius: 100% !important;
3826
- transition: all 0.2s ease !important;
3827
- display: flex !important;
3828
- align-items: center !important;
3829
- justify-content: center !important;
3830
- min-width: 55px !important;
3831
- height: 55px !important;
3832
- }
3833
- .shaka-play-button-container {
3834
- background: transparent;
3835
- transition: all 0.2s ease !important;
3836
- }
3837
- .motto-video-container:not(.no-cursor) .shaka-play-button-container {
3838
- background: rgba(0, 0, 0, 0.3);
3839
- transition: all 0.s ease !important;
3840
- }
3841
- .shaka-play-button:hover {
3842
- background: rgba(255, 255, 255, 0.2) !important;
3843
- transform: scale(1.05) !important;
3844
- }
3845
- .shaka-play-button:active {
3846
- transform: scale(0.95) !important;
3847
- }
3848
- .shaka-play-button > * {
3849
- display: none !important;
3850
- }
3851
- .shaka-play-button::after {
3852
- content: "" !important;
3853
- width: 35px !important;
3854
- height: 35px !important;
3855
- background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path fill-rule="evenodd" d="M4.5 5.653c0-1.427 1.529-2.33 2.779-1.643l11.54 6.347c1.295.712 1.295 2.573 0 3.286L7.28 19.99c-1.25.687-2.779-.217-2.779-1.643V5.653Z" clip-rule="evenodd" /></svg>') !important;
3856
- background-repeat: no-repeat !important;
3857
- background-size: contain !important;
3858
- background-position: center !important;
3859
- display: block !important;
3860
- }
3861
- .shaka-play-button[aria-label*=Play]::after {
3862
- background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path fill-rule="evenodd" d="M4.5 5.653c0-1.427 1.529-2.33 2.779-1.643l11.54 6.347c1.295.712 1.295 2.573 0 3.286L7.28 19.99c-1.25.687-2.779-.217-2.779-1.643V5.653Z" clip-rule="evenodd" /></svg>') !important;
3863
- }
3864
- .shaka-play-button[aria-label*=Pause]::after {
3865
- background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path fill-rule="evenodd" d="M6.75 5.25a.75.75 0 0 1 .75-.75H9a.75.75 0 0 1 .75.75v13.5a.75.75 0 0 1-.75.75H7.5a.75.75 0 0 1-.75-.75V5.25Zm7.5 0A.75.75 0 0 1 15 4.5h1.5a.75.75 0 0 1 .75.75v13.5a.75.75 0 0 1-.75.75H15a.75.75 0 0 1-.75-.75V5.25Z" clip-rule="evenodd" /></svg>') !important;
3866
- }
3867
- .motto-video-container {
3868
- background: #111111;
3869
- }
3870
- .motto-video-container video {
3871
- width: 100% !important;
3872
- height: 100% !important;
3873
- margin-left: auto !important;
3874
- margin-right: auto !important;
3875
- }
3876
- html[dir=rtl] .shaka-controls-container,
3877
- html[dir=rtl] .shaka-bottom-controls,
3878
- html[dir=rtl] .shaka-controls-button-panel {
3879
- direction: ltr !important;
3880
- }
3881
- html[dir=rtl] .shaka-overflow-menu,
3882
- html[dir=rtl] .shaka-settings-menu {
3883
- direction: rtl !important;
3884
- text-align: right !important;
3885
- }
3886
- html[dir=rtl] .shaka-overflow-menu .shaka-overflow-button .material-svg-icon:not(:first-child) {
3887
- margin-right: 12px !important;
3888
- margin-left: 0 !important;
3889
- }
3890
- html[dir=rtl] .shaka-overflow-menu .shaka-overflow-button .material-svg-icon:first-child {
3891
- margin-right: 0 !important;
3892
- margin-left: 12px !important;
3893
- }
3894
- .shaka-hidden-fast-forward-container,
3895
- .shaka-hidden-rewind-container {
3896
- pointer-events: none !important;
3897
- display: none !important;
3898
- }
3899
- @property --tw-gradient-position { syntax: "*"; inherits: false; }
3900
- @property --tw-gradient-from { syntax: "<color>"; inherits: false; initial-value: #0000; }
3901
- @property --tw-gradient-via { syntax: "<color>"; inherits: false; initial-value: #0000; }
3902
- @property --tw-gradient-to { syntax: "<color>"; inherits: false; initial-value: #0000; }
3903
- @property --tw-gradient-stops { syntax: "*"; inherits: false; }
3904
- @property --tw-gradient-via-stops { syntax: "*"; inherits: false; }
3905
- @property --tw-gradient-from-position { syntax: "<length-percentage>"; inherits: false; initial-value: 0%; }
3906
- @property --tw-gradient-via-position { syntax: "<length-percentage>"; inherits: false; initial-value: 50%; }
3907
- @property --tw-gradient-to-position { syntax: "<length-percentage>"; inherits: false; initial-value: 100%; }
3908
- @property --tw-leading { syntax: "*"; inherits: false; }
3909
- @property --tw-font-weight { syntax: "*"; inherits: false; }
3910
- @property --tw-tracking { syntax: "*"; inherits: false; }
3911
- @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
3912
- @property --tw-shadow-color { syntax: "*"; inherits: false; }
3913
- @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
3914
- @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
3915
- @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
3916
- @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
3917
- @property --tw-ring-color { syntax: "*"; inherits: false; }
3918
- @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
3919
- @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
3920
- @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
3921
- @property --tw-ring-inset { syntax: "*"; inherits: false; }
3922
- @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
3923
- @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
3924
- @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
3925
- @property --tw-blur { syntax: "*"; inherits: false; }
3926
- @property --tw-brightness { syntax: "*"; inherits: false; }
3927
- @property --tw-contrast { syntax: "*"; inherits: false; }
3928
- @property --tw-grayscale { syntax: "*"; inherits: false; }
3929
- @property --tw-hue-rotate { syntax: "*"; inherits: false; }
3930
- @property --tw-invert { syntax: "*"; inherits: false; }
3931
- @property --tw-opacity { syntax: "*"; inherits: false; }
3932
- @property --tw-saturate { syntax: "*"; inherits: false; }
3933
- @property --tw-sepia { syntax: "*"; inherits: false; }
3934
- @property --tw-drop-shadow { syntax: "*"; inherits: false; }
3935
- @property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
3936
- @property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
3937
- @property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
3938
- @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
3939
- @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
3940
- @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
3941
- @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
3942
- @property --tw-duration { syntax: "*"; inherits: false; }
3943
- @property --tw-scale-x { syntax: "*"; inherits: false; initial-value: 1; }
3944
- @property --tw-scale-y { syntax: "*"; inherits: false; initial-value: 1; }
3945
- @property --tw-scale-z { syntax: "*"; inherits: false; initial-value: 1; }
3946
- @keyframes spin {
3947
- to {
3948
- transform: rotate(360deg);
3949
- }
3950
- }
3951
- @keyframes pulse {
3952
- 50% {
3953
- opacity: 0.5;
3954
- }
3955
- }
3956
- @layer properties {
3957
- @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
3958
- *,
3959
- ::before,
3960
- ::after,
3961
- ::backdrop {
3962
- --tw-gradient-position: initial;
3963
- --tw-gradient-from: #0000;
3964
- --tw-gradient-via: #0000;
3965
- --tw-gradient-to: #0000;
3966
- --tw-gradient-stops: initial;
3967
- --tw-gradient-via-stops: initial;
3968
- --tw-gradient-from-position: 0%;
3969
- --tw-gradient-via-position: 50%;
3970
- --tw-gradient-to-position: 100%;
3971
- --tw-leading: initial;
3972
- --tw-font-weight: initial;
3973
- --tw-tracking: initial;
3974
- --tw-shadow: 0 0 #0000;
3975
- --tw-shadow-color: initial;
3976
- --tw-shadow-alpha: 100%;
3977
- --tw-inset-shadow: 0 0 #0000;
3978
- --tw-inset-shadow-color: initial;
3979
- --tw-inset-shadow-alpha: 100%;
3980
- --tw-ring-color: initial;
3981
- --tw-ring-shadow: 0 0 #0000;
3982
- --tw-inset-ring-color: initial;
3983
- --tw-inset-ring-shadow: 0 0 #0000;
3984
- --tw-ring-inset: initial;
3985
- --tw-ring-offset-width: 0px;
3986
- --tw-ring-offset-color: #fff;
3987
- --tw-ring-offset-shadow: 0 0 #0000;
3988
- --tw-blur: initial;
3989
- --tw-brightness: initial;
3990
- --tw-contrast: initial;
3991
- --tw-grayscale: initial;
3992
- --tw-hue-rotate: initial;
3993
- --tw-invert: initial;
3994
- --tw-opacity: initial;
3995
- --tw-saturate: initial;
3996
- --tw-sepia: initial;
3997
- --tw-drop-shadow: initial;
3998
- --tw-drop-shadow-color: initial;
3999
- --tw-drop-shadow-alpha: 100%;
4000
- --tw-drop-shadow-size: initial;
4001
- --tw-translate-x: 0;
4002
- --tw-translate-y: 0;
4003
- --tw-translate-z: 0;
4004
- --tw-border-style: solid;
4005
- --tw-duration: initial;
4006
- --tw-scale-x: 1;
4007
- --tw-scale-y: 1;
4008
- --tw-scale-z: 1;
4009
- }
4010
- }
4011
- }
4012
- `);
4013
-
4014
2143
  // src/Player.tsx
4015
2144
  var import_tailwind_merge2 = require("tailwind-merge");
4016
2145
 
@@ -4208,6 +2337,7 @@ var Player = (0, import_react13.forwardRef)(
4208
2337
  if (!system73Config?.apiKey || !window.S73ShakaPlayerWrapper) {
4209
2338
  return null;
4210
2339
  }
2340
+ console.log("Initializing System73 SDK...");
4211
2341
  try {
4212
2342
  const s73Config = {
4213
2343
  apiKey: system73Config.apiKey,
@@ -4216,6 +2346,7 @@ var Player = (0, import_react13.forwardRef)(
4216
2346
  };
4217
2347
  const wrapper = window.S73ShakaPlayerWrapper(s73Config, { shaka: import_shaka_player4.default });
4218
2348
  wrapper.wrapPlayerConfig(playerConfig);
2349
+ console.log("System73 SDK initialized with config:", s73Config);
4219
2350
  return wrapper;
4220
2351
  } catch (error) {
4221
2352
  console.error("Error initializing System73 SDK:", error);
@@ -4297,31 +2428,48 @@ var Player = (0, import_react13.forwardRef)(
4297
2428
  if (!video || !isScriptsLoaded) return;
4298
2429
  const initialize = async () => {
4299
2430
  try {
2431
+ console.log("\u{1F680} [Player] Starting initialization...");
4300
2432
  setIsInitialLoading(true);
4301
2433
  let system73Wrapper = null;
4302
2434
  if (system73Config?.apiKey && window.S73ShakaPlayerWrapper) {
2435
+ console.log("\u{1F4E6} [System73] Step 1: Initializing System73 wrapper with config");
4303
2436
  const playerConfig = { ...shakaConfig };
4304
2437
  system73Wrapper = initializeSystem73(playerConfig);
4305
2438
  if (system73Wrapper) {
4306
2439
  shakaConfig = playerConfig;
2440
+ console.log("\u2705 [System73] Step 1 complete: Wrapper created and config modified");
4307
2441
  }
4308
2442
  }
2443
+ console.log("\u{1F3AC} [Shaka] Step 2: Initializing Shaka Player (auto-load:", !system73Config?.apiKey && !imaConfig?.adTagUrl, ")");
4309
2444
  await initializePlayer(video);
2445
+ console.log("\u2705 [Shaka] Step 2 complete: Player initialized");
4310
2446
  if (system73Wrapper && playerRef.current) {
2447
+ console.log("\u{1F517} [System73] Step 3: Wrapping Shaka player with System73");
4311
2448
  system73Wrapper.wrapPlayer(playerRef.current);
2449
+ console.log("\u2705 [System73] Step 3 complete: Player wrapped");
4312
2450
  if (!imaConfig?.adTagUrl) {
2451
+ console.log("\u{1F4FA} [System73] Step 4: Loading manifest");
4313
2452
  await loadManifest();
2453
+ console.log("\u2705 [System73] Step 4 complete: Manifest loaded");
2454
+ } else {
2455
+ console.log("\u23ED\uFE0F [System73] Skipping manifest load - ads will handle it");
4314
2456
  }
4315
2457
  }
2458
+ console.log("\u{1F4CB} [Player] Setting up event listeners and quality tracking");
4316
2459
  setupEventListeners();
4317
2460
  const cleanupQuality = setupQualityTracking();
4318
2461
  configureQuality();
2462
+ console.log("\u{1F3A8} [UI] Initializing Shaka UI");
4319
2463
  await initializeUI();
2464
+ console.log("\u2705 [UI] UI initialized");
4320
2465
  if (imaConfig?.adTagUrl && window.google?.ima) {
2466
+ console.log("\u{1F4E2} [Ads] Initializing ads (will load manifest after VAST fetch)");
4321
2467
  await initializeAds();
2468
+ console.log("\u2705 [Ads] Ads initialized and manifest loaded");
4322
2469
  }
2470
+ console.log("\u2728 [Player] Initialization complete!");
4323
2471
  } catch (error) {
4324
- console.error("Error during player initialization:", error);
2472
+ console.error("\u274C [Player] Error during initialization:", error);
4325
2473
  handleMuxError(error);
4326
2474
  }
4327
2475
  };