-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1464 lines (1293 loc) · 71.4 KB
/
index.html
File metadata and controls
1464 lines (1293 loc) · 71.4 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="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>El IMPOSTORCITO — versión 3.0</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&family=Inter:wght@300;400;600;800&family=Poppins:wght@400;600;700;900&display=swap" rel="stylesheet">
<style>
:root{
--bg-1: #0a0a0f;
--muted: #f1f5f9;
--glass: rgba(15,23,42,0.85);
--accent-from: #a855f7;
--accent-to: #ec4899;
--cyan: #06b6d4;
--purple: #8b5cf6;
--pink: #ec4899;
}
* {
-webkit-tap-highlight-color: transparent;
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
overflow-x: hidden;
position: relative;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background: #0a0a0f;
color: var(--muted);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: relative;
overflow-y: auto;
}
/* Animated Background */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
animation: backgroundShift 20s ease-in-out infinite;
z-index: 0;
pointer-events: none;
}
@keyframes backgroundShift {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.8; transform: scale(1.1); }
}
/* Floating particles effect */
body::after {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.1), transparent),
radial-gradient(2px 2px at 60% 70%, rgba(139,92,246,0.1), transparent),
radial-gradient(1px 1px at 50% 50%, rgba(236,72,153,0.1), transparent),
radial-gradient(1px 1px at 80% 10%, rgba(6,182,212,0.1), transparent);
background-size: 200% 200%;
animation: particleFloat 30s linear infinite;
z-index: 0;
pointer-events: none;
}
@keyframes particleFloat {
0% { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
100% { background-position: 100% 100%, -100% 100%, 100% -100%, -100% -100%; }
}
/* Game brand font */
h1, .game-font {
font-family: 'Orbitron', 'Poppins', sans-serif;
font-weight: 900;
}
/* Premium Buttons */
.btn-neon {
background: linear-gradient(135deg, var(--accent-from) 0%, var(--accent-to) 100%);
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 2px solid rgba(255,255,255,0.2);
box-shadow:
0 10px 40px rgba(139, 92, 246, 0.4),
0 0 30px rgba(217, 70, 239, 0.3),
inset 0 1px 0 rgba(255,255,255,0.2);
font-weight: 800;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.btn-neon::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transition: left 0.6s;
}
.btn-neon:hover::before {
left: 100%;
}
.btn-neon:hover {
transform: translateY(-3px) scale(1.02);
box-shadow:
0 20px 60px rgba(139, 92, 246, 0.5),
0 0 40px rgba(217, 70, 239, 0.4),
inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-neon:active {
transform: translateY(-1px) scale(0.98);
}
.btn-primary {
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
border: 2px solid rgba(255,255,255,0.2);
box-shadow:
0 10px 40px rgba(16, 185, 129, 0.4),
inset 0 1px 0 rgba(255,255,255,0.2);
transition: all 0.4s ease;
font-weight: 800;
letter-spacing: 0.05em;
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow:
0 20px 60px rgba(16, 185, 129, 0.5),
inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:active {
transform: translateY(-1px) scale(0.98);
}
.btn-secondary {
background: rgba(30, 41, 59, 0.9);
border: 2px solid rgba(255,255,255,0.15);
backdrop-filter: blur(20px);
transition: all 0.4s ease;
font-weight: 700;
box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.btn-secondary:hover {
background: rgba(51, 65, 85, 0.95);
transform: translateY(-2px);
box-shadow: 0 12px 40px rgba(0,0,0,0.4);
border-color: rgba(255,255,255,0.25);
}
.btn-secondary:active {
transform: translateY(0) scale(0.98);
}
.btn-danger {
background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
border: 2px solid rgba(255,255,255,0.2);
box-shadow:
0 10px 40px rgba(239, 68, 68, 0.4),
inset 0 1px 0 rgba(255,255,255,0.2);
transition: all 0.4s ease;
font-weight: 800;
}
.btn-danger:hover {
transform: translateY(-3px);
box-shadow:
0 20px 60px rgba(239, 68, 68, 0.5),
inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-danger:active {
transform: translateY(-1px) scale(0.98);
}
/* Premium Glass Panels */
.glass-panel {
background: rgba(15, 23, 42, 0.9);
backdrop-filter: blur(20px) saturate(200%);
-webkit-backdrop-filter: blur(20px) saturate(200%);
border: 2px solid rgba(255, 255, 255, 0.15);
box-shadow:
0 25px 80px rgba(2,6,23,0.8),
inset 0 1px 0 rgba(255,255,255,0.15),
inset 0 -1px 0 rgba(0,0,0,0.2);
}
.input-field {
background: rgba(0, 0, 0, 0.6);
border: 2px solid rgba(255,255,255,0.1);
transition: all 0.4s ease;
backdrop-filter: blur(10px);
}
.input-field:focus {
border-color: var(--pink);
outline: none;
box-shadow:
0 0 0 4px rgba(236, 72, 153, 0.15),
0 10px 30px rgba(236, 72, 153, 0.2);
background: rgba(0, 0, 0, 0.7);
transform: scale(1.02);
}
.hidden-screen {
display: none !important;
}
.animate-enter {
animation: fadeInUp 0.6s cubic-bezier(0.2, 0, 0.2, 1) both;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px) scale(0.95);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}
.role-impostor {
text-shadow:
0 0 40px rgba(239,68,68,1),
0 0 80px rgba(239,68,68,0.6),
0 0 120px rgba(239,68,68,0.3);
color: #ef4444;
animation: pulse-glow-intense 2s ease-in-out infinite;
}
@keyframes pulse-glow-intense {
0%, 100% {
opacity: 1;
filter: brightness(1);
}
50% {
opacity: 0.9;
filter: brightness(1.2);
}
}
.role-innocent {
text-shadow:
0 0 30px rgba(56,189,248,0.9),
0 0 60px rgba(56,189,248,0.5),
0 0 90px rgba(56,189,248,0.3);
color: #38bdf8;
animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
0%, 100% { filter: brightness(1); }
50% { filter: brightness(1.15); }
}
/* App Shell */
.app-shell {
width: 100%;
max-width: 100%;
margin: 0 auto;
padding: 1.5rem;
position: relative;
z-index: 1;
}
button, .player-input {
touch-action: manipulation;
min-height: 44px;
}
@media (max-width: 480px) {
button, .player-input {
min-height: 44px;
}
}
#role-card {
min-height: 450px;
transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}
#role-card::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
border-radius: inherit;
opacity: 0;
transition: opacity 0.6s;
z-index: -1;
}
#role-card:hover::before {
opacity: 1;
animation: borderGlow 2s linear infinite;
}
@keyframes borderGlow {
0% { background-position: 0% 50%; }
100% { background-position: 200% 50%; }
}
/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: rgba(0,0,0,0.3);
border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, var(--purple), var(--pink));
border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: linear-gradient(180deg, var(--pink), var(--purple));
}
/* Players Bar */
.players-bar {
display: flex;
gap: 1rem;
align-items: stretch;
}
.players-bar .quick-input {
flex: 1;
min-height: 52px;
}
.players-bar .quick-add {
min-height: 44px;
min-width: 44px;
padding: 0;
font-weight: 800;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
}
@media (min-width: 481px) {
.players-bar .quick-add {
min-height: 52px;
min-width: 52px;
}
}
/* Badge */
.badge {
display: inline-flex;
align-items: center;
padding: 0.625rem 1.25rem;
border-radius: 9999px;
font-weight: 800;
font-size: 0.75rem;
letter-spacing: 0.1em;
text-transform: uppercase;
border: 2px solid;
}
/* Scoreboard */
.scoreboard-item {
transition: all 0.4s ease;
border-left: 4px solid transparent;
}
.scoreboard-item:hover {
transform: translateX(8px);
border-left-color: var(--purple);
background: rgba(139, 92, 246, 0.15);
box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}
/* Player Input Item */
.player-input-item {
transition: all 0.4s ease;
}
.player-input-item:hover {
transform: translateX(6px);
}
/* Break words */
.break-words {
word-break: break-word;
overflow-wrap: break-word;
}
/* Title Gradient Animation */
.title-gradient {
background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 50%, #ec4899 100%);
background-size: 200% 200%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
/* Mobile Optimizations */
@media (max-width: 480px) {
body {
padding: 0.5rem;
}
.app-shell {
padding: 0.75rem;
}
/* Títulos más pequeños */
h1.text-4xl, h1.text-5xl, h1.text-6xl, h1.text-7xl {
font-size: 2rem !important;
line-height: 1.2 !important;
}
#current-player-name {
font-size: 1.75rem !important;
line-height: 1.2 !important;
margin-bottom: 1.5rem !important;
}
#secret-word {
font-size: 1.5rem !important;
line-height: 1.2 !important;
}
/* Card más compacta */
#role-card {
min-height: 320px !important;
padding: 1rem !important;
}
#role-icon {
font-size: 4rem !important;
margin-bottom: 0.75rem !important;
}
#role-title {
font-size: 0.65rem !important;
margin-bottom: 0.75rem !important;
}
/* Botones más compactos */
.btn-neon, button {
padding-top: 0.75rem !important;
padding-bottom: 0.75rem !important;
font-size: 0.875rem !important;
}
.glass-panel {
padding: 1rem !important;
}
/* Inputs más pequeños */
.players-bar {
gap: 0.5rem;
}
.players-bar .quick-input {
padding: 0.75rem !important;
font-size: 14px !important;
}
.player-input {
padding: 0.75rem !important;
font-size: 14px !important;
}
/* Espaciados reducidos */
.mb-6, .mb-8, .mb-10, .mb-12, .mb-16 {
margin-bottom: 1rem !important;
}
.mt-6, .mt-8, .mt-10 {
margin-top: 1rem !important;
}
.py-6, .py-8 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
/* Badge más pequeño */
.badge {
padding: 0.4rem 0.75rem !important;
font-size: 0.65rem !important;
}
/* Textos generales más pequeños */
p, span, label {
font-size: 0.875rem !important;
}
/* Hint box más pequeño */
#hint-box {
padding: 1rem !important;
margin-top: 1rem !important;
}
#impostor-hint {
font-size: 1.25rem !important;
}
/* Iconos más pequeños */
.text-7xl, .text-8xl {
font-size: 3.5rem !important;
}
.text-6xl {
font-size: 3rem !important;
}
/* Categoría más pequeña */
#final-category {
font-size: 1.5rem !important;
}
/* Scoreboard más compacto pero legible */
.scoreboard-item {
padding: 0.75rem 1rem !important;
}
.scoreboard-item .text-xs {
font-size: 0.7rem !important;
}
.scoreboard-item .text-sm {
font-size: 0.875rem !important;
}
.scoreboard-item .text-xl {
font-size: 1.25rem !important;
}
/* Títulos de sección más pequeños */
h3 {
font-size: 1.125rem !important;
}
/* Espaciado general reducido */
.space-y-4 > * + * {
margin-top: 0.75rem !important;
}
.space-y-3 > * + * {
margin-top: 0.5rem !important;
}
/* Padding general reducido */
.p-6, .p-8, .p-10 {
padding: 1rem !important;
}
/* Input de impostores más pequeño */
#impostor-count {
font-size: 0.875rem !important;
padding: 0.5rem !important;
}
}
/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {
.app-shell {
max-width: 650px;
}
#role-card {
min-height: 480px;
}
}
/* Desktop */
@media (min-width: 769px) {
.app-shell {
max-width: 750px;
}
h1.text-4xl {
font-size: 3rem;
}
#role-card {
min-height: 520px;
}
}
/* Icon animations */
.icon-bounce {
animation: iconBounce 2s ease-in-out infinite;
}
@keyframes iconBounce {
0%, 100% { transform: translateY(0) scale(1); }
50% { transform: translateY(-10px) scale(1.1); }
}
/* Hint box animation */
#hint-box {
animation: hintPulse 3s ease-in-out infinite;
}
@keyframes hintPulse {
0%, 100% {
box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
}
50% {
box-shadow: 0 15px 50px rgba(239, 68, 68, 0.5);
}
}
/* Category badge */
.category-badge {
background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
border: 2px solid rgba(139, 92, 246, 0.4);
backdrop-filter: blur(20px);
}
/* Category card */
.category-card {
background: rgba(15, 23, 42, 0.7);
border: 2px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
transition: all 0.3s ease;
cursor: pointer;
position: relative;
overflow: hidden;
}
.category-card:hover {
transform: translateY(-4px);
border-color: rgba(139, 92, 246, 0.5);
box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}
.category-card.selected {
background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
border-color: rgba(139, 92, 246, 0.6);
box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}
.category-card.selected::before {
content: '✓';
position: absolute;
top: 0.5rem;
right: 0.5rem;
width: 1.5rem;
height: 1.5rem;
background: linear-gradient(135deg, #10b981, #059669);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 900;
font-size: 0.875rem;
}
</style>
</head>
<body class="h-screen flex flex-col items-center justify-center overflow-hidden">
<!-- PANTALLA 1: SETUP -->
<div id="screen-setup" class="w-full flex flex-col h-full py-3 md:py-6 animate-enter app-shell">
<div class="text-center mb-4 md:mb-8">
<h1 class="text-4xl md:text-7xl font-black title-gradient tracking-wider mb-2 md:mb-3 break-words">
El Impostorcito
</h1>
<p class="text-slate-400 text-xs md:text-base tracking-[0.3em] md:tracking-[0.4em] uppercase font-bold mt-1 md:mt-2">Versión 3.0</p>
</div>
<div class="glass-panel flex-1 rounded-2xl md:rounded-3xl p-4 md:p-8 overflow-hidden flex flex-col shadow-2xl">
<div class="flex flex-col sm:flex-row justify-between items-start sm:items-center gap-3 md:gap-4 mb-4 md:mb-6">
<h3 class="text-white font-black text-lg md:text-3xl">👥 Jugadores</h3>
<div class="flex items-center gap-2 md:gap-4 flex-wrap">
<span id="player-count" class="badge bg-pink-500/30 text-pink-200 border-pink-500/50 shadow-lg text-xs md:text-sm">0 Jugadores</span>
<label class="text-xs text-slate-300 uppercase tracking-wide flex items-center gap-1 md:gap-2 font-bold">
🎭 Impostores
<input id="impostor-count" type="number" min="1" value="1" class="w-12 md:w-16 text-center rounded-lg md:rounded-xl bg-black/50 text-white text-sm md:text-base font-black border-2 border-white/20 focus:border-purple-500 focus:outline-none py-1 md:py-2 shadow-lg" />
</label>
</div>
</div>
<div id="players-list" class="overflow-y-auto flex-1 space-y-2 md:space-y-4 pr-2 md:pr-3 mb-3 md:mb-5 custom-scrollbar">
<!-- Inputs dinámicos -->
</div>
<div class="mt-3 md:mt-5">
<div class="players-bar">
<input id="quick-player-name" type="text" placeholder="Nuevo jugador..." class="quick-input player-input p-3 md:p-5 rounded-xl md:rounded-2xl text-white input-field placeholder-slate-500 font-bold text-sm md:text-lg" />
<button onclick="addQuickPlayer()" class="quick-add btn-primary text-white rounded-xl md:rounded-2xl shadow-xl text-xl md:text-2xl font-bold w-12 md:w-14 h-12 md:h-14 flex items-center justify-center p-0">
➕
</button>
</div>
<div class="mt-2 md:mt-4 flex justify-end">
<button onclick="resetScores()" class="text-xs md:text-sm text-slate-400 hover:text-white transition-colors font-semibold">
🔄 Reset marcador
</button>
</div>
</div>
</div>
<div class="mt-4 md:mt-8">
<button onclick="startGame()" class="btn-neon w-full py-4 md:py-6 rounded-2xl md:rounded-3xl text-base md:text-2xl font-black text-white shadow-2xl tracking-wider">
🎮 ¡INICIAR PARTIDA!
</button>
</div>
<div class="mt-4 md:mt-6 text-center">
<p class="text-slate-500 text-xs md:text-sm font-medium opacity-70">
© Sneider, Nicol y Raiber
</p>
</div>
</div>
<!-- PANTALLA 2: SELECCIÓN DE CATEGORÍAS -->
<div id="screen-categories" class="hidden-screen w-full flex flex-col h-full py-4 md:py-6 animate-enter app-shell">
<div class="text-center mb-6 md:mb-8">
<h1 class="text-3xl md:text-5xl font-black title-gradient tracking-wider mb-2 md:mb-3">
Elige las Categorías
</h1>
<p class="text-slate-400 text-sm md:text-base mt-2 font-semibold">Selecciona las categorías que quieres jugar</p>
</div>
<div class="glass-panel flex-1 rounded-2xl md:rounded-3xl p-5 md:p-6 overflow-y-auto custom-scrollbar">
<div id="categories-grid" class="grid grid-cols-1 sm:grid-cols-2 gap-3 md:gap-4">
<!-- Categorías dinámicas -->
</div>
</div>
<div class="mt-6 md:mt-8 space-y-3 md:space-y-4">
<button onclick="selectAllCategories()" class="btn-secondary text-white w-full py-3 md:py-4 rounded-xl md:rounded-2xl font-bold text-sm md:text-base">
✅ Seleccionar Todas
</button>
<button onclick="deselectAllCategories()" class="btn-secondary text-white w-full py-3 md:py-4 rounded-xl md:rounded-2xl font-bold text-sm md:text-base">
❌ Deseleccionar Todas
</button>
<button onclick="confirmCategories()" class="btn-neon w-full py-4 md:py-6 rounded-2xl md:rounded-3xl text-base md:text-xl font-black text-white shadow-2xl tracking-wider">
🚀 Continuar
</button>
<button onclick="goBackToSetup()" class="text-slate-400 text-sm md:text-base py-2 hover:text-white transition-colors font-semibold text-center w-full">
← Volver
</button>
</div>
</div>
<!-- PANTALLA 3: PASE -->
<div id="screen-pass" class="hidden-screen w-full text-center animate-enter h-full flex flex-col justify-center app-shell px-4 md:px-6">
<div class="mb-6 md:mb-16 relative group">
<div class="absolute inset-0 bg-pink-600 blur-[60px] md:blur-[80px] opacity-30 group-hover:opacity-40 transition-opacity"></div>
<div class="relative w-24 h-24 md:w-40 md:h-40 bg-gradient-to-br from-slate-900 via-slate-800 to-slate-900 rounded-full flex items-center justify-center mx-auto border-3 md:border-4 border-slate-700 shadow-2xl">
<span class="text-5xl md:text-8xl icon-bounce">🤫</span>
</div>
</div>
<p class="text-slate-400 text-xs md:text-lg uppercase tracking-[0.3em] md:tracking-[0.4em] mb-3 md:mb-5 font-bold">Dale el móvil a</p>
<h1 id="current-player-name" class="text-2xl md:text-7xl font-black text-white mb-6 md:mb-16 game-font break-words leading-tight drop-shadow-2xl title-gradient">NOMBRE</h1>
<button onclick="revealRole()" class="btn-secondary text-white w-full py-4 md:py-7 rounded-2xl md:rounded-3xl text-base md:text-2xl font-black shadow-2xl">
👁️ VER MI CARTA
</button>
</div>
<!-- PANTALLA 3: REVELACIÓN -->
<div id="screen-reveal" class="hidden-screen w-full animate-enter h-full flex flex-col justify-center app-shell px-4 md:px-6">
<div id="role-card" class="glass-panel p-4 md:p-10 rounded-2xl md:rounded-3xl mb-4 md:mb-8 relative overflow-hidden min-h-[320px] md:min-h-[450px] flex flex-col justify-center items-center border-2 shadow-2xl">
<div class="mb-4 md:mb-8 transform hover:scale-110 transition-transform duration-500">
<span id="role-icon" class="text-5xl md:text-9xl drop-shadow-2xl block"></span>
</div>
<h2 id="role-title" class="text-xs md:text-base font-black mb-3 md:mb-6 tracking-[0.3em] md:tracking-[0.5em] uppercase opacity-80">OBJETIVO</h2>
<div id="word-container" class="w-full relative z-10 text-center px-2 md:px-4">
<h1 id="secret-word" class="text-2xl md:text-6xl font-black uppercase break-words leading-tight mb-2 md:mb-4 filter drop-shadow-2xl">PALABRA</h1>
</div>
<div id="hint-box" class="hidden mt-4 md:mt-10 w-full bg-gradient-to-br from-red-950/80 to-orange-950/80 border-2 border-red-500/50 rounded-2xl md:rounded-3xl p-4 md:p-6 animate-enter shadow-2xl">
<div class="flex justify-center items-center gap-2 md:gap-3 mb-2 md:mb-4">
<span class="text-xs md:text-sm text-red-200 uppercase tracking-widest font-black">🔍 PISTA CLAVE</span>
</div>
<p id="impostor-hint" class="text-lg md:text-3xl text-white font-black font-mono tracking-wider text-center break-words"></p>
</div>
<p class="mt-4 md:mt-10 text-xs text-slate-400 uppercase tracking-wider text-center font-bold">Memoriza rápido y borra</p>
</div>
<button onclick="nextTurn()" class="btn-primary text-white w-full py-4 md:py-6 rounded-2xl md:rounded-3xl text-base md:text-2xl font-black shadow-2xl">
✅ OCULTAR Y PASAR
</button>
</div>
<!-- PANTALLA 4: VOTACIÓN -->
<div id="screen-vote" class="hidden-screen w-full text-center animate-enter h-full flex flex-col justify-center app-shell px-4 md:px-6 overflow-y-auto">
<div class="mb-4 md:mb-10">
<span class="text-5xl md:text-8xl animate-bounce inline-block drop-shadow-2xl">🔥</span>
</div>
<h1 class="text-2xl md:text-5xl font-black text-white mb-3 md:mb-4 game-font title-gradient">¡A VOTAR!</h1>
<p class="text-sm md:text-xl text-slate-300 mb-4 md:mb-10 px-2 md:px-4 font-semibold">¿Quién miente?</p>
<div class="category-badge p-4 md:p-8 rounded-2xl md:rounded-3xl border-2 mb-4 md:mb-8 shadow-2xl">
<p class="text-xs text-indigo-200 uppercase mb-2 md:mb-4 tracking-widest font-black">Tema</p>
<p id="final-category" class="text-xl md:text-4xl text-white font-black game-font">CATEGORÍA</p>
</div>
<div id="spoiler-section" class="hidden mb-4 md:mb-8 bg-black/80 p-4 md:p-8 rounded-2xl md:rounded-3xl border-2 border-white/30 relative overflow-hidden shadow-2xl">
<div class="absolute top-0 left-0 w-1.5 md:w-2 h-full bg-gradient-to-b from-cyan-500 via-purple-500 to-pink-500"></div>
<div class="flex flex-col gap-3 md:gap-5 text-left pl-3 md:pl-5">
<div class="flex justify-between items-center">
<p class="text-xs text-slate-400 uppercase font-black">Palabra</p>
<p id="reveal-word-final" class="text-cyan-300 font-black text-base md:text-2xl tracking-wide break-words"></p>
</div>
<div class="h-px bg-white/30 w-full"></div>
<div class="flex justify-between items-center">
<p class="text-xs text-slate-400 uppercase font-black">Impostor</p>
<p id="reveal-impostor-final" class="text-red-300 font-black text-base md:text-2xl tracking-wide uppercase break-words"></p>
</div>
</div>
</div>
<div id="final-scoreboard" class="hidden mb-4 md:mb-8 text-sm md:text-base">
<!-- dinámico: ranking -->
</div>
<div class="space-y-3 md:space-y-4 mt-auto w-full pb-4 md:pb-6">
<button onclick="showSpoiler()" id="btn-spoiler" class="btn-secondary text-white w-full py-4 md:py-5 rounded-xl md:rounded-2xl font-black text-sm md:text-lg border-2 shadow-xl">
🔓 VER RESULTADO
</button>
<div id="result-controls" class="hidden mt-3 md:mt-4 space-y-3 md:space-y-4">
<div class="flex gap-3 md:gap-4">
<button onclick="awardImpostorPoint()" id="btn-impostor-win" class="btn-danger w-1/2 py-4 md:py-5 rounded-xl md:rounded-2xl text-white font-black text-xs md:text-base shadow-xl">
😈 Impostor (+1)
</button>
<button onclick="noPointsThisRound()" id="btn-no-points" class="btn-secondary w-1/2 py-4 md:py-5 rounded-xl md:rounded-2xl text-white font-black text-xs md:text-base shadow-xl">
⚪ Nadie
</button>
</div>
</div>
<button onclick="restartGame()" class="btn-neon w-full py-4 md:py-5 rounded-xl md:rounded-2xl text-sm md:text-xl font-black text-white uppercase tracking-wider shadow-2xl">
🔄 Jugar Otra Vez
</button>
<button onclick="goToSetup()" class="btn-neon w-full py-4 md:py-5 rounded-xl md:rounded-2xl text-sm md:text-xl font-black text-white uppercase tracking-wider shadow-2xl">
🏠 Regresar al inicio
</button>
<button onclick="fullReset()" class="text-slate-500 text-xs md:text-sm py-2 md:py-3 hover:text-white transition-colors font-semibold">
🔄 Cambiar Jugadores
</button>
</div>
<div class="mt-4 md:mt-6 text-center pb-2">
<p class="text-slate-500 text-xs md:text-sm font-medium opacity-70">
© Sneider, Nicol y Raiber
</p>
</div>
</div>
<script>
/* --- BASE DE DATOS EXPANDIDA CON MÚLTIPLES PISTAS --- */
const database = [
// DEPORTES (cada palabra tiene 2 pistas: [pista1, pista2])
{cat:"Deporte", word:"Fútbol", hints:["Once", "Balón"]}, {cat:"Deporte", word:"Voleibol", hints:["Red", "Saque"]},
{cat:"Deporte", word:"Tenis", hints:["Verde", "Cancha"]}, {cat:"Deporte", word:"Pádel", hints:["Vidrio", "Pared"]},
{cat:"Deporte", word:"Baloncesto", hints:["Anaranjado", "Aro"]}, {cat:"Deporte", word:"Béisbol", hints:["Bases", "Diamante"]},
{cat:"Deporte", word:"Fórmula 1", hints:["Circuito", "Velocidad"]}, {cat:"Deporte", word:"Boxeo", hints:["Guantes", "Round"]},
{cat:"Deporte", word:"Natación", hints:["Tabla", "Piscina"]}, {cat:"Deporte", word:"Surf", hints:["Tabla", "Ola"]},
{cat:"Deporte", word:"Golf", hints:["Palo", "Campo"]},
{cat:"Deporte", word:"Karate", hints:["Cinturon", "Tabla"]}, {cat:"Deporte", word:"Gimnasio", hints:["Máquinas", "Pesas"]},
{cat:"Deporte", word:"Ciclismo", hints:["Velocidad", "Manubrio"]}, {cat:"Deporte", word:"Atletismo", hints:["Pista", "Carrera"]},
{cat:"Deporte", word:"Hockey", hints:["Disco", "Palo"]}, {cat:"Deporte", word:"Esquí", hints:["Frio", "Montaña"]},
{cat:"Deporte", word:"Bádminton", hints:["Pluma", "Red"]}, {cat:"Deporte", word:"Ping Pong", hints:["Mesa", "Paleta"]},
{cat:"Deporte", word:"Arquería", hints:["Flecha", "Arco"]}, {cat:"Deporte", word:"Escalada", hints:["Cuerda", "Roca"]},
// DIBUJOS
{cat:"Dibujos", word:"Peppa Pig", hints:["Rosa", "Dinosaurio"]}, {cat:"Dibujos", word:"Bob Esponja", hints:["Amarillo", "Estrella"]},
{cat:"Dibujos", word:"Mickey Mouse", hints:["Casa", "Orejas"]}, {cat:"Dibujos", word:"El Increíble Mundo de Gumball ", hints:["Gato", "Pez"]},
{cat:"Dibujos", word:"Pikachu", hints:["Ratón", "Amarillo"]}, {cat:"Dibujos", word:"Goku", hints:["Esferas", "Colores"]},
{cat:"Dibujos", word:"Shrek", hints:["Cuentos", "Dragón"]}, {cat:"Dibujos", word:"Buzz Lightyear", hints:["Infinito", "Espacio"]},
{cat:"Dibujos", word:"Minions", hints:["Amarillo", "Bananas"]}, {cat:"Dibujos", word:"Frozen", hints:["Zanahoria", "Hermanas"]},
{cat:"Dibujos", word:"Moana", hints:["Océano", "Isla"]}, {cat:"Dibujos", word:"Coco", hints:["Música", "Familia"]},
{cat:"Dibujos", word:"Toy Story", hints:["Infinito", "Vaquero"]}, {cat:"Dibujos", word:"Cars", hints:["Copa", "Carreras"]},
{cat:"Dibujos", word:"Nemo", hints:["Payaso", "Buscar"]}, {cat:"Dibujos", word:"Simba", hints:["Rey", "Selva"]},
{cat:"Dibujos", word:"Ariel", hints:["Cangrejo", "Poseidon"]}, {cat:"Dibujos", word:"Barbie", hints:["Rosado", "Profesiones"]},
{cat:"Dibujos", word:"Gravity Falls", hints:["Libros", "Verano"]}, {cat:"Dibujos", word:"Un Show Mas", hints:["Jefe", "Parque"]},
// HÉROES
{cat:"Héroe", word:"Superman", hints:["Extraterrestre", "Laser"]}, {cat:"Héroe", word:"Batman", hints:["Negro", "Noche"]},
{cat:"Héroe", word:"Iron Man", hints:["Millonario", "Filantropía"]}, {cat:"Héroe", word:"Spiderman", hints:["Casa", "Tío"]},
{cat:"Héroe", word:"Capitán América", hints:["Vengador", "Estrella"]}, {cat:"Héroe", word:"Thor", hints:["Dios", "Rayo"]},
{cat:"Héroe", word:"Hulk", hints:["Fuerza", "Verde"]}, {cat:"Héroe", word:"Pantera Negra", hints:["Tribu", "Negro"]},
{cat:"Héroe", word:"Flash", hints:["Rayo", "Rojo"]}, {cat:"Héroe", word:"Wonder Woman", hints:["Isla", "Lazo"]},
{cat:"Héroe", word:"Wolverine", hints:["Amarillo", "Metal"]}, {cat:"Héroe", word:"Deadpool", hints:["Cancer", "Rojo"]},
{cat:"Héroe", word:"Aquaman", hints:["Rey", "Océano"]}, {cat:"Héroe", word:"Dr. Strange", hints:["Tiempo", "Portales"]},
{cat:"Héroe", word:"Black Widow", hints:["Espía", "Agente"]}, {cat:"Héroe", word:"Ant-Man", hints:["Enorme", "Civil War"]},
// VILLANOS & TERROR
{cat:"Villano/Terror", word:"Thanos", hints:["Infinito", "Gemas"]}, {cat:"Villano/Terror", word:"Joker", hints:["Comodín", "Bufón"]},
{cat:"Villano/Terror", word:"Darth Vader", hints:["Oscuro", "Padre"]}, {cat:"Villano/Terror", word:"Voldemort", hints:["Serpiente", "Nariz"]},
{cat:"Villano/Terror", word:"Chucky", hints:["Ritual", "Muñeco"]}, {cat:"Villano/Terror", word:"Freddy Krueger", hints:["Dedos", "Pesadilla"]},
{cat:"Villano/Terror", word:"It (Pennywise)", hints:["Transformaciones", "Cloacas"]}, {cat:"Villano/Terror", word:"Drácula", hints:["Noche", "Sangre"]},
{cat:"Villano/Terror", word:"Zombi", hints:["Muerto", "Cerebros"]}, {cat:"Villano/Terror", word:"Fantasma", hints:["Invisible", "Sábana"]},
{cat:"Villano/Terror", word:"Jason", hints:["Viernes", "Machete"]}, {cat:"Villano/Terror", word:"Michael Myers", hints:["Cuchillo", "Máscara"]},
{cat:"Villano/Terror", word:"Hannibal", hints:["Doctor", "Comida"]}, {cat:"Villano/Terror", word:"Loki", hints:["Trucos", "Dios"]},
// COMIDAS
{cat:"Comida", word:"Sushi", hints:["Japón", "Pescado"]}, {cat:"Comida", word:"Pizza", hints:["Hawai", "Queso"]},
{cat:"Comida", word:"Hamburguesa", hints:["Carne", "Pan"]}, {cat:"Comida", word:"Tacos", hints:["Variedad", "Tortilla"]},
{cat:"Comida", word:"Arepa", hints:["Harina", "Maíz"]}, {cat:"Comida", word:"Empanada", hints:["Relleno", "Masa"]},
{cat:"Comida", word:"Ceviche", hints:["Mar", "Limón"]}, {cat:"Comida", word:"Lasagna", hints:["Italiana", "Capas"]},
{cat:"Comida", word:"Salchipapa", hints:["Fritas", "Salsas"]}, {cat:"Comida", word:"Burrito", hints:["Envuelto", "Tortilla"]},
{cat:"Comida", word:"Pollo Frito", hints:["Crujiente", "Aceite"]}, {cat:"Comida", word:"Sopa", hints:["Líquido", "Cuchara"]},
{cat:"Comida", word:"Pastel", hints:["Dulce", "Cumpleaños"]}, {cat:"Comida", word:"Donas", hints:["Redondo", "Azucar"]},
{cat:"Comida", word:"Hot Dog", hints:["Barato", "Salchicha"]}, {cat:"Comida", word:"Chocolate", hints:["Dulce", "Cacao"]},
{cat:"Comida", word:"Helado", hints:["Frío", "Cono"]}, {cat:"Comida", word:"Palomitas", hints:["Maíz", "Pijamada"]},
{cat:"Comida", word:"Pancakes", hints:["Desayuno", "Miel"]}, {cat:"Comida", word:"Pasta", hints:["Largo", "Carne"]},
{cat:"Comida", word:"Ramen", hints:["Sopa", "Corea"]}, {cat:"Comida", word:"Paella", hints:["Arroz", "Mariscos"]},
{cat:"Comida", word:"Sándwich", hints:["Pan", "Lechuga"]}, {cat:"Comida", word:"Alitas", hints:["Picante", "Pollo"]},
{cat:"Comida", word:"Nachos", hints:["Queso", "Tortilla"]}, {cat:"Comida", word:"Tiramisú", hints:["Postre", "Café"]},
// LUGARES
{cat:"Lugar", word:"Playa", hints:["Arena", "Estrella"]}, {cat:"Lugar", word:"Río", hints:["Rocas", "Pozo"]},
{cat:"Lugar", word:"Montaña", hints:["Alto", "Escalada"]}, {cat:"Lugar", word:"Selva", hints:["Verde", "Árboles"]},
{cat:"Lugar", word:"Desierto", hints:["Arena", "Calor"]}, {cat:"Lugar", word:"Cine", hints:["Estrenos", "Pantalla"]},
{cat:"Lugar", word:"Discoteca", hints:["Barra", "Baile"]}, {cat:"Lugar", word:"Hospital", hints:["Bienestar", "Insumos"]},
{cat:"Lugar", word:"Escuela", hints:["Libros", "Examen"]}, {cat:"Lugar", word:"Cementerio", hints:["Tierra", "Descanso"]},
{cat:"Lugar", word:"Aeropuerto", hints:["Boletos", "Vacaciones"]}, {cat:"Lugar", word:"Cárcel", hints:["Rejas", "Sentencia"]},
{cat:"Lugar", word:"Parque", hints:["Bancas", "Paseo"]}, {cat:"Lugar", word:"Museo", hints:["Arte", "Historia"]},
{cat:"Lugar", word:"Restaurante", hints:["Orden", "Platos"]}, {cat:"Lugar", word:"Hotel", hints:["Vacaciones", "Habitaciones"]},
{cat:"Lugar", word:"Biblioteca", hints:["Información", "Estanteria"]}, {cat:"Lugar", word:"Gimnasio", hints:["Superación", "Maquinas"]},
{cat:"Lugar", word:"Iglesia", hints:["Bancas", "Adoración"]}, {cat:"Lugar", word:"Estadio", hints:["Deportes", "Gradas"]},
// TECH/CASA
{cat:"Tech/Casa", word:"Televisor", hints:["Resolución", "Control"]}, {cat:"Tech/Casa", word:"Audífonos", hints:["Música", "Cable"]},
{cat:"Tech/Casa", word:"Aire Acondicionado", hints:["Temperatura", "Frío"]}, {cat:"Tech/Casa", word:"Celular", hints:["Aplicaciones", "Llamada"]},
{cat:"Tech/Casa", word:"WiFi", hints:["Internet", "Red"]}, {cat:"Tech/Casa", word:"PlayStation", hints:["Juegos", "Control"]},
{cat:"Tech/Casa", word:"Microondas", hints:["Calor", "Comida"]}, {cat:"Tech/Casa", word:"Lavadora", hints:["Agua", "Ciclos"]},
{cat:"Tech/Casa", word:"Nevera", hints:["Frío", "Hielo"]}, {cat:"Tech/Casa", word:"Cama", hints:["Descanso", "Pijamada"]},
{cat:"Tech/Casa", word:"Poseta", hints:["Teléfono", "Papel"]}, {cat:"Tech/Casa", word:"Espejo", hints:["Reflejo", "Vidrio"]},
{cat:"Tech/Casa", word:"Reloj", hints:["Muñeca", "Tiempo"]}, {cat:"Tech/Casa", word:"Laptop", hints:["Desplegable", "Teclado"]},
{cat:"Tech/Casa", word:"Tablet", hints:["Táctil", "Pantalla"]}, {cat:"Tech/Casa", word:"Altavoz", hints:["Sonido", "Estruendo"]},
{cat:"Tech/Casa", word:"Cámara", hints:["Recuerdos", "Digital"]}, {cat:"Tech/Casa", word:"Impresora", hints:["Papel", "Tinta"]},
{cat:"Tech/Casa", word:"Router", hints:["Red", "Internet"]}, {cat:"Tech/Casa", word:"Mouse", hints:["Arrastrar", "Botones"]},
{cat:"Tech/Casa", word:"Teclado", hints:["Letras", "Luces"]}, {cat:"Tech/Casa", word:"Monitor", hints:["Resolución", "Pulgadas"]},
// INGENIERÍA DE SISTEMAS
{cat:"Ing. Sistemas", word:"Python", hints:["Bibliotecas", "Interpretado"]}, {cat:"Ing. Sistemas", word:"JavaScript", hints:["Navegador", "Web"]},
{cat:"Ing. Sistemas", word:"Java", hints:["Café", "POO"]}, {cat:"Ing. Sistemas", word:"C++", hints:["Plus", "POO"]},
{cat:"Ing. Sistemas", word:"HTML", hints:["Etiquetas", "WEB"]}, {cat:"Ing. Sistemas", word:"CSS", hints:["Estilos", "Diseño"]},
{cat:"Ing. Sistemas", word:"SQL", hints:["Base", "Datos"]}, {cat:"Ing. Sistemas", word:"PHP", hints:["Servidor", "Web"]},
{cat:"Ing. Sistemas", word:"React", hints:["Componentes", "Facebook"]}, {cat:"Ing. Sistemas", word:"Node.js", hints:["Servidor", "JavaScript"]},
{cat:"Ing. Sistemas", word:"Git", hints:["Versión", "Control"]}, {cat:"Ing. Sistemas", word:"API", hints:["Conexión", "Comunicación"]},
{cat:"Ing. Sistemas", word:"Bug", hints:["Error", "Lag"]},
{cat:"Ing. Sistemas", word:"Algoritmo", hints:["Pasos", "Procesos"]}, {cat:"Ing. Sistemas", word:"Variable", hints:["Modificable", "Dato"]},
// ARQUITECTURA
{cat:"Arquitectura", word:"Plano", hints:["Dibujo", "Diseño"]}, {cat:"Arquitectura", word:"Escalera", hints:["Subir", "Peldaños"]},
{cat:"Arquitectura", word:"Ventana", hints:["Vidrio", "Luz"]}, {cat:"Arquitectura", word:"Columna", hints:["Soporte", "Vertical"]},
{cat:"Arquitectura", word:"Arco", hints:["Curvo", "Puerta"]}, {cat:"Arquitectura", word:"Cúpula", hints:["Redonda", "Techo"]},
{cat:"Arquitectura", word:"Fachada", hints:["Frontal", "Exterior"]}, {cat:"Arquitectura", word:"Balcón", hints:["Exterior", "Vista"]},
{cat:"Arquitectura", word:"Azotea", hints:["Techo", "Arriba"]}, {cat:"Arquitectura", word:"Cimientos", hints:["Base", "Fundación"]},
{cat:"Arquitectura", word:"Viga", hints:["Soporte", "Horizontal"]}, {cat:"Arquitectura", word:"Muro", hints:["Pared", "Separar"]},
{cat:"Arquitectura", word:"Domo", hints:["Cúpula", "Redondo"]}, {cat:"Arquitectura", word:"Atrio", hints:["Patio", "Entrada"]},
{cat:"Arquitectura", word:"Nave", hints:["Espacio", "Largo"]}, {cat:"Arquitectura", word:"Pórtico", hints:["Entrada", "Columnas"]},
// VENEZUELA
{cat:"Venezuela", word:"Arepa", hints:["Harina", "Maíz"]}, {cat:"Venezuela", word:"Turpial", hints:["Ave", "Amarillo"]},
{cat:"Venezuela", word:"Araguaney", hints:["Árbol", "Amarillo"]}, {cat:"Venezuela", word:"Pabellón", hints:["Plato", "Caraotas"]},
{cat:"Venezuela", word:"Hallaca", hints:["Navidad", "Aceitunas"]}, {cat:"Venezuela", word:"Tequeño", hints:["Queso", "Frito"]},
{cat:"Venezuela", word:"Cachapa", hints:["Maíz", "Dulce"]}, {cat:"Venezuela", word:"Caracas", hints:["Ciudad", "Las Mercedes"]},
{cat:"Venezuela", word:"Chicha", hints:["Bebida", "Arroz"]}, {cat:"Venezuela", word:"Barinas", hints:["Monte", "Burras"]},
{cat:"Venezuela", word:"Orinoco", hints:["Río", "Largo"]}, {cat:"Venezuela", word:"Ávila", hints:["Montaña", "Caracas"]},
{cat:"Venezuela", word:"Salto Ángel", hints:["Catarata", "Alto"]}, {cat:"Venezuela", word:"Los Roques", hints:["Islas", "Azul"]},
{cat:"Venezuela", word:"Simón Bolívar", hints:["Libertad", "Historia"]}, {cat:"Venezuela", word:"Maracaibo", hints:["Ciudad", "Petróleo"]},
// MEDICINA
{cat:"Medicina", word:"Estetoscopio", hints:["Escuchar", "Pecho"]}, {cat:"Medicina", word:"Termómetro", hints:["Temperatura", "Oral"]},
{cat:"Medicina", word:"Jeringa", hints:["Miedo", "Suero"]}, {cat:"Medicina", word:"Bisturí", hints:["Cuchilla", "Cirugía"]},
{cat:"Medicina", word:"Radiografía", hints:["Fractura", "Huesos"]}, {cat:"Medicina", word:"Electrocardiograma", hints:["Corazón", "Ondas"]},
{cat:"Medicina", word:"Tensiómetro", hints:["Presión", "Brazo"]}, {cat:"Medicina", word:"Otoscopio", hints:["Oído", "Luz"]},
{cat:"Medicina", word:"Guantes", hints:["Látex", "Protección"]}, {cat:"Medicina", word:"Mascarilla", hints:["COVID", "Protección"]},
{cat:"Medicina", word:"Bata", hints:["Blanca", "Uniforme"]}, {cat:"Medicina", word:"Ambulancia", hints:["Emergencia", "Sirena"]},
{cat:"Medicina", word:"Hospital", hints:["Enfermos", "Camas"]}, {cat:"Medicina", word:"Farmacia", hints:["Estantes", "Pastillas"]},
{cat:"Medicina", word:"Cirujano", hints:["Operación", "Quirófano"]}, {cat:"Medicina", word:"Enfermera", hints:["Cuidado", "Inyección"]},
{cat:"Medicina", word:"Anestesia", hints:["Sueño", "Operación"]}, {cat:"Medicina", word:"Sutura", hints:["Hilo", "Cicatriz"]},
{cat:"Medicina", word:"Vendaje", hints:["Gasas", "Herida"]}, {cat:"Medicina", word:"Antibiótico", hints:["Bacteria", "Infección"]},
// FAMOSOS
{cat:"Famosos", word:"Messi", hints:["Miami", "Oro"]}, {cat:"Famosos", word:"Elon Musk", hints:["Espacio", "Cohete"]},
{cat:"Famosos", word:"Trump", hints:["Torre", "Presidente"]}, {cat:"Famosos", word:"Taylor Swift", hints:["Agosto", "Gato"]},
{cat:"Famosos", word:"Ariana Grande", hints:["Anillos", "Coleta"]}, {cat:"Famosos", word:"Leonardo Di Caprio", hints:["Oscar", "Lobo"]},
{cat:"Famosos", word:"Brad Pitt", hints:["Angelina Jolie", "Fight Club"]}, {cat:"Famosos", word:"Nikola Tesla", hints:["Corriente", "Inventor"]},
{cat:"Famosos", word:"Marie Curie", hints:["Radio", "Ciencia"]}, {cat:"Famosos", word:"Einstein", hints:["Coeficiente", "Cabello"]},
{cat:"Famosos", word:"Darwin", hints:["Evolución", "Islas"]}, {cat:"Famosos", word:"Cristiano Ronaldo", hints:["Disciplina", "Gol"]},
{cat:"Famosos", word:"Hitler", hints:["Alemania", "Guerra"]}, {cat:"Famosos", word:"El Papa", hints:["Religión", "Blanco"]},
{cat:"Famosos", word:"La Roca", hints:["Fuerza", "WWE"]}, {cat:"Famosos", word:"Will Smith", hints:["Robot", "Cachetada"]},
{cat:"Famosos", word:"Angelina Jolie", hints:["Labios", "Actriz"]}, {cat:"Famosos", word:"Nicolás Maduro", hints:["Bigote", "Presidente"]},
{cat:"Famosos", word:"Van Gogh", hints:["Cielo", "Pintura"]}, {cat:"Famosos", word:"Speed", hints:["Streamer", "Rápido"]},