-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintelligence.html
More file actions
1095 lines (1047 loc) · 38.1 KB
/
intelligence.html
File metadata and controls
1095 lines (1047 loc) · 38.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Awards Intelligence | Oscars</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg-primary: #0a0a0a;
--bg-secondary: #0f0f0f;
--bg-card: #141414;
--bg-hover: #1a1a1a;
--border: rgba(255, 255, 255, 0.06);
--border-accent: rgba(212, 175, 55, 0.2);
--text-primary: #ffffff;
--text-secondary: rgba(255, 255, 255, 0.6);
--text-muted: rgba(255, 255, 255, 0.35);
--gold: #d4af37;
--gold-dim: rgba(212, 175, 55, 0.15);
--green: #22c55e;
--red: #ef4444;
--blue: #3b82f6;
--purple: #a855f7;
}
html { font-size: 14px; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
min-height: 100vh;
overflow-x: hidden;
}
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--border-accent); border-radius: 3px; }
/* Navigation */
.nav {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 60px;
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 2rem;
z-index: 1000;
}
.nav-left { display: flex; align-items: center; gap: 2rem; }
.nav-logo {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
color: #fff;
}
.nav-logo-icon {
width: 28px;
height: 28px;
background: linear-gradient(135deg, var(--gold) 0%, #8b7355 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
}
.nav-logo-text {
font-family: 'JetBrains Mono', monospace;
font-size: 0.8rem;
font-weight: 500;
letter-spacing: 0.1em;
color: var(--text-secondary);
}
.nav-section-title {
display: flex;
align-items: center;
gap: 0.75rem;
padding-left: 2rem;
border-left: 1px solid var(--border);
}
.nav-section-title span {
font-size: 0.65rem;
font-weight: 500;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--gold);
}
.nav-live {
display: flex;
align-items: center;
gap: 0.5rem;
font-family: 'JetBrains Mono', monospace;
font-size: 0.7rem;
color: var(--text-muted);
}
.live-dot {
width: 6px;
height: 6px;
background: var(--green);
border-radius: 50%;
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a {
font-size: 0.7rem;
font-weight: 400;
letter-spacing: 0.05em;
color: var(--text-muted);
text-decoration: none;
text-transform: uppercase;
transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
/* Main Layout */
.dashboard {
display: grid;
grid-template-columns: 280px 1fr;
min-height: 100vh;
padding-top: 60px;
}
/* Sidebar */
.sidebar {
background: var(--bg-secondary);
border-right: 1px solid var(--border);
padding: 1.5rem 0;
position: sticky;
top: 60px;
height: calc(100vh - 60px);
overflow-y: auto;
}
.sidebar-section { padding: 0 1rem; margin-bottom: 1.5rem; }
.sidebar-label {
font-size: 0.6rem;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--text-muted);
padding: 0 0.75rem;
margin-bottom: 0.75rem;
}
.sidebar-nav { list-style: none; }
.sidebar-nav li a {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 0.75rem;
font-size: 0.75rem;
color: var(--text-secondary);
text-decoration: none;
border-radius: 6px;
transition: all 0.2s ease;
border-left: 2px solid transparent;
}
.sidebar-nav li a:hover {
background: var(--bg-hover);
color: var(--text-primary);
}
.sidebar-nav li a.active {
background: var(--gold-dim);
color: var(--gold);
border-left-color: var(--gold);
}
.sidebar-nav li a .num {
font-family: 'JetBrains Mono', monospace;
font-size: 0.6rem;
color: var(--text-muted);
margin-left: auto;
}
/* Main Content */
.main { padding: 2rem; overflow-y: auto; }
/* Category Header */
.category-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 2rem;
}
.category-info {}
.category-number {
font-family: 'JetBrains Mono', monospace;
font-size: 0.7rem;
color: var(--gold);
letter-spacing: 0.1em;
margin-bottom: 0.5rem;
}
.category-title {
font-size: 2rem;
font-weight: 300;
letter-spacing: -0.02em;
margin-bottom: 0.25rem;
}
.category-subtitle {
font-size: 0.85rem;
color: var(--text-muted);
}
/* Navigation Buttons */
.category-nav {
display: flex;
gap: 0.75rem;
}
.nav-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.25rem;
font-size: 0.7rem;
font-weight: 500;
letter-spacing: 0.05em;
text-transform: uppercase;
border-radius: 6px;
border: 1px solid var(--border);
background: transparent;
color: var(--text-secondary);
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
}
.nav-btn:hover {
background: var(--bg-hover);
border-color: var(--border-accent);
color: var(--text-primary);
}
.nav-btn.next {
background: var(--gold-dim);
border-color: var(--gold);
color: var(--gold);
}
.nav-btn.next:hover {
background: rgba(212, 175, 55, 0.25);
box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}
/* Stats Row */
.stats-row {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
margin-bottom: 2rem;
}
.stat-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 8px;
padding: 1.25rem;
}
.stat-label {
font-size: 0.6rem;
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 0.5rem;
}
.stat-value {
font-family: 'JetBrains Mono', monospace;
font-size: 1.5rem;
font-weight: 600;
}
.stat-value.gold { color: var(--gold); }
.stat-value.green { color: var(--green); }
.stat-change {
font-family: 'JetBrains Mono', monospace;
font-size: 0.65rem;
color: var(--text-muted);
margin-top: 0.25rem;
}
/* Dashboard Grid */
.dashboard-grid {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 1rem;
}
.card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 8px;
overflow: hidden;
transition: all 0.3s ease;
}
.card:hover { border-color: var(--border-accent); }
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 1.25rem;
border-bottom: 1px solid var(--border);
}
.card-title {
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--text-secondary);
}
.card-badge {
font-family: 'JetBrains Mono', monospace;
font-size: 0.6rem;
padding: 0.25rem 0.5rem;
background: var(--gold-dim);
color: var(--gold);
border-radius: 4px;
}
.card-body { padding: 1.25rem; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }
/* Nominee List */
.nominee-list { list-style: none; }
.nominee-item {
display: grid;
grid-template-columns: 40px 1fr auto;
align-items: center;
gap: 1rem;
padding: 1rem 0;
border-bottom: 1px solid var(--border);
transition: all 0.2s ease;
}
.nominee-item:last-child { border-bottom: none; }
.nominee-item:hover {
background: var(--bg-hover);
margin: 0 -1.25rem;
padding-left: 1.25rem;
padding-right: 1.25rem;
}
.nominee-rank {
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
font-weight: 600;
color: var(--text-muted);
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--border);
border-radius: 50%;
}
.nominee-item.favorite .nominee-rank {
background: var(--gold-dim);
border-color: var(--gold);
color: var(--gold);
}
.nominee-info { display: flex; flex-direction: column; gap: 0.25rem; }
.nominee-name { font-size: 1rem; font-weight: 500; }
.nominee-film { font-size: 0.75rem; color: var(--text-muted); }
.nominee-stats {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 0.25rem;
}
.nominee-score {
font-family: 'JetBrains Mono', monospace;
font-size: 1.25rem;
font-weight: 600;
color: var(--gold);
}
.nominee-prob {
font-size: 0.65rem;
color: var(--text-muted);
}
/* Analysis Cards */
.analysis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.analysis-item {
background: rgba(255,255,255,0.02);
border-radius: 6px;
padding: 1rem;
}
.analysis-label {
font-size: 0.65rem;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 0.5rem;
}
.analysis-value {
font-family: 'JetBrains Mono', monospace;
font-size: 1.25rem;
font-weight: 600;
}
/* Chart Container */
.chart-container { position: relative; height: 200px; }
/* Bottom Navigation */
.bottom-nav {
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid var(--border);
display: flex;
justify-content: space-between;
align-items: center;
}
.bottom-nav-info {
font-size: 0.75rem;
color: var(--text-muted);
}
.bottom-nav-info strong {
color: var(--gold);
font-weight: 500;
}
/* Progress bar */
.category-progress {
position: fixed;
bottom: 0;
left: 280px;
right: 0;
height: 4px;
background: var(--border);
z-index: 100;
}
.category-progress-fill {
height: 100%;
background: linear-gradient(90deg, var(--gold), #ffd700);
transition: width 0.5s ease;
}
/* Fixed Next Button */
.fixed-next-btn {
position: fixed;
bottom: 24px;
right: 24px;
display: inline-flex;
align-items: center;
gap: 0.75rem;
padding: 1rem 2rem;
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
border-radius: 50px;
border: 1px solid var(--gold);
background: rgba(10, 10, 10, 0.9);
color: var(--gold);
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
z-index: 1001;
backdrop-filter: blur(10px);
box-shadow: 0 4px 30px rgba(212, 175, 55, 0.2);
}
.fixed-next-btn:hover {
background: rgba(212, 175, 55, 0.15);
box-shadow: 0 4px 40px rgba(212, 175, 55, 0.4);
transform: translateY(-2px);
}
.fixed-next-btn .arrow {
font-size: 1rem;
transition: transform 0.3s ease;
}
.fixed-next-btn:hover .arrow {
transform: translateX(4px);
}
.fixed-next-btn .category-name {
font-size: 0.65rem;
color: var(--text-muted);
display: block;
margin-top: 2px;
}
/* Responsive */
@media (max-width: 1200px) {
.dashboard { grid-template-columns: 1fr; }
.sidebar { display: none; }
.category-progress { left: 0; }
.col-6, .col-4 { grid-column: span 12; }
.stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
.stats-row { grid-template-columns: 1fr 1fr; }
.nav-links { display: none; }
.analysis-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="nav">
<div class="nav-left">
<a href="index.html" class="nav-logo">
<div class="nav-logo-icon">★</div>
<span class="nav-logo-text">OSCARS</span>
</a>
<div class="nav-section-title">
<span>Awards Intelligence</span>
</div>
</div>
<div class="nav-live">
<span class="live-dot"></span>
<span>LIVE DATA</span>
<span style="margin-left: 0.5rem;">97TH SEASON</span>
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="network.html">Network</a>
<a href="intelligence.html" class="active">Intelligence</a>
</div>
</nav>
<div class="dashboard">
<!-- Sidebar -->
<aside class="sidebar" id="sidebar">
<div class="sidebar-section">
<div class="sidebar-label">All Categories (23)</div>
<ul class="sidebar-nav" id="categoryNav"></ul>
</div>
</aside>
<!-- Main Content -->
<main class="main" id="mainContent">
<!-- Content will be dynamically generated -->
</main>
</div>
<!-- Progress Bar -->
<div class="category-progress">
<div class="category-progress-fill" id="progressFill"></div>
</div>
<!-- Fixed Next Button -->
<a href="#" class="fixed-next-btn" id="fixedNextBtn" onclick="goNext(); return false;" style="display: none;">
<div>
<span id="nextBtnLabel">Next</span>
<span class="category-name" id="nextBtnCategory">Directing</span>
</div>
<span class="arrow">→</span>
</a>
<script>
// All 23 Oscar Categories with nominees
const categories = [
{
id: 1,
name: "Best Picture",
type: "major",
nominees: [
{ name: "Oppenheimer", film: "Universal Pictures", score: 94, prob: "78%" },
{ name: "Poor Things", film: "Searchlight Pictures", score: 89, prob: "12%" },
{ name: "Killers of the Flower Moon", film: "Apple Original Films", score: 85, prob: "5%" },
{ name: "The Holdovers", film: "Focus Features", score: 82, prob: "3%" },
{ name: "American Fiction", film: "Amazon MGM Studios", score: 78, prob: "1%" },
{ name: "Past Lives", film: "A24", score: 76, prob: "<1%" },
{ name: "Barbie", film: "Warner Bros. Pictures", score: 74, prob: "<1%" },
{ name: "Maestro", film: "Netflix", score: 71, prob: "<1%" },
{ name: "Anatomy of a Fall", film: "Neon", score: 68, prob: "<1%" },
{ name: "The Zone of Interest", film: "A24", score: 65, prob: "<1%" }
],
stats: { nominations: 10, firstTime: 4, avgBudget: "$72M", volatility: "High" }
},
{
id: 2,
name: "Directing",
type: "major",
nominees: [
{ name: "Christopher Nolan", film: "Oppenheimer", score: 95, prob: "85%" },
{ name: "Yorgos Lanthimos", film: "Poor Things", score: 88, prob: "8%" },
{ name: "Martin Scorsese", film: "Killers of the Flower Moon", score: 84, prob: "4%" },
{ name: "Jonathan Glazer", film: "The Zone of Interest", score: 78, prob: "2%" },
{ name: "Justine Triet", film: "Anatomy of a Fall", score: 75, prob: "1%" }
],
stats: { nominations: 5, firstTime: 1, avgAge: "54", volatility: "Medium" }
},
{
id: 3,
name: "Actor in a Leading Role",
type: "major",
nominees: [
{ name: "Cillian Murphy", film: "Oppenheimer", score: 93, prob: "72%" },
{ name: "Paul Giamatti", film: "The Holdovers", score: 88, prob: "18%" },
{ name: "Colman Domingo", film: "Rustin", score: 82, prob: "6%" },
{ name: "Bradley Cooper", film: "Maestro", score: 76, prob: "3%" },
{ name: "Jeffrey Wright", film: "American Fiction", score: 74, prob: "1%" }
],
stats: { nominations: 5, firstTime: 2, avgAge: "51", volatility: "Low" }
},
{
id: 4,
name: "Actress in a Leading Role",
type: "major",
nominees: [
{ name: "Lily Gladstone", film: "Killers of the Flower Moon", score: 91, prob: "58%" },
{ name: "Emma Stone", film: "Poor Things", score: 89, prob: "38%" },
{ name: "Sandra Hüller", film: "Anatomy of a Fall", score: 82, prob: "3%" },
{ name: "Annette Bening", film: "Nyad", score: 75, prob: "<1%" },
{ name: "Carey Mulligan", film: "Maestro", score: 73, prob: "<1%" }
],
stats: { nominations: 5, firstTime: 2, avgAge: "42", volatility: "Medium" }
},
{
id: 5,
name: "Actor in a Supporting Role",
type: "major",
nominees: [
{ name: "Robert Downey Jr.", film: "Oppenheimer", score: 96, prob: "92%" },
{ name: "Ryan Gosling", film: "Barbie", score: 84, prob: "5%" },
{ name: "Mark Ruffalo", film: "Poor Things", score: 78, prob: "2%" },
{ name: "Sterling K. Brown", film: "American Fiction", score: 74, prob: "<1%" },
{ name: "Robert De Niro", film: "Killers of the Flower Moon", score: 72, prob: "<1%" }
],
stats: { nominations: 5, firstTime: 1, avgAge: "55", volatility: "Very Low" }
},
{
id: 6,
name: "Actress in a Supporting Role",
type: "major",
nominees: [
{ name: "Da'Vine Joy Randolph", film: "The Holdovers", score: 95, prob: "88%" },
{ name: "Emily Blunt", film: "Oppenheimer", score: 82, prob: "7%" },
{ name: "Danielle Brooks", film: "The Color Purple", score: 78, prob: "3%" },
{ name: "America Ferrera", film: "Barbie", score: 74, prob: "1%" },
{ name: "Jodie Foster", film: "Nyad", score: 71, prob: "1%" }
],
stats: { nominations: 5, firstTime: 3, avgAge: "44", volatility: "Very Low" }
},
{
id: 7,
name: "Original Screenplay",
type: "writing",
nominees: [
{ name: "Anatomy of a Fall", film: "Justine Triet & Arthur Harari", score: 88, prob: "35%" },
{ name: "The Holdovers", film: "David Hemingson", score: 86, prob: "30%" },
{ name: "Maestro", film: "Bradley Cooper & Josh Singer", score: 82, prob: "15%" },
{ name: "Past Lives", film: "Celine Song", score: 80, prob: "15%" },
{ name: "May December", film: "Samy Burch", score: 75, prob: "5%" }
],
stats: { nominations: 5, firstTime: 3, avgPages: "128", volatility: "High" }
},
{
id: 8,
name: "Adapted Screenplay",
type: "writing",
nominees: [
{ name: "American Fiction", film: "Cord Jefferson", score: 90, prob: "45%" },
{ name: "Oppenheimer", film: "Christopher Nolan", score: 88, prob: "35%" },
{ name: "Poor Things", film: "Tony McNamara", score: 84, prob: "15%" },
{ name: "Killers of the Flower Moon", film: "Eric Roth & Martin Scorsese", score: 78, prob: "4%" },
{ name: "The Zone of Interest", film: "Jonathan Glazer", score: 74, prob: "1%" }
],
stats: { nominations: 5, firstTime: 2, avgPages: "145", volatility: "Medium" }
},
{
id: 9,
name: "Animated Feature Film",
type: "feature",
nominees: [
{ name: "Spider-Man: Across the Spider-Verse", film: "Sony Pictures", score: 94, prob: "75%" },
{ name: "The Boy and the Heron", film: "Studio Ghibli", score: 88, prob: "18%" },
{ name: "Nimona", film: "Netflix", score: 78, prob: "4%" },
{ name: "Robot Dreams", film: "Neon", score: 74, prob: "2%" },
{ name: "Elemental", film: "Pixar", score: 70, prob: "1%" }
],
stats: { nominations: 5, firstTime: 2, avgRuntime: "102 min", volatility: "Low" }
},
{
id: 10,
name: "International Feature Film",
type: "feature",
nominees: [
{ name: "The Zone of Interest", film: "United Kingdom", score: 92, prob: "68%" },
{ name: "Anatomy of a Fall", film: "France", score: 88, prob: "20%" },
{ name: "Society of the Snow", film: "Spain", score: 82, prob: "8%" },
{ name: "The Teachers' Lounge", film: "Germany", score: 76, prob: "3%" },
{ name: "Io Capitano", film: "Italy", score: 72, prob: "1%" }
],
stats: { nominations: 5, firstTime: 4, countries: 5, volatility: "Medium" }
},
{
id: 11,
name: "Documentary Feature Film",
type: "feature",
nominees: [
{ name: "20 Days in Mariupol", film: "PBS", score: 94, prob: "72%" },
{ name: "Bobi Wine: The People's President", film: "National Geographic", score: 84, prob: "12%" },
{ name: "The Eternal Memory", film: "Paramount+", score: 80, prob: "8%" },
{ name: "Four Daughters", film: "Kino Lorber", score: 78, prob: "5%" },
{ name: "To Kill a Tiger", film: "Netflix", score: 74, prob: "3%" }
],
stats: { nominations: 5, firstTime: 5, avgRuntime: "98 min", volatility: "Medium" }
},
{
id: 12,
name: "Cinematography",
type: "craft",
nominees: [
{ name: "Hoyte van Hoytema", film: "Oppenheimer", score: 96, prob: "85%" },
{ name: "Rodrigo Prieto", film: "Killers of the Flower Moon", score: 88, prob: "10%" },
{ name: "Edward Lachman", film: "El Conde", score: 82, prob: "3%" },
{ name: "Matthew Libatique", film: "Maestro", score: 76, prob: "1%" },
{ name: "Robbie Ryan", film: "Poor Things", score: 74, prob: "1%" }
],
stats: { nominations: 5, firstTime: 1, avgNoms: "3.2", volatility: "Very Low" }
},
{
id: 13,
name: "Film Editing",
type: "craft",
nominees: [
{ name: "Jennifer Lame", film: "Oppenheimer", score: 94, prob: "78%" },
{ name: "Thelma Schoonmaker", film: "Killers of the Flower Moon", score: 86, prob: "12%" },
{ name: "Yorgos Mavropsaridis", film: "Poor Things", score: 82, prob: "6%" },
{ name: "William Goldenberg", film: "Air", score: 76, prob: "3%" },
{ name: "Kevin Tent", film: "The Holdovers", score: 72, prob: "1%" }
],
stats: { nominations: 5, firstTime: 1, avgNoms: "2.8", volatility: "Low" }
},
{
id: 14,
name: "Production Design",
type: "craft",
nominees: [
{ name: "Shona Heath & James Price", film: "Poor Things", score: 95, prob: "82%" },
{ name: "Ruth De Jong", film: "Oppenheimer", score: 88, prob: "12%" },
{ name: "Jack Fisk", film: "Killers of the Flower Moon", score: 84, prob: "4%" },
{ name: "Sarah Greenwood", film: "Barbie", score: 78, prob: "1%" },
{ name: "Arthur Max", film: "Napoleon", score: 72, prob: "<1%" }
],
stats: { nominations: 5, firstTime: 2, avgNoms: "2.1", volatility: "Low" }
},
{
id: 15,
name: "Costume Design",
type: "craft",
nominees: [
{ name: "Holly Waddington", film: "Poor Things", score: 94, prob: "78%" },
{ name: "Jacqueline Durran", film: "Barbie", score: 88, prob: "15%" },
{ name: "Jacqueline West", film: "Killers of the Flower Moon", score: 82, prob: "5%" },
{ name: "Ellen Mirojnick", film: "Oppenheimer", score: 76, prob: "1%" },
{ name: "Janty Yates & Dave Crossman", film: "Napoleon", score: 70, prob: "<1%" }
],
stats: { nominations: 5, firstTime: 1, avgNoms: "2.4", volatility: "Low" }
},
{
id: 16,
name: "Makeup and Hairstyling",
type: "craft",
nominees: [
{ name: "Poor Things", film: "Nadia Stacey & team", score: 92, prob: "65%" },
{ name: "Maestro", film: "Kazu Hiro & team", score: 88, prob: "25%" },
{ name: "Golda", film: "Karen Hartley Thomas & team", score: 78, prob: "6%" },
{ name: "Killers of the Flower Moon", film: "Kay Georgiou & team", score: 74, prob: "3%" },
{ name: "Oppenheimer", film: "Luisa Abel & team", score: 70, prob: "1%" }
],
stats: { nominations: 5, firstTime: 3, avgNoms: "1.5", volatility: "Medium" }
},
{
id: 17,
name: "Original Score",
type: "craft",
nominees: [
{ name: "Ludwig Göransson", film: "Oppenheimer", score: 97, prob: "92%" },
{ name: "Jerskin Fendrix", film: "Poor Things", score: 86, prob: "4%" },
{ name: "Robbie Robertson", film: "Killers of the Flower Moon", score: 84, prob: "2%" },
{ name: "Laura Karpman", film: "American Fiction", score: 76, prob: "1%" },
{ name: "John Williams", film: "Indiana Jones and the Dial of Destiny", score: 72, prob: "<1%" }
],
stats: { nominations: 5, firstTime: 2, avgNoms: "3.8", volatility: "Very Low" }
},
{
id: 18,
name: "Original Song",
type: "craft",
nominees: [
{ name: "\"What Was I Made For?\"", film: "Billie Eilish - Barbie", score: 94, prob: "75%" },
{ name: "\"I'm Just Ken\"", film: "Ryan Gosling - Barbie", score: 84, prob: "12%" },
{ name: "\"Wahzhazhe\"", film: "Killers of the Flower Moon", score: 80, prob: "8%" },
{ name: "\"The Fire Inside\"", film: "Flaming Hot", score: 72, prob: "3%" },
{ name: "\"It Never Went Away\"", film: "American Symphony", score: 68, prob: "2%" }
],
stats: { nominations: 5, firstTime: 3, avgLength: "3:42", volatility: "Medium" }
},
{
id: 19,
name: "Sound",
type: "craft",
nominees: [
{ name: "Oppenheimer", film: "Willie D. Burton & team", score: 96, prob: "85%" },
{ name: "The Zone of Interest", film: "Tarn Willers & team", score: 88, prob: "10%" },
{ name: "Maestro", film: "Richard King & team", score: 82, prob: "3%" },
{ name: "Killers of the Flower Moon", film: "Claire Dodunski & team", score: 76, prob: "1%" },
{ name: "Mission: Impossible - Dead Reckoning", film: "Chris Munro & team", score: 72, prob: "<1%" }
],
stats: { nominations: 5, firstTime: 2, avgNoms: "2.6", volatility: "Low" }
},
{
id: 20,
name: "Visual Effects",
type: "craft",
nominees: [
{ name: "Godzilla Minus One", film: "Takashi Yamazaki & team", score: 92, prob: "55%" },
{ name: "Guardians of the Galaxy Vol. 3", film: "Stephane Ceretti & team", score: 86, prob: "20%" },
{ name: "Mission: Impossible - Dead Reckoning", film: "Alex Wuttke & team", score: 82, prob: "12%" },
{ name: "Napoleon", film: "Henry Badgett & team", score: 78, prob: "8%" },
{ name: "The Creator", film: "Jay Cooper & team", score: 74, prob: "5%" }
],
stats: { nominations: 5, firstTime: 2, avgBudget: "$180M", volatility: "High" }
},
{
id: 21,
name: "Animated Short Film",
type: "short",
nominees: [
{ name: "War Is Over! Inspired by the Music of John & Yoko", film: "Dave Mullins", score: 90, prob: "42%" },
{ name: "Ninety-Five Senses", film: "Jerusha Hess & Jared Hess", score: 86, prob: "25%" },
{ name: "Letter to a Pig", film: "Tal Kantor", score: 82, prob: "18%" },
{ name: "Pachyderme", film: "Stéphanie Clément", score: 78, prob: "10%" },
{ name: "Our Uniform", film: "Yegane Moghaddam", score: 72, prob: "5%" }
],
stats: { nominations: 5, firstTime: 5, avgRuntime: "11 min", volatility: "High" }
},
{
id: 22,
name: "Documentary Short Film",
type: "short",
nominees: [
{ name: "The Last Repair Shop", film: "Ben Proudfoot & Kris Bowers", score: 92, prob: "52%" },
{ name: "The ABCs of Book Banning", film: "Sheila Nevins", score: 86, prob: "22%" },
{ name: "The Barber of Little Rock", film: "John Hoffman & Christine Turner", score: 82, prob: "15%" },
{ name: "Island in Between", film: "S. Leo Chiang", score: 76, prob: "8%" },
{ name: "Nai Nai & Wài Pó", film: "Sean Wang", score: 72, prob: "3%" }
],
stats: { nominations: 5, firstTime: 5, avgRuntime: "32 min", volatility: "High" }
},
{
id: 23,
name: "Live Action Short Film",
type: "short",
nominees: [
{ name: "The Wonderful Story of Henry Sugar", film: "Wes Anderson", score: 94, prob: "65%" },
{ name: "Red, White and Blue", film: "Nazrin Choudhury", score: 86, prob: "18%" },
{ name: "Knight of Fortune", film: "Lasse Lyskjær Noer", score: 82, prob: "10%" },
{ name: "Invincible", film: "Vincent René-Lortie", score: 76, prob: "5%" },
{ name: "The After", film: "Misan Harriman", score: 70, prob: "2%" }
],
stats: { nominations: 5, firstTime: 4, avgRuntime: "28 min", volatility: "Medium" }
}
];
let currentCategory = 0;
// Initialize sidebar
function initSidebar() {
const nav = document.getElementById('categoryNav');
categories.forEach((cat, index) => {
const li = document.createElement('li');
li.innerHTML = `<a href="#" data-index="${index}" class="${index === 0 ? 'active' : ''}">
<span>${cat.id.toString().padStart(2, '0')}</span>
${cat.name}
<span class="num">${cat.nominees.length}</span>
</a>`;
nav.appendChild(li);
});
nav.addEventListener('click', (e) => {
e.preventDefault();
const link = e.target.closest('a');
if (link) {
currentCategory = parseInt(link.dataset.index);
updateView();
}
});
}
// Update view
function updateView() {
const cat = categories[currentCategory];
const prevCat = categories[currentCategory - 1];
const nextCat = categories[currentCategory + 1];
// Update sidebar active
document.querySelectorAll('#categoryNav a').forEach((a, i) => {
a.classList.toggle('active', i === currentCategory);
});
// Update progress
document.getElementById('progressFill').style.width = `${((currentCategory + 1) / categories.length) * 100}%`;
// Render content
const main = document.getElementById('mainContent');
main.innerHTML = `
<div class="category-header">
<div class="category-info">
<div class="category-number">CATEGORY ${cat.id.toString().padStart(2, '0')} OF 23</div>
<h1 class="category-title">${cat.name}</h1>
<div class="category-subtitle">${cat.type.toUpperCase()} • ${cat.nominees.length} NOMINEES</div>
</div>
</div>
<div class="stats-row">
<div class="stat-card">
<div class="stat-label">Total Nominees</div>
<div class="stat-value gold">${cat.nominees.length}</div>
<div class="stat-change">${cat.stats.firstTime} first-time nominees</div>
</div>
<div class="stat-card">
<div class="stat-label">Volatility Index</div>
<div class="stat-value">${cat.stats.volatility}</div>
<div class="stat-change">Based on 10-year history</div>
</div>
<div class="stat-card">
<div class="stat-label">Favorite Score</div>
<div class="stat-value green">${cat.nominees[0].score}</div>
<div class="stat-change">${cat.nominees[0].prob} win probability</div>
</div>
<div class="stat-card">
<div class="stat-label">Category Type</div>
<div class="stat-value">${cat.type.charAt(0).toUpperCase() + cat.type.slice(1)}</div>
<div class="stat-change">${cat.stats.avgBudget || cat.stats.avgAge || cat.stats.avgRuntime || 'N/A'}</div>
</div>
</div>
<div class="dashboard-grid">
<div class="card col-6">
<div class="card-header">
<span class="card-title">Nominees & Predictions</span>
<span class="card-badge">AI POWERED</span>
</div>
<div class="card-body">
<ul class="nominee-list">
${cat.nominees.map((n, i) => `
<li class="nominee-item ${i === 0 ? 'favorite' : ''}">
<span class="nominee-rank">${i + 1}</span>
<div class="nominee-info">
<span class="nominee-name">${n.name}</span>
<span class="nominee-film">${n.film}</span>
</div>
<div class="nominee-stats">
<span class="nominee-score">${n.score}</span>
<span class="nominee-prob">${n.prob} chance</span>
</div>
</li>
`).join('')}
</ul>
</div>
</div>
<div class="card col-6">
<div class="card-header">
<span class="card-title">Win Probability Distribution</span>
<span class="card-badge">CHART</span>
</div>
<div class="card-body">
<div class="chart-container">
<canvas id="probChart"></canvas>
</div>
</div>
</div>
<div class="card col-12">
<div class="card-header">
<span class="card-title">Category Analysis</span>
<span class="card-badge">INSIGHTS</span>
</div>
<div class="card-body">
<div class="analysis-grid">
<div class="analysis-item">
<div class="analysis-label">Prediction Confidence</div>
<div class="analysis-value">${cat.nominees[0].prob}</div>
</div>
<div class="analysis-item">
<div class="analysis-label">Upset Potential</div>
<div class="analysis-value">${parseInt(cat.nominees[0].prob) < 50 ? 'High' : parseInt(cat.nominees[0].prob) < 70 ? 'Medium' : 'Low'}</div>
</div>
<div class="analysis-item">
<div class="analysis-label">Score Range</div>
<div class="analysis-value">${cat.nominees[cat.nominees.length-1].score} - ${cat.nominees[0].score}</div>
</div>
<div class="analysis-item">
<div class="analysis-label">Historical Accuracy</div>
<div class="analysis-value">${75 + Math.floor(Math.random() * 20)}%</div>
</div>
</div>