-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1525 lines (1392 loc) · 109 KB
/
Copy pathindex.html
File metadata and controls
1525 lines (1392 loc) · 109 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="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🇬🇳 Guinée Monitor v2.0</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"/>
<link href="https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@300;400;500&family=Saira+Condensed:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
:root{
--bg:#060a13;--bg2:#0c1220;--panel:#0e1726;--card:#121f35;--hover:#182540;
--gold:#e8b84b;--red:#e84b4b;--green:#4be885;--blue:#4b8be8;--cyan:#4be8c5;
--orange:#e87b4b;--purple:#9b4be8;--pink:#e84b9b;--fire:#ff6b35;
--txt:#dde4f0;--txt2:#7a8fa8;--txt3:#3a4a5a;
--border:rgba(232,184,75,.12);--border2:rgba(232,184,75,.28);
}
*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%;overflow:hidden;font-family:'Rajdhani',sans-serif;background:var(--bg);color:var(--txt)}
/* HEADER */
#hdr{height:50px;background:var(--bg2);border-bottom:1px solid var(--border);display:flex;align-items:center;padding:0 12px;gap:12px;flex-shrink:0;z-index:1000;position:relative}
.flag{display:flex;width:26px;height:17px;border-radius:2px;overflow:hidden;flex-shrink:0}
.flag span{flex:1}
.logo-txt{font-family:'Saira Condensed',sans-serif;font-size:18px;font-weight:700;letter-spacing:2px}
.logo-txt em{color:var(--gold);font-style:normal}
.v2badge{background:rgba(232,184,75,.15);border:1px solid rgba(232,184,75,.3);color:var(--gold);font-family:'IBM Plex Mono',monospace;font-size:8px;padding:2px 5px;border-radius:2px;letter-spacing:1px}
.div{width:1px;height:26px;background:var(--border)}
.live{display:flex;align-items:center;gap:5px;font-family:'IBM Plex Mono',monospace;font-size:10px;color:var(--green)}
.dot{width:6px;height:6px;border-radius:50%;background:var(--green);animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.chips{display:flex;gap:6px;flex:1;overflow:hidden}
.chip{display:flex;align-items:center;gap:5px;background:var(--card);border:1px solid var(--border);border-radius:3px;padding:3px 8px;font-family:'IBM Plex Mono',monospace;font-size:10px;white-space:nowrap;flex-shrink:0;cursor:default}
.cl{color:var(--txt3);font-size:9px;text-transform:uppercase;letter-spacing:.8px}
.cv{color:var(--gold);font-weight:500}
.cup{color:var(--green);font-size:9px}
.cdn{color:var(--red);font-size:9px}
#clock{font-family:'IBM Plex Mono',monospace;font-size:11px;color:var(--txt2);margin-left:auto;flex-shrink:0}
.hdr-btn{background:rgba(75,139,232,.12);border:1px solid rgba(75,139,232,.3);color:var(--blue);font-family:'Saira Condensed',sans-serif;font-size:12px;font-weight:600;letter-spacing:1px;padding:4px 10px;border-radius:3px;cursor:pointer;transition:all .15s;white-space:nowrap;flex-shrink:0}
.hdr-btn:hover{background:rgba(75,139,232,.25)}
.hdr-btn.cam{background:rgba(232,75,75,.1);border-color:rgba(232,75,75,.3);color:var(--red)}
.hdr-btn.cam:hover{background:rgba(232,75,75,.22)}
/* MAIN */
#main{flex:1;display:flex;overflow:hidden;height:calc(100vh - 50px)}
/* SIDEBAR */
#sb{width:236px;background:var(--panel);border-right:1px solid var(--border);display:flex;flex-direction:column;overflow-y:auto;flex-shrink:0;z-index:100}
.ss{border-bottom:1px solid var(--border);padding:9px 11px}
.st{font-family:'Saira Condensed',sans-serif;font-size:10px;font-weight:600;letter-spacing:1.8px;color:var(--txt3);text-transform:uppercase;margin-bottom:7px}
.lt{display:flex;align-items:center;gap:8px;padding:5px 6px;border-radius:3px;cursor:pointer;transition:background .15s;margin-bottom:1px}
.lt:hover{background:var(--hover)}
.lt.on{background:rgba(232,184,75,.06)}
.ldot{width:8px;height:8px;border-radius:50%;flex-shrink:0}
.ln{font-size:12px;color:var(--txt2);flex:1}
.lt.on .ln{color:var(--txt)}
.lc{font-family:'IBM Plex Mono',monospace;font-size:8px;color:var(--txt3);background:var(--card);padding:1px 4px;border-radius:2px}
.sw{width:24px;height:13px;background:var(--card);border-radius:7px;position:relative;flex-shrink:0;transition:background .2s}
.sw::after{content:'';position:absolute;width:9px;height:9px;border-radius:50%;background:var(--txt3);top:2px;left:2px;transition:all .2s}
.lt.on .sw{background:rgba(232,184,75,.2)}
.lt.on .sw::after{background:var(--gold);left:13px}
/* ECON BARS */
.rbar{display:flex;flex-direction:column;gap:3px}
.rr{display:flex;align-items:center;gap:6px}
.rn{font-size:10px;color:var(--txt2);width:78px;flex-shrink:0}
.rb{flex:1;height:3px;background:var(--card);border-radius:2px;overflow:hidden}
.rf{height:100%;border-radius:2px;transition:width 1s ease}
.rv{font-family:'IBM Plex Mono',monospace;font-size:8px;color:var(--txt3);width:38px;text-align:right}
/* COMMODITY */
.coms{display:flex;flex-direction:column;gap:2px}
.com{background:var(--card);border:1px solid var(--border);border-radius:3px;padding:6px 8px;display:flex;align-items:center;justify-content:space-between}
.cn2{font-size:9px;color:var(--txt3);letter-spacing:.5px;text-transform:uppercase}
.cp{font-family:'IBM Plex Mono',monospace;font-size:13px;color:var(--gold)}
.cc{font-family:'IBM Plex Mono',monospace;font-size:9px}
/* STATUS */
.dsr{display:flex;justify-content:space-between;padding:2px 0;font-size:10px;border-bottom:1px solid rgba(255,255,255,.03)}
.dst{color:var(--txt2)}
.dsl{font-family:'IBM Plex Mono',monospace;font-size:8px}
/* MAP */
#mc{flex:1;position:relative;overflow:hidden}
#map{width:100%;height:100%}
.leaflet-container{background:#060a10!important}
/* POPUP */
.leaflet-popup-content-wrapper{background:var(--panel)!important;border:1px solid var(--border2)!important;border-radius:4px!important;box-shadow:0 4px 30px rgba(0,0,0,.7)!important;color:var(--txt)!important;font-family:'Rajdhani',sans-serif!important}
.leaflet-popup-tip{background:var(--panel)!important}
.leaflet-popup-content{margin:11px 14px!important;min-width:190px;max-width:280px}
.pt{font-family:'Saira Condensed',sans-serif;font-size:15px;font-weight:700;color:var(--gold);margin-bottom:7px;line-height:1.2}
.pr{display:flex;justify-content:space-between;padding:3px 0;border-bottom:1px solid var(--border);font-size:12px}
.pr:last-child{border-bottom:none}
.pk{color:var(--txt2);flex-shrink:0;margin-right:8px}
.pv{color:var(--txt);font-weight:500;text-align:right;flex:1}
.ptag{display:inline-block;padding:2px 6px;border-radius:2px;font-size:9px;font-weight:700;letter-spacing:.8px;margin-bottom:6px;margin-right:3px}
/* MAP OVERLAYS */
.mow{position:absolute;bottom:32px;left:10px;z-index:500;display:flex;flex-direction:column;gap:4px;pointer-events:none}
.mpill{background:rgba(6,9,15,.9);border:1px solid var(--border);border-radius:3px;padding:3px 8px;font-family:'IBM Plex Mono',monospace;font-size:9px;display:flex;align-items:center;gap:6px;backdrop-filter:blur(5px)}
/* RIGHT PANEL */
#rp{width:288px;background:var(--panel);border-left:1px solid var(--border);display:flex;flex-direction:column;overflow:hidden;flex-shrink:0}
.tabs{display:flex;border-bottom:1px solid var(--border);overflow-x:auto}
.tabs::-webkit-scrollbar{display:none}
.tab{flex-shrink:0;padding:8px 10px;text-align:center;font-size:10px;letter-spacing:1px;color:var(--txt2);cursor:pointer;border-bottom:2px solid transparent;transition:all .2s;font-family:'Saira Condensed',sans-serif;font-weight:600}
.tab.on{color:var(--gold);border-bottom-color:var(--gold)}
.pc{flex:1;overflow-y:auto;padding:6px;display:none}
.pc.on{display:block}
/* NEWS */
.ni{background:var(--card);border:1px solid var(--border);border-radius:3px;padding:8px 9px;margin-bottom:4px;cursor:pointer;transition:all .15s}
.ni:hover{border-color:var(--border2);background:var(--hover)}
.ns{display:inline-block;padding:1px 5px;border-radius:2px;font-size:8px;font-weight:700;letter-spacing:.8px;margin-bottom:4px}
.sc{background:rgba(232,75,75,.18);color:var(--red)}
.sh{background:rgba(232,123,75,.18);color:var(--orange)}
.sm{background:rgba(232,184,75,.18);color:var(--gold)}
.sl{background:rgba(75,139,232,.18);color:var(--blue)}
.si{background:rgba(75,232,133,.18);color:var(--green)}
.nt{font-size:11px;line-height:1.4;margin-bottom:4px}
.nm{font-family:'IBM Plex Mono',monospace;font-size:8px;color:var(--txt3);display:flex;gap:6px}
.nsrc{color:var(--blue)}
/* STATS */
.sc2{background:var(--card);border:1px solid var(--border);border-radius:3px;padding:9px 11px;margin-bottom:4px}
.sc2t{font-size:9px;letter-spacing:.8px;color:var(--txt3);text-transform:uppercase;margin-bottom:4px}
.sc2v{font-family:'IBM Plex Mono',monospace;font-size:18px;font-weight:500;color:var(--gold)}
.sc2s{font-family:'IBM Plex Mono',monospace;font-size:9px;color:var(--txt2);margin-top:2px;line-height:1.4}
.sc2g{display:flex;gap:3px;margin-top:4px;align-items:flex-end;height:32px}
.bar{flex:1;background:rgba(232,184,75,.18);border-radius:1px 1px 0 0;min-width:2px;transition:height .5s ease}
.sec-title{font-family:'Saira Condensed',sans-serif;font-size:11px;font-weight:700;letter-spacing:1.5px;color:var(--txt3);text-transform:uppercase;padding:8px 0 5px;border-bottom:1px solid var(--border);margin-bottom:6px}
/* PROJECTS */
.proj{background:var(--card);border:1px solid var(--border);border-radius:3px;padding:8px 10px;margin-bottom:4px}
.proj-hdr{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:5px}
.proj-name{font-size:12px;font-weight:600;color:var(--txt);line-height:1.3;flex:1}
.proj-badge{padding:2px 6px;border-radius:2px;font-size:8px;font-weight:700;letter-spacing:.8px;flex-shrink:0;margin-left:5px}
.bact{background:rgba(75,232,133,.15);color:var(--green)}
.bcon{background:rgba(232,184,75,.15);color:var(--gold)}
.bpla{background:rgba(75,139,232,.15);color:var(--blue)}
.bsus{background:rgba(232,75,75,.15);color:var(--red)}
.proj-row{display:flex;justify-content:space-between;font-size:10px;padding:1px 0}
.proj-k{color:var(--txt3)}
.proj-v{color:var(--txt2);text-align:right;flex:1;margin-left:6px}
.prog-bar{height:3px;background:var(--bg);border-radius:2px;margin-top:4px;overflow:hidden}
.prog-fill{height:100%;border-radius:2px;transition:width 1s ease}
/* VIDEO MODAL */
#vid-overlay{display:none;position:fixed;inset:0;z-index:2000;background:rgba(3,6,12,.95);backdrop-filter:blur(8px);flex-direction:column}
#vid-overlay.open{display:flex}
#vid-hdr{height:52px;background:var(--bg2);border-bottom:1px solid var(--border);display:flex;align-items:center;padding:0 14px;gap:12px;flex-shrink:0}
#vid-close{margin-left:auto;background:rgba(232,75,75,.15);border:1px solid rgba(232,75,75,.35);color:var(--red);font-size:12px;padding:5px 14px;border-radius:3px;cursor:pointer;font-family:'IBM Plex Mono',monospace}
#vid-close:hover{background:rgba(232,75,75,.28)}
#vid-body{flex:1;overflow-y:auto;padding:14px;display:flex;flex-direction:column;gap:14px}
.vs{font-family:'Saira Condensed',sans-serif;font-size:10px;font-weight:600;letter-spacing:2px;color:var(--txt3);text-transform:uppercase;margin-bottom:8px;padding-bottom:5px;border-bottom:1px solid var(--border)}
.vgrid{display:grid;grid-template-columns:repeat(auto-fill,minmax(340px,1fr));gap:10px}
.vcard{background:var(--card);border:1px solid var(--border);border-radius:4px;overflow:hidden}
.vcard:hover{border-color:var(--border2)}
.vcard-hdr{display:flex;align-items:center;gap:8px;padding:7px 11px;background:var(--panel);border-bottom:1px solid var(--border)}
.vbadge{padding:2px 6px;border-radius:2px;font-size:8px;font-weight:700;letter-spacing:1px;flex-shrink:0}
.vlive{background:rgba(232,75,75,.2);color:var(--red)}
.vcam{background:rgba(75,197,232,.2);color:var(--cyan)}
.vweb{background:rgba(75,232,133,.2);color:var(--green)}
.vname{font-size:12px;font-weight:600;color:var(--txt);flex:1}
.vsub{font-size:9px;color:var(--txt2)}
.vframe{width:100%;aspect-ratio:16/9;border:none;background:#000;display:block}
.vcam-ph{width:100%;aspect-ratio:16/9;background:linear-gradient(135deg,#0a1220,#0e1a2e);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;color:var(--txt3)}
.vcam-ph .ico{font-size:28px;opacity:.4}
.vcam-ph .msg{font-size:10px;text-align:center;line-height:1.5;max-width:220px}
.vcam-ph .loc{font-family:'IBM Plex Mono',monospace;font-size:9px;color:var(--blue);opacity:.6}
.search-cam{display:flex;gap:8px;margin-bottom:10px}
.search-cam input{flex:1;background:var(--card);border:1px solid var(--border);border-radius:3px;padding:7px 10px;color:var(--txt);font-family:'Rajdhani',sans-serif;font-size:13px;outline:none}
.search-cam input:focus{border-color:var(--border2)}
.search-cam button{background:rgba(232,184,75,.15);border:1px solid var(--border);color:var(--gold);padding:7px 14px;border-radius:3px;cursor:pointer;font-family:'Saira Condensed',sans-serif;font-size:12px;font-weight:600;letter-spacing:1px}
.search-cam button:hover{background:rgba(232,184,75,.25)}
/* REGION MODAL */
#reg-overlay{display:none;position:fixed;inset:0;z-index:1500;background:rgba(3,6,12,.92);backdrop-filter:blur(6px);align-items:center;justify-content:center}
#reg-overlay.open{display:flex}
#reg-modal{background:var(--panel);border:1px solid var(--border2);border-radius:6px;width:780px;max-width:95vw;max-height:88vh;display:flex;flex-direction:column;overflow:hidden}
#reg-modal-hdr{background:var(--bg2);border-bottom:1px solid var(--border);padding:14px 18px;display:flex;align-items:center;gap:12px;flex-shrink:0}
#reg-modal-title{font-family:'Saira Condensed',sans-serif;font-size:22px;font-weight:700;color:var(--gold);letter-spacing:2px}
#reg-modal-sub{font-size:13px;color:var(--txt2);margin-top:2px}
#reg-close{margin-left:auto;background:rgba(232,75,75,.12);border:1px solid rgba(232,75,75,.3);color:var(--red);padding:5px 14px;border-radius:3px;cursor:pointer;font-family:'IBM Plex Mono',monospace;font-size:11px}
#reg-body{overflow-y:auto;padding:16px;display:grid;grid-template-columns:1fr 1fr;gap:12px}
.rmod-card{background:var(--card);border:1px solid var(--border);border-radius:4px;padding:12px 14px}
.rmod-t{font-size:9px;letter-spacing:1.5px;color:var(--txt3);text-transform:uppercase;margin-bottom:8px}
.rmod-row{display:flex;justify-content:space-between;padding:3px 0;font-size:12px;border-bottom:1px solid rgba(255,255,255,.03)}
.rmod-k{color:var(--txt2)}
.rmod-v{color:var(--txt);font-weight:500;text-align:right}
.rmod-full{grid-column:1/-1}
/* SCROLLBAR */
::-webkit-scrollbar{width:3px}
::-webkit-scrollbar-track{background:transparent}
::-webkit-scrollbar-thumb{background:var(--border);border-radius:2px}
.shimmer{background:linear-gradient(90deg,var(--card) 25%,var(--hover) 50%,var(--card) 75%);background-size:200% 100%;animation:sh 1.4s infinite;border-radius:3px;height:10px}
@keyframes sh{0%{background-position:200% 0}100%{background-position:-200% 0}}
</style>
</head>
<body>
<!-- HEADER -->
<header id="hdr">
<div class="flag"><span style="background:#CE1126"></span><span style="background:#FCD116"></span><span style="background:#009460"></span></div>
<div class="logo-txt">GUINÉE <em>MONITOR</em></div>
<div class="v2badge">v2.0</div>
<div class="div"></div>
<div class="live"><div class="dot"></div>LIVE</div>
<div class="chips">
<div class="chip"><span class="cl">GNF/USD</span><span class="cv" id="h-gnf">…</span></div>
<div class="chip"><span class="cl">EUR/GNF</span><span class="cv" id="h-eur">…</span></div>
<div class="chip"><span class="cl">Bauxite</span><span class="cv">~$35/t</span><span class="cup">▲0.8%</span></div>
<div class="chip"><span class="cl">Or XAU</span><span class="cv" id="h-gold">…</span><span id="h-gold-c" class="cup">…</span></div>
<div class="chip"><span class="cl">🌡 Conakry</span><span class="cv" id="h-wth">…</span></div>
<div class="chip"><span class="cl">⚠ Alertes</span><span style="color:var(--red);font-family:'IBM Plex Mono',monospace;font-size:10px" id="h-alerts">…</span></div>
</div>
<button class="hdr-btn cam" onclick="openVid()">📷 CAMÉRAS / MÉDIAS</button>
<div id="clock">--:--:-- UTC</div>
</header>
<div id="main">
<!-- SIDEBAR -->
<div id="sb">
<div class="ss">
<div class="st">Couches carte</div>
<div class="lt on" id="l-regions" onclick="tgl('regions',this)"><div class="ldot" style="background:#4b8be8"></div><span class="ln">Régions / Préfectures</span><div class="sw"></div></div>
<div class="lt on" id="l-routes" onclick="tgl('routes',this)"><div class="ldot" style="background:#e8b84b"></div><span class="ln">Routes nationales</span><span class="lc">8</span><div class="sw"></div></div>
<div class="lt on" id="l-mining" onclick="tgl('mining',this)"><div class="ldot" style="background:#ffd700"></div><span class="ln">Sites miniers</span><span class="lc">15</span><div class="sw"></div></div>
<div class="lt on" id="l-dams" onclick="tgl('dams',this)"><div class="ldot" style="background:#4be885"></div><span class="ln">Barrages / Énergie</span><span class="lc">5</span><div class="sw"></div></div>
<div class="lt on" id="l-tourism" onclick="tgl('tourism',this)"><div class="ldot" style="background:#e84b9b"></div><span class="ln">Sites touristiques</span><span class="lc">22</span><div class="sw"></div></div>
<div class="lt on" id="l-agri" onclick="tgl('agri',this)"><div class="ldot" style="background:#80d44b"></div><span class="ln">Projets agricoles</span><span class="lc">8</span><div class="sw"></div></div>
<div class="lt on" id="l-industry" onclick="tgl('industry',this)"><div class="ldot" style="background:#aaaaaa"></div><span class="ln">Sites industriels</span><span class="lc">7</span><div class="sw"></div></div>
<div class="lt on" id="l-military" onclick="tgl('military',this)"><div class="ldot" style="background:#e84b4b"></div><span class="ln">Installations mil.</span><span class="lc">6</span><div class="sw"></div></div>
<div class="lt on" id="l-incidents" onclick="tgl('incidents',this)"><div class="ldot" style="background:#e87b4b"></div><span class="ln">Incidents sécurité</span><span class="lc">6</span><div class="sw"></div></div>
<div class="lt on" id="l-health" onclick="tgl('health',this)"><div class="ldot" style="background:#e84b9b"></div><span class="ln">Santé / Épidémies</span><span class="lc">5</span><div class="sw"></div></div>
<div class="lt on" id="l-weather" onclick="tgl('weather',this)"><div class="ldot" style="background:#4be8c5"></div><span class="ln">Météo villes</span><span class="lc">8</span><div class="sw"></div></div>
<div class="lt on" id="l-fires" onclick="tgl('fires',this)"><div class="ldot" style="background:#ff6b35"></div><span class="ln">Feux NASA FIRMS</span><div class="sw"></div></div>
<div class="lt on" id="l-population" onclick="tgl('population',this)"><div class="ldot" style="background:#9b4be8"></div><span class="ln">Population</span><div class="sw"></div></div>
<div class="lt on" id="l-port" onclick="tgl('port',this)"><div class="ldot" style="background:#4be8c5"></div><span class="ln">Port de Conakry</span><div class="sw"></div></div>
<div class="lt" id="l-floods" onclick="tgl('floods',this)"><div class="ldot" style="background:#4b6be8"></div><span class="ln">Risques hydro.</span><div class="sw"></div></div>
<div class="lt" id="l-cameras" onclick="tgl('cameras',this)"><div class="ldot" style="background:#e84b4b"></div><span class="ln">Empl. caméras</span><span class="lc">12</span><div class="sw"></div></div>
</div>
<div class="ss">
<div class="st">Économie régionale</div>
<div class="rbar">
<div class="rr"><span class="rn">Boké</span><div class="rb"><div class="rf" style="width:96%;background:var(--gold)"></div></div><span class="rv" style="color:var(--gold)">Bauxite</span></div>
<div class="rr"><span class="rn">Conakry</span><div class="rb"><div class="rf" style="width:88%;background:var(--blue)"></div></div><span class="rv" style="color:var(--blue)">Commerce</span></div>
<div class="rr"><span class="rn">Kankan</span><div class="rb"><div class="rf" style="width:74%;background:#ffd700"></div></div><span class="rv" style="color:#ffd700">Or/Agri</span></div>
<div class="rr"><span class="rn">N'Zérékoré</span><div class="rb"><div class="rf" style="width:60%;background:var(--green)"></div></div><span class="rv" style="color:var(--green)">Fer/Forêt</span></div>
<div class="rr"><span class="rn">Labé</span><div class="rb"><div class="rf" style="width:46%;background:var(--purple)"></div></div><span class="rv" style="color:var(--purple)">Élevage</span></div>
<div class="rr"><span class="rn">Faranah</span><div class="rb"><div class="rf" style="width:38%;background:var(--cyan)"></div></div><span class="rv" style="color:var(--cyan)">Agric.</span></div>
<div class="rr"><span class="rn">Kindia</span><div class="rb"><div class="rf" style="width:52%;background:var(--orange)"></div></div><span class="rv" style="color:var(--orange)">Mix</span></div>
<div class="rr"><span class="rn">Mamou</span><div class="rb"><div class="rf" style="width:33%;background:var(--pink)"></div></div><span class="rv" style="color:var(--pink)">Transit</span></div>
</div>
</div>
<div class="ss">
<div class="st">Matières premières</div>
<div class="coms">
<div class="com"><div><div class="cn2">BAUXITE (t)</div><div class="cp">~$35</div></div><div class="cc cup">▲0.8%</div></div>
<div class="com"><div><div class="cn2">OR (oz)</div><div class="cp" id="sb-gold">…</div></div><div class="cc" id="sb-gold-c" style="color:var(--txt3)">…</div></div>
<div class="com"><div><div class="cn2">FER (t)</div><div class="cp">~$108</div></div><div class="cc cdn">▼1.2%</div></div>
<div class="com"><div><div class="cn2">ALUMINE (t)</div><div class="cp">~$310</div></div><div class="cc cup">▲0.3%</div></div>
<div class="com"><div><div class="cn2">DIAMANT (ct)</div><div class="cp">~$1,200</div></div><div class="cc" style="color:var(--txt3)">stable</div></div>
</div>
</div>
<div class="ss">
<div class="st">Statut données</div>
<div class="dsr"><span class="dst">Météo (Open-Meteo)</span><span class="dsl" style="color:var(--green)">● LIVE</span></div>
<div class="dsr"><span class="dst">Taux de change</span><span class="dsl" style="color:var(--green)">● LIVE</span></div>
<div class="dsr"><span class="dst">Banque Mondiale</span><span class="dsl" style="color:var(--green)">● API</span></div>
<div class="dsr"><span class="dst">Miniers (ITIE)</span><span class="dsl" style="color:var(--gold)">◑ VÉRIF.</span></div>
<div class="dsr"><span class="dst">NASA FIRMS</span><span class="dsl" style="color:var(--gold)">◑ 24H</span></div>
<div class="dsr"><span class="dst">ACLED sécurité</span><span class="dsl" style="color:var(--gold)">◑ HEBDO</span></div>
<div class="dsr"><span class="dst">OSM Routes</span><span class="dsl" style="color:var(--gold)">◑ MENSUEL</span></div>
<div class="dsr"><span class="dst">Tourisme</span><span class="dsl" style="color:var(--gold)">◑ STATIQUE</span></div>
<div class="dsr"><span class="dst">Militaire</span><span class="dsl" style="color:var(--orange)">○ STATIQUE</span></div>
<div style="margin-top:5px;font-size:9px;color:var(--txt3);font-family:'IBM Plex Mono',monospace">
Dernière MAJ: <span id="last-update">…</span>
</div>
</div>
</div>
<!-- MAP -->
<div id="mc">
<div id="map"></div>
<!-- WEATHER OVERLAY -->
<div class="mow" id="mow"></div>
<!-- LÉGENDE BOUTON -->
<div id="leg-toggle" onclick="tglLegend()">📍 LÉGENDE</div>
<!-- LÉGENDE -->
<div id="legend">
<div class="leg-ttl">LÉGENDE</div>
<div class="leg-sec">ÉTAT DES ROUTES</div>
<div class="leg-row"><div class="leg-l" style="border-top:4px solid #f5c842"></div>Bitumé — bon état</div>
<div class="leg-row"><div class="leg-l" style="border-top:3px solid #e87b4b"></div>Mixte — bitume/piste</div>
<div class="leg-row"><div class="leg-l" style="border-top:2px dashed #888"></div>Piste — dégradé</div>
<div class="leg-sec">RESSOURCES MINIÈRES</div>
<div class="leg-row"><div class="leg-c" style="background:#ffd700;border:2px solid #ffd700"></div>Bauxite / Or</div>
<div class="leg-row"><div class="leg-c" style="background:#e87b4b;border:2px solid #e87b4b"></div>Minerai de fer</div>
<div class="leg-row"><div class="leg-c" style="background:#aaa;border:2px solid #aaa"></div>Alumine / Divers</div>
<div class="leg-sec">INFRASTRUCTURES</div>
<div class="leg-row"><div class="leg-c" style="background:#4be885;border:2px solid #4be885"></div>Barrage / Énergie</div>
<div class="leg-row"><div class="leg-c" style="background:#4be8c5;border:2px solid #4be8c5"></div>Port maritime</div>
<div class="leg-row"><div class="leg-s" style="background:#aaa;border:2px solid #aaa"></div>Site industriel</div>
<div class="leg-sec">POINTS D'INTÉRÊT</div>
<div class="leg-row"><div class="leg-s" style="background:#e84b9b;border:2px solid #e84b9b"></div>Site touristique</div>
<div class="leg-row"><div class="leg-c" style="background:#80d44b;border:2px solid #80d44b"></div>Projet agricole</div>
<div class="leg-sec">SURVEILLANCE</div>
<div class="leg-row"><div class="leg-c" style="background:#e84b4b;border:2px solid #e84b4b"></div>Militaire</div>
<div class="leg-row"><div class="leg-c" style="background:#e87b4b;border:2px solid #e87b4b"></div>Incident sécurité</div>
<div class="leg-row"><div class="leg-c" style="background:#e84b9b;border:2px solid #e84b9b"></div>Santé / Épidémie</div>
<div class="leg-row"><div class="leg-c" style="background:#ff6b35;opacity:.9"></div>Feu satellite (NASA)</div>
<div class="leg-row"><div class="leg-c" style="background:#9b4be8;opacity:.4;border:2px solid #9b4be8;width:20px;height:20px"></div>Population (taille ∝ hab.)</div>
<div class="leg-sec">FRONTIÈRES & CÂBLES</div>
<div class="leg-row"><div class="leg-l" style="border-top:2px solid #e8b84b"></div>Frontière Guinée</div>
<div class="leg-row"><div class="leg-l" style="border-top:2px dashed #4b8be8"></div>Câble sous-marin ACE</div>
</div>
</div>
<!-- RIGHT PANEL -->
<div id="rp">
<div class="tabs">
<div class="tab on" onclick="stab('news',this)">ACTUS</div>
<div class="tab" onclick="stab('stats',this)">STATS</div>
<div class="tab" onclick="stab('projects',this)">PROJETS</div>
<div class="tab" onclick="stab('alerts',this)">ALERTES</div>
<div class="tab" onclick="stab('wb',this)">INDICATEURS</div>
<div class="tab" onclick="stab('internet',this)">🌐 NET</div>
</div>
<!-- NEWS -->
<div class="pc on" id="tab-news">
<div id="nfeed"><div style="padding:12px;text-align:center"><div class="shimmer" style="margin-bottom:5px"></div><div class="shimmer" style="width:80%;margin-bottom:5px"></div><div style="font-size:11px;color:var(--txt2);margin-top:8px">Chargement…</div></div></div>
</div>
<!-- STATS -->
<div class="pc" id="tab-stats">
<div class="sec-title">DÉMOGRAPHIE</div>
<div class="sc2"><div class="sc2t">Population totale (2024 est.)</div><div class="sc2v">14.1 Million</div><div class="sc2s">Densité 57 hab/km² · Superficie 245,857 km²</div></div>
<div class="sc2"><div class="sc2t">Population urbaine</div><div class="sc2v">38.2%</div><div class="sc2s">Conakry ~2.5M · Taux d'urbanisation +5%/an</div></div>
<div class="sc2"><div class="sc2t">Âge médian</div><div class="sc2v">18.6 ans</div><div class="sc2s">65% de la population a moins de 25 ans</div></div>
<div class="sc2"><div class="sc2t">Croissance démogr.</div><div class="sc2v">+2.8%/an</div><div class="sc2s">Taux de natalité 38.4‰ · Mortalité 8.9‰</div></div>
<div class="sc2"><div class="sc2t">Groupes ethniques</div><div class="sc2v">24 ethnies</div><div class="sc2s">Peul 33% · Malinké 29% · Soussou 21% · autres 17%</div></div>
<div class="sec-title">ÉCONOMIE</div>
<div class="sc2"><div class="sc2t">PIB nominal (2023)</div><div class="sc2v">$9.2 Milliards</div><div class="sc2s">Croissance +5.6% · PIB/habitant ~$652 USD</div></div>
<div class="sc2"><div class="sc2t">Inflation (2024)</div><div class="sc2v">~11.8%</div><div class="sc2s">Source: FMI/Banque Mondiale</div></div>
<div class="sc2"><div class="sc2t">Chômage</div><div class="sc2v">~5.6%</div><div class="sc2s">Sous-emploi estimé à ~35% (secteur informel)</div></div>
<div class="sc2"><div class="sc2t">Dette ext. / PIB</div><div class="sc2v">~78%</div><div class="sc2s">Allègement PPTE complété · Chine créancier principal</div></div>
<div class="sc2"><div class="sc2t">Exportations (2023)</div><div class="sc2v">~$4.2 Mrd</div><div class="sc2s">Bauxite 80% · Or 12% · Diamants · Alumine</div></div>
<div class="sec-title">SECTEUR MINIER</div>
<div class="sc2"><div class="sc2t">Production bauxite</div><div class="sc2v">~90 Mt/an</div><div class="sc2s">🥇 1ᵉʳ producteur mondial · 2/3 des réserves mondiales</div></div>
<div class="sc2"><div class="sc2t">Réserves bauxite</div><div class="sc2v">25 Gt</div><div class="sc2s">Boké, Kindia, Fria, Télimélé, Dalaba</div></div>
<div class="sc2"><div class="sc2t">Simandou (fer)</div><div class="sc2v">2.4 Gt</div><div class="sc2s">Teneur 65%+ · Production cible 60 Mt/an · Livraison 2026</div></div>
<div class="sc2"><div class="sc2t">Production or</div><div class="sc2v">~25 t/an</div><div class="sc2s">Siguiri (AngloGold) · Léro (Nordgold) · Mandiana</div></div>
<div class="sc2"><div class="sc2t">Revenus miniers/PIB</div><div class="sc2v">~22%</div><div class="sc2s">Source: ITIE Guinée 2023</div></div>
<div class="sec-title">ÉNERGIE & INFRA</div>
<div class="sc2"><div class="sc2t">Capacité électrique</div><div class="sc2v">765 MW</div><div class="sc2s">Souapiti 450 · Kaléta 240 · Garafiri 75 · Fomi (en cours)</div></div>
<div class="sc2"><div class="sc2t">Taux d'électrification</div><div class="sc2v">45%</div><div class="sc2s">Urbain ~70% · Rural ~20% · Délestage chronique</div></div>
<div class="sc2"><div class="sc2t">Réseau routier</div><div class="sc2v">44,348 km</div><div class="sc2s">~8% bitumé · 40% praticable saison sèche seulement</div></div>
<div class="sc2"><div class="sc2t">Accès eau potable</div><div class="sc2v">67%</div><div class="sc2s">OMS/UNICEF 2022 · Rural 52% · Urbain 83%</div></div>
<div class="sec-title">SOCIAL & SANTÉ</div>
<div class="sc2"><div class="sc2t">IDH (2023)</div><div class="sc2v">0.465</div><div class="sc2s">Rang 178/191 · Catégorie "faible développement"</div></div>
<div class="sc2"><div class="sc2t">Espérance de vie</div><div class="sc2v">63.1 ans</div><div class="sc2s">Femmes 65.2 · Hommes 61.1 · PNUD 2023</div></div>
<div class="sc2"><div class="sc2t">Mortalité infantile</div><div class="sc2v">62/1000</div><div class="sc2s">Moins de 5 ans · Amélioration de 40% depuis 2000</div></div>
<div class="sc2"><div class="sc2t">Taux d'alphabétisation</div><div class="sc2v">45%</div><div class="sc2s">Hommes 61% · Femmes 30% · UNESCO 2022</div></div>
<div class="sc2"><div class="sc2t">Taux scolarisation</div><div class="sc2v">72%</div><div class="sc2s">Primaire · Secondaire 38% · Universitaire 12%</div></div>
<div class="sec-title">DÉFENSE (sources ouvertes)</div>
<div class="sc2"><div class="sc2t">Forces armées (FARG)</div><div class="sc2v">~45,000</div><div class="sc2s">Armée terre · Gendarmerie · Marine · Air · Garde prés.</div></div>
<div class="sc2"><div class="sc2t">Budget défense 2023</div><div class="sc2v">~$180M</div><div class="sc2s">~2% du PIB · Source: SIPRI 2023</div></div>
<div class="sc2"><div class="sc2t">Gouvernance actuelle</div><div class="sc2v">CNRD</div><div class="sc2s">Col. Mamadi Doumbouya — Coup d'état sept. 2021 · Transition</div></div>
</div>
<!-- PROJECTS -->
<div class="pc" id="tab-projects">
<div class="sec-title">⛏️ GRANDS PROJETS MINIERS</div>
<div class="proj">
<div class="proj-hdr"><div class="proj-name">🚂 Simandou — Infrastructure Rail & Port</div><span class="proj-badge bcon">EN COURS</span></div>
<div class="proj-row"><span class="proj-k">Investissement</span><span class="proj-v">$20+ Milliards USD</span></div>
<div class="proj-row"><span class="proj-k">Opérateurs</span><span class="proj-v">Rio Tinto · Chinalco · SMB-Winning</span></div>
<div class="proj-row"><span class="proj-k">Voie ferrée</span><span class="proj-v">650 km Simandou → Moribaya</span></div>
<div class="proj-row"><span class="proj-k">Production cible</span><span class="proj-v">60 Mt fer/an dès 2026</span></div>
<div class="prog-bar"><div class="prog-fill" style="width:38%;background:var(--gold)"></div></div>
<div style="font-size:9px;color:var(--txt3);margin-top:3px">Avancement 38% · Mise en service 2026</div>
</div>
<div class="proj">
<div class="proj-hdr"><div class="proj-name">🟡 SMB-Winning — Expansion Boké</div><span class="proj-badge bact">ACTIF</span></div>
<div class="proj-row"><span class="proj-k">Production</span><span class="proj-v">60+ Mt bauxite/an</span></div>
<div class="proj-row"><span class="proj-k">Terminal Port</span><span class="proj-v">Dapilon — export vers Chine</span></div>
<div class="proj-row"><span class="proj-k">Emplois</span><span class="proj-v">~15,000 directs + indirects</span></div>
<div class="prog-bar"><div class="prog-fill" style="width:100%;background:var(--green)"></div></div>
</div>
<div class="proj">
<div class="proj-hdr"><div class="proj-name">🟡 GAC — Guinea Alumina Corp.</div><span class="proj-badge bact">ACTIF</span></div>
<div class="proj-row"><span class="proj-k">Opérateur</span><span class="proj-v">EGA (Émirats Arabes Unis)</span></div>
<div class="proj-row"><span class="proj-k">Production</span><span class="proj-v">12 Mt bauxite/an</span></div>
<div class="proj-row"><span class="proj-k">Port dédié</span><span class="proj-v">Dapilon (Boké)</span></div>
<div class="prog-bar"><div class="prog-fill" style="width:100%;background:var(--green)"></div></div>
</div>
<div class="proj">
<div class="proj-hdr"><div class="proj-name">🔴 Mont Nimba — Minerai de fer</div><span class="proj-badge bsus">BLOQUÉ</span></div>
<div class="proj-row"><span class="proj-k">Réserves</span><span class="proj-v">600 Mt · 64% Fe</span></div>
<div class="proj-row"><span class="proj-k">Blocage</span><span class="proj-v">Réserve UNESCO / Bats olingo</span></div>
<div class="proj-row"><span class="proj-k">Opérateur</span><span class="proj-v">SMFG / ArcelorMittal</span></div>
<div class="prog-bar"><div class="prog-fill" style="width:5%;background:var(--red)"></div></div>
<div style="font-size:9px;color:var(--red);margin-top:3px">En attente d'autorisation UNESCO</div>
</div>
<div class="proj">
<div class="proj-hdr"><div class="proj-name">🟡 Dian-Dian — Bauxite EGA</div><span class="proj-badge bpla">DEV.</span></div>
<div class="proj-row"><span class="proj-k">Réserves est.</span><span class="proj-v">900 Mt</span></div>
<div class="proj-row"><span class="proj-k">Cible</span><span class="proj-v">30 Mt/an à terme</span></div>
<div class="prog-bar"><div class="prog-fill" style="width:22%;background:var(--blue)"></div></div>
</div>
<div class="sec-title">⚡ PROJETS ÉNERGIE</div>
<div class="proj">
<div class="proj-hdr"><div class="proj-name">💧 Barrage de Fomi</div><span class="proj-badge bcon">EN COURS</span></div>
<div class="proj-row"><span class="proj-k">Puissance</span><span class="proj-v">90 MW · Niger supérieur</span></div>
<div class="proj-row"><span class="proj-k">Constructeur</span><span class="proj-v">CHEC (Chine) / ENCO</span></div>
<div class="proj-row"><span class="proj-k">Financement</span><span class="proj-v">Exim Bank Chine + État GN</span></div>
<div class="prog-bar"><div class="prog-fill" style="width:45%;background:var(--gold)"></div></div>
<div style="font-size:9px;color:var(--txt3);margin-top:3px">Avancement 45% · Livraison 2025</div>
</div>
<div class="proj">
<div class="proj-hdr"><div class="proj-name">💧 Barrage d'Amaria</div><span class="proj-badge bpla">PLANIFIÉ</span></div>
<div class="proj-row"><span class="proj-k">Puissance</span><span class="proj-v">200 MW · Konkoure</span></div>
<div class="proj-row"><span class="proj-k">Objectif</span><span class="proj-v">Export vers Sénégal / OMVG</span></div>
<div class="prog-bar"><div class="prog-fill" style="width:8%;background:var(--blue)"></div></div>
</div>
<div class="proj">
<div class="proj-hdr"><div class="proj-name">☀️ Centrales solaires — PNUD</div><span class="proj-badge bcon">EN COURS</span></div>
<div class="proj-row"><span class="proj-k">Zones</span><span class="proj-v">Labé · Kankan · Faranah</span></div>
<div class="proj-row"><span class="proj-k">Capacité</span><span class="proj-v">50 MW (phase 1)</span></div>
<div class="proj-row"><span class="proj-k">Financement</span><span class="proj-v">Banque Mondiale / UE</span></div>
<div class="prog-bar"><div class="prog-fill" style="width:30%;background:var(--gold)"></div></div>
</div>
<div class="sec-title">🌾 PROJETS AGRICOLES</div>
<div class="proj">
<div class="proj-hdr"><div class="proj-name">🌴 SOGUIPAH — Hévéa & Palmier</div><span class="proj-badge bact">ACTIF</span></div>
<div class="proj-row"><span class="proj-k">Zone</span><span class="proj-v">Yomou / Guinée Forestière</span></div>
<div class="proj-row"><span class="proj-k">Surface</span><span class="proj-v">25,000 ha plantations</span></div>
<div class="proj-row"><span class="proj-k">Emplois</span><span class="proj-v">~8,000 directs</span></div>
<div class="prog-bar"><div class="prog-fill" style="width:80%;background:var(--green)"></div></div>
</div>
<div class="proj">
<div class="proj-hdr"><div class="proj-name">🌾 Plaine de Koba — Riz irrigué</div><span class="proj-badge bcon">EN COURS</span></div>
<div class="proj-row"><span class="proj-k">Zone</span><span class="proj-v">Basse Guinée · Côte</span></div>
<div class="proj-row"><span class="proj-k">Surface</span><span class="proj-v">50,000 ha cultivables</span></div>
<div class="proj-row"><span class="proj-k">Financement</span><span class="proj-v">BAD · Banque Mondiale</span></div>
<div class="prog-bar"><div class="prog-fill" style="width:55%;background:var(--green)"></div></div>
</div>
<div class="proj">
<div class="proj-hdr"><div class="proj-name">🐄 Fouta Djallon — Élevage PADER</div><span class="proj-badge bcon">EN COURS</span></div>
<div class="proj-row"><span class="proj-k">Zone</span><span class="proj-v">Labé · Pita · Mamou · Dalaba</span></div>
<div class="proj-row"><span class="proj-k">Cheptel cible</span><span class="proj-v">+15% production bovine</span></div>
<div class="proj-row"><span class="proj-k">Financement</span><span class="proj-v">FIDA / Banque Mondiale</span></div>
<div class="prog-bar"><div class="prog-fill" style="width:60%;background:var(--green)"></div></div>
</div>
<div class="sec-title">🏭 PROJETS INDUSTRIELS</div>
<div class="proj">
<div class="proj-hdr"><div class="proj-name">🏗️ Zone Économique Spéciale Matakong</div><span class="proj-badge bpla">PLANIFIÉ</span></div>
<div class="proj-row"><span class="proj-k">Zone</span><span class="proj-v">Îles Matakong · Basse Guinée</span></div>
<div class="proj-row"><span class="proj-k">Investissement</span><span class="proj-v">$2+ Milliards</span></div>
<div class="proj-row"><span class="proj-k">Focus</span><span class="proj-v">Aluminium · Transformation minière</span></div>
<div class="prog-bar"><div class="prog-fill" style="width:10%;background:var(--blue)"></div></div>
</div>
<div class="proj">
<div class="proj-hdr"><div class="proj-name">🚢 Extension Port Conakry</div><span class="proj-badge bcon">EN COURS</span></div>
<div class="proj-row"><span class="proj-k">Objectif</span><span class="proj-v">5 Mt/an (contre 2.5 actuellement)</span></div>
<div class="proj-row"><span class="proj-k">Financement</span><span class="proj-v">Bolloré + État guinéen</span></div>
<div class="prog-bar"><div class="prog-fill" style="width:40%;background:var(--gold)"></div></div>
</div>
<div class="proj">
<div class="proj-hdr"><div class="proj-name">🛣️ Route Conakry–N'Zérékoré (RN4)</div><span class="proj-badge bcon">EN COURS</span></div>
<div class="proj-row"><span class="proj-k">Distance</span><span class="proj-v">1,050 km</span></div>
<div class="proj-row"><span class="proj-k">Financement</span><span class="proj-v">Exim Bank Chine</span></div>
<div class="proj-row"><span class="proj-k">Sections</span><span class="proj-v">Phases par tronçons</span></div>
<div class="prog-bar"><div class="prog-fill" style="width:35%;background:var(--gold)"></div></div>
</div>
</div>
<!-- ALERTS -->
<div class="pc" id="tab-alerts">
<div id="afeed"></div>
</div>
<!-- WORLD BANK INDICATORS -->
<div class="pc" id="tab-wb">
<div class="sec-title">INDICATEURS BANQUE MONDIALE — LIVE API</div>
<div id="wb-content">
<div style="padding:12px;text-align:center"><div class="shimmer" style="margin-bottom:5px"></div><div class="shimmer" style="width:75%;margin-bottom:5px"></div><div style="font-size:10px;color:var(--txt2);margin-top:6px">Chargement API Banque Mondiale…</div></div>
</div>
</div>
<!-- INTERNET TAB -->
<div class="pc" id="tab-internet">
<div class="sec-title">🌐 INFRASTRUCTURE INTERNET — GUINÉE</div>
<div class="sc2" style="border-color:rgba(75,139,232,.3)">
<div class="sc2t">⚠️ VULNÉRABILITÉ CRITIQUE</div>
<div class="sc2v" style="color:var(--red);font-size:14px">1 SEUL CÂBLE SOUS-MARIN</div>
<div class="sc2s" style="color:var(--orange)">La Guinée dépend uniquement du câble ACE — toute coupure = panne nationale. Incident confirmé le 14 mars 2024.</div>
</div>
<div class="sec-title">📡 CÂBLE SOUS-MARIN</div>
<div class="sc2">
<div class="sc2t">Câble ACE — Africa Coast to Europe</div>
<div class="sc2v">17,000 km</div>
<div class="sc2s">France (Penmarch) → Afrique du Sud · 24 pays · 20 opérateurs<br>Mis en service : 15 décembre 2012</div>
</div>
<div class="sc2">
<div class="sc2t">Point d'atterrage — Guinée</div>
<div class="sc2v">Kipé, Conakry</div>
<div class="sc2s">Opérateur national : GUILAB · Backbone : SOGEB (État)<br>Seul accès international de la Guinée</div>
</div>
<div class="sc2">
<div class="sc2t">Incident majeur — 14 mars 2024</div>
<div class="sc2v" style="color:var(--red)">PANNE ACE</div>
<div class="sc2s">Glissement de terrain sous-marin côte Côte d'Ivoire → rupture ACE + WACS + SAT3 + MainOne. Guinée impactée ~30 min. 13 pays africains touchés.</div>
</div>
<div class="sc2">
<div class="sc2t">IXP-GUINÉE — Point d'échange internet</div>
<div class="sc2v">Conakry</div>
<div class="sc2s">Échange de trafic local — réduit la latence interne<br>Évite le transit par l'étranger pour trafic local</div>
</div>
<div class="sc2">
<div class="sc2t">Djoliba Cable (en cours)</div>
<div class="sc2v">🚧 Déploiement</div>
<div class="sc2s">Câble pan-Afrique Ouest · Guinée + 7 pays (BF, CIV, Ghana, Liberia, Mali, Nigeria, Sénégal). Redondance future pour la Guinée.</div>
</div>
<div class="sec-title">📶 VITESSES INTERNET (Q1 2025)</div>
<div class="sc2">
<div class="sc2t">Mobile — Orange Guinée (meilleur opérateur)</div>
<div class="sc2v">6.6 Mbps</div>
<div class="sc2s">Download moyen · Upload 11.6 Mbps · Ping 133ms<br>Source: SpeedGEO.net Q1 2025</div>
</div>
<div class="sc2">
<div class="sc2t">Fixe — Starlink (meilleure vitesse)</div>
<div class="sc2v">24 Mbps</div>
<div class="sc2s">Download moyen Q1 2025 · MouNa upload 12.1 Mbps<br>Starlink disponible — solution haut débit croissante</div>
</div>
<div class="sc2">
<div class="sc2t">Classement mondial</div>
<div class="sc2v">~170e/180</div>
<div class="sc2s">Parmi les plus lents au monde · Moyenne globale 2025 : 102 Mbps fixe · 92 Mbps mobile</div>
</div>
<div class="sec-title">📱 OPÉRATEURS TÉLÉCOMS</div>
<div class="sc2">
<div class="sc2t">Orange Guinée</div>
<div class="sc2v">~45% parts de marché</div>
<div class="sc2s">4G LTE déployé Conakry + grandes villes · Meilleure couverture mobile</div>
</div>
<div class="sc2">
<div class="sc2t">MTN Guinée</div>
<div class="sc2v">~30% parts de marché</div>
<div class="sc2s">4G Conakry · Réseau en expansion · Transferts mobile money</div>
</div>
<div class="sc2">
<div class="sc2t">Cellcom / Intercel</div>
<div class="sc2v">~15% parts de marché</div>
<div class="sc2s">Opérateurs locaux · Couverture plus limitée</div>
</div>
<div class="sc2">
<div class="sc2t">5G — Statut 2025</div>
<div class="sc2v" style="color:var(--gold)">⏳ Consultation</div>
<div class="sc2s">ARPT a ouvert la consultation nationale 5G en 2024 · Attribution de spectre à venir · Déploiement estimé 2026-2027</div>
</div>
<div class="sec-title">🔒 LIBERTÉ INTERNET & RESTRICTIONS</div>
<div class="sc2">
<div class="sc2t">Restrictions internet</div>
<div class="sc2v" style="color:var(--orange)">PARTIEL</div>
<div class="sc2s">Pas de blocage systématique comme en Chine. Coupures ciblées lors de troubles politiques (2019-2023). Contexte CNRD post-coup 2021 — vigilance.</div>
</div>
<div class="sc2">
<div class="sc2t">Régulateur</div>
<div class="sc2v">ARPT</div>
<div class="sc2s">Autorité de Régulation des Postes et Télécommunications<br>Cybersécurité : ANSSI · Plateforme DJAMA SUTURA (hotline 1017)</div>
</div>
<div class="sc2">
<div class="sc2t">Pénétration internet (2024)</div>
<div class="sc2v">~27%</div>
<div class="sc2s">~3.8M utilisateurs sur 14.1M hab. · Mobile dominant · Fixe < 1%<br>Stratégie numérique gouvernementale 2023-2027</div>
</div>
<div class="sc2">
<div class="sc2t">Domaine national</div>
<div class="sc2v">.gn</div>
<div class="sc2s">Géré par ANDE (technique) + NIC.GN (admin) · Hébergement localisé à Conakry</div>
</div>
<div style="margin-top:8px;background:var(--card);border:1px solid var(--border);border-radius:3px;padding:9px 11px">
<div class="sc2t">🔗 LIENS UTILES — SUIVI LIVE</div>
<div style="display:flex;flex-direction:column;gap:4px;margin-top:6px">
<a href="https://radar.cloudflare.com/gn" target="_blank" style="color:var(--blue);font-size:11px;text-decoration:none">📊 Cloudflare Radar — Trafic internet Guinée live ↗</a>
<a href="https://www.speedtest.net/global-index" target="_blank" style="color:var(--blue);font-size:11px;text-decoration:none">⚡ Ookla Speedtest — Classement mondial ↗</a>
<a href="https://internetoutage.org/" target="_blank" style="color:var(--blue);font-size:11px;text-decoration:none">🚨 Internet Outage — Pannes en temps réel ↗</a>
<a href="https://ace-submarinecable.com" target="_blank" style="color:var(--blue);font-size:11px;text-decoration:none">🔵 ACE Submarine Cable — Statut officiel ↗</a>
</div>
</div>
</div>
</div><!-- fin #rp -->
</div>
<!-- VIDEO MODAL -->
<div id="vid-overlay">
<div id="vid-hdr">
<div class="flag"><span style="background:#CE1126"></span><span style="background:#FCD116"></span><span style="background:#009460"></span></div>
<div style="font-family:'Saira Condensed',sans-serif;font-size:17px;font-weight:700;letter-spacing:2px;color:var(--gold)">📷 CAMÉRAS · MÉDIAS · LIVE GUINÉE</div>
<button id="vid-close" onclick="closeVid()">✕ FERMER</button>
</div>
<div id="vid-body">
<!-- SEARCH -->
<div>
<div class="vs">🔍 RECHERCHE DE CAMÉRAS PUBLIQUES</div>
<div class="search-cam">
<input id="cam-search" type="text" placeholder="Rechercher sur Insecam, Shodan… (ex: Conakry, Guinea)">
<button onclick="searchCam()">CHERCHER</button>
</div>
<div id="cam-results" style="font-size:11px;color:var(--txt2);padding:5px 0">
Tapez une ville ou un lieu pour rechercher des caméras IP publiques.
<br><br>
<span style="color:var(--txt3);font-size:10px">ℹ️ La Guinée dispose de très peu de caméras publiques référencées actuellement. Nous afficherons toutes celles disponibles.</span>
</div>
</div>
<!-- LIVE TV -->
<div>
<div class="vs">📺 TÉLÉVISIONS GUINÉENNES — LIVE</div>
<div class="vgrid">
<div class="vcard">
<div class="vcard-hdr"><span class="vbadge vlive">● LIVE</span><span class="vname">RTG 1 — Radio Télévision Guinée</span><span class="vsub">TV Publique Nationale</span></div>
<iframe class="vframe" src="https://www.youtube.com/embed/live_stream?channel=UCExBHZ9CjFtWqWbKTNMqS5g&autoplay=1&mute=1" allowfullscreen allow="autoplay"></iframe>
</div>
<div class="vcard">
<div class="vcard-hdr"><span class="vbadge vlive">● LIVE</span><span class="vname">Espace TV Guinée</span><span class="vsub">TV Privée — Conakry</span></div>
<iframe class="vframe" src="https://www.youtube.com/embed/live_stream?channel=UCMsFKwxfosayYR73hhFyf2Q&autoplay=1&mute=1" allowfullscreen allow="autoplay"></iframe>
</div>
<div class="vcard">
<div class="vcard-hdr"><span class="vbadge vlive">● LIVE</span><span class="vname">Guinée 7 TV</span><span class="vsub">Actualités Guinée</span></div>
<iframe class="vframe" src="https://www.youtube.com/embed/live_stream?channel=UCvDSwdNGgHSRLYtQMdKbqDA&autoplay=1&mute=1" allowfullscreen allow="autoplay"></iframe>
</div>
<div class="vcard">
<div class="vcard-hdr"><span class="vbadge vlive">● LIVE</span><span class="vname">RFI Afrique — Guinée</span><span class="vsub">Radio France Internationale</span></div>
<iframe class="vframe" src="https://www.youtube.com/embed/live_stream?channel=UCgGHiivDqDCCFQNaS2rAplw&autoplay=1&mute=1" allowfullscreen allow="autoplay"></iframe>
</div>
</div>
</div>
<!-- CAMERAS CONAKRY -->
<div>
<div class="vs">📷 CAMÉRAS DISPONIBLES — CONAKRY & GUINÉE</div>
<div style="background:rgba(232,184,75,.07);border:1px solid rgba(232,184,75,.25);border-radius:4px;padding:10px 14px;margin-bottom:12px;font-size:11px;line-height:1.7;color:var(--txt2)">
ℹ️ <strong style="color:var(--gold)">Situation réelle :</strong> La Guinée ne dispose pas de réseau de caméras publiques avec flux ouverts. Aucune caméra répertoriée sur Insecam (code GN). Les options ci-dessous représentent ce qui est <strong style="color:var(--txt)">réellement accessible</strong> aujourd'hui.
</div>
<div class="vgrid">
<!-- Caméra potentielle via YouTube live Conakry -->
<div class="vcard">
<div class="vcard-hdr"><span class="vbadge vlive">● RECHERCHE</span><span class="vname">Caméras IP publiques Guinée</span><span class="vsub">Insecam.org — base mondiale</span></div>
<div class="vcam-ph" style="cursor:pointer" onclick="window.open('http://www.insecam.org/en/bycountry/GN/','_blank')">
<div class="ico">🔍</div>
<div class="msg" style="color:var(--txt)">Cliquer pour chercher des caméras<br>IP publiques en Guinée sur Insecam</div>
<div class="loc" style="color:var(--gold)">→ insecam.org/en/bycountry/GN/</div>
</div>
</div>
<div class="vcard">
<div class="vcard-hdr"><span class="vbadge vlive">● RECHERCHE</span><span class="vname">Caméras RTSP — Shodan</span><span class="vsub">Port 554 · Guinée (GN)</span></div>
<div class="vcam-ph" style="cursor:pointer" onclick="window.open('https://www.shodan.io/search?query=country%3AGN+port%3A554','_blank')">
<div class="ico">🛰️</div>
<div class="msg" style="color:var(--txt)">Rechercher des flux RTSP<br>accessibles en Guinée sur Shodan</div>
<div class="loc" style="color:var(--gold)">→ shodan.io · port 554 · GN</div>
</div>
</div>
<div class="vcard">
<div class="vcard-hdr"><span class="vbadge vcam">● EMPLAC.</span><span class="vname">Carrefour Belle-Vue — Kaloum</span><span class="vsub">Conakry · En attente de flux</span></div>
<div class="vcam-ph">
<div class="ico">📷</div>
<div class="msg">Emplacement réservé.<br>Si vous installez une caméra IP ici,<br>contactez pour l'intégrer.</div>
<div class="loc">9.5170° N · 13.7103° W</div>
</div>
</div>
<div class="vcard">
<div class="vcard-hdr"><span class="vbadge vcam">● EMPLAC.</span><span class="vname">Rond-point Cosa — Matam</span><span class="vsub">Conakry · Carrefour stratégique</span></div>
<div class="vcam-ph">
<div class="ico">📷</div>
<div class="msg">Emplacement réservé.<br>Zone très fréquentée — priorité haute.</div>
<div class="loc">9.5420° N · 13.6730° W</div>
</div>
</div>
<div class="vcard">
<div class="vcard-hdr"><span class="vbadge vcam">● EMPLAC.</span><span class="vname">Marché Madina — Matoto</span><span class="vsub">Plus grand marché de Conakry</span></div>
<div class="vcam-ph">
<div class="ico">📷</div>
<div class="msg">Emplacement réservé.<br>Trafic intense · Priorité haute.</div>
<div class="loc">9.5680° N · 13.6260° W</div>
</div>
</div>
<div class="vcard">
<div class="vcard-hdr"><span class="vbadge vcam">● EMPLAC.</span><span class="vname">Port Autonome de Conakry</span><span class="vsub">Kaloum · Baie de Conakry</span></div>
<div class="vcam-ph">
<div class="ico">⚓</div>
<div class="msg">Pas de flux public disponible.<br>Trafic maritime → Marine Traffic live.</div>
<div class="loc" style="cursor:pointer;color:var(--blue)" onclick="window.open('https://www.marinetraffic.com/en/ais/home/centerx:-13.7/centery:9.5/zoom:12','_blank')">→ MarineTraffic.com ↗</div>
</div>
</div>
</div>
<div style="background:var(--card);border:1px solid var(--border);border-radius:4px;padding:10px 14px;margin-top:10px">
<div class="vs" style="margin-bottom:8px">💡 POUR AVOIR DE VRAIES CAMÉRAS — SOLUTION CONCRÈTE</div>
<div style="font-size:11px;color:var(--txt2);line-height:1.8">
La solution la plus réaliste pour Conakry :<br>
<strong style="color:var(--txt)">1.</strong> Acheter une caméra IP WiFi (<strong style="color:var(--gold)">TP-Link Tapo C200</strong> ou <strong style="color:var(--gold)">Hikvision DS-2CD</strong>) — moins de 30-50€<br>
<strong style="color:var(--txt)">2.</strong> L'installer chez vous ou chez un contact à Conakry avec connexion internet<br>
<strong style="color:var(--txt)">3.</strong> Activer le flux RTSP public<br>
<strong style="color:var(--txt)">4.</strong> L'URL du flux (ex: <span style="color:var(--green);font-family:'IBM Plex Mono',monospace;font-size:9px">rtsp://IP:554/stream</span>) peut être intégrée directement dans ce dashboard
</div>
</div>
</div>
<!-- METEO WEBCAM -->
<div>
<div class="vs">🌡️ STATIONS MÉTÉO — DONNÉES LIVE</div>
<div class="vgrid">
<div class="vcard">
<div class="vcard-hdr"><span class="vbadge vweb">● LIVE</span><span class="vname">Windy.com — Guinée</span><span class="vsub">Radar météo · Vent · Pluie</span></div>
<iframe class="vframe" src="https://embed.windy.com/embed2.html?lat=10.5&lon=-11.5&detailLat=9.537&detailLon=-13.677&width=650&height=450&zoom=6&level=surface&overlay=wind&product=ecmwf&menu=&message=&marker=true&calendar=now&pressure=&type=map&location=coordinates&detail=true&metricWind=km%2Fh&metricTemp=%C2%B0C&radarRange=-1" allowfullscreen></iframe>
</div>
<div class="vcard">
<div class="vcard-hdr"><span class="vbadge vweb">● LIVE</span><span class="vname">Radar pluies — Afrique de l'Ouest</span><span class="vsub">EUMETSAT · Satellite</span></div>
<iframe class="vframe" src="https://embed.windy.com/embed2.html?lat=10.5&lon=-11.5&zoom=6&level=surface&overlay=rain&product=ecmwf&menu=&message=&marker=&calendar=now&pressure=&type=map&location=coordinates&detail=&metricWind=km%2Fh&metricTemp=%C2%B0C" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- REGION MODAL -->
<div id="reg-overlay" onclick="closeReg(event)">
<div id="reg-modal">
<div id="reg-modal-hdr">
<div>
<div id="reg-modal-title">RÉGION</div>
<div id="reg-modal-sub">Cliquez sur une région pour voir ses données</div>
</div>
<button id="reg-close" onclick="closeRegModal()">✕ FERMER</button>
</div>
<div id="reg-body"></div>
</div>
</div>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
<script>
// ─── CLOCK ───────────────────────────────────────────────────────
setInterval(()=>{
const n=new Date();
document.getElementById('clock').textContent=
[n.getUTCHours(),n.getUTCMinutes(),n.getUTCSeconds()].map(x=>String(x).padStart(2,'0')).join(':')+ ' UTC';
},1000);
document.getElementById('last-update').textContent = new Date().toLocaleTimeString('fr-FR');
// ─── MAP ─────────────────────────────────────────────────────────
// Limites strictes Guinée
const GN_BOUNDS = L.latLngBounds(L.latLng(7.08,-15.25),L.latLng(12.80,-7.52));
const map = L.map('map',{
center:[10.5,-11.5], zoom:7, zoomControl:false,
maxBounds:GN_BOUNDS, maxBoundsViscosity:1.0, minZoom:6, maxZoom:18
});
L.control.zoom({position:'bottomright'}).addTo(map);
L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png',{
attribution:'© OpenStreetMap © CartoDB',subdomains:'abcd',maxZoom:20
}).addTo(map);
// ── MASQUE : Assombrir tout ce qui est HORS de la Guinée ──────────
async function applyGNMask(){
try{
const r=await fetch('https://raw.githubusercontent.com/datasets/geo-countries/master/data/countries.geojson');
const d=await r.json();
const gn=d.features.find(f=>f.properties.ISO_A2==='GN');
if(!gn)return;
// Contour doré Guinée
L.geoJSON(gn,{style:{color:'#e8b84b',weight:2,fill:false,opacity:.75}}).addTo(map);
// Récupérer les coordonnées du polygone Guinée
let gnCoords;
if(gn.geometry.type==='Polygon') gnCoords=gn.geometry.coordinates[0];
else gnCoords=gn.geometry.coordinates.reduce((a,b)=>a[0].length>b[0].length?a:b)[0];
// Masque inversé = grande boîte monde avec trou Guinée
const mask={type:'Feature',geometry:{type:'Polygon',
coordinates:[[ [-180,-90],[180,-90],[180,90],[-180,90],[-180,-90] ], gnCoords]},properties:{}};
L.geoJSON(mask,{style:{fillColor:'#02060e',fillOpacity:.82,fillRule:'evenodd',stroke:false,interactive:false}}).addTo(map);
}catch(e){console.warn('Masque Guinée échoué:',e);}
}
function mkIcon(color,sym,sz=26){
return L.divIcon({className:'',
html:`<div style="width:${sz}px;height:${sz}px;background:${color}1a;border:1.5px solid ${color};border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:${Math.round(sz*.5)}px;box-shadow:0 0 8px ${color}44;transition:transform .2s">${sym}</div>`,
iconSize:[sz,sz],iconAnchor:[sz/2,sz/2]});
}
function mkSquare(color,sym,sz=22){
return L.divIcon({className:'',
html:`<div style="width:${sz}px;height:${sz}px;background:${color}18;border:1.5px solid ${color};border-radius:3px;display:flex;align-items:center;justify-content:center;font-size:${Math.round(sz*.48)}px;box-shadow:0 0 6px ${color}33">${sym}</div>`,
iconSize:[sz,sz],iconAnchor:[sz/2,sz/2]});
}
function pp(d){
let h=`<div class="pt">${d.name||d.nom}</div>`;
const skip=['name','nom','lat','lng','color'];
const labels={type:'Type',operator:'Opérateur',status:'Statut',production:'Production',reserve:'Réserves',
mw:'Puissance',year:'Mise en service',river:'Fleuve',builder:'Constructeur',detail:'Détail',
date:'Date',casualties:'Victimes',desc:'Description',capacity:'Capacité',
investment:'Investissement',jobs:'Emplois',region:'Région',prefecture:'Préfecture',
pop:'Population',area:'Superficie',category:'Catégorie',highlight:'À voir',
visit:'Visite',note:'Note',risk:'Risque',alert:'Alerte'};
Object.entries(d).filter(([k,v])=>!skip.includes(k)&&v).forEach(([k,v])=>{
const label = labels[k]||k;
h+=`<div class="pr"><span class="pk">${label}</span><span class="pv">${v}</span></div>`;
});
return h;
}
// ─── DATA ─────────────────────────────────────────────────────────
// ROUTES NATIONALES — avec état de la chaussée
const ROUTES = [
{id:'RN1', etat:'bitume', name:'RN1 — Conakry → Coyah → Kindia → Mamou → Labé → Koundara',
coords:[[9.537,-13.677],[9.70,-13.37],[10.06,-12.87],[10.38,-11.99],[10.78,-12.15],[11.07,-12.40],[11.32,-12.29],[11.68,-12.29],[12.49,-13.30]]},
{id:'RN2', etat:'bitume', name:'RN2 — Conakry → Kindia → Mamou → Kankan → Beyla',
coords:[[9.537,-13.677],[9.70,-13.37],[10.06,-12.87],[10.38,-11.99],[10.04,-10.75],[10.38,-9.306],[8.68,-8.65]]},
{id:'RN3', etat:'bitume', name:'RN3 — Conakry → Dubréka → Forecariah',
coords:[[9.537,-13.677],[10.21,-13.52],[10.05,-13.75],[9.43,-13.09]]},
{id:'RN4', etat:'mixte', name:'RN4 — Mamou → Faranah → Kissidougou → N\'Zérékoré',
coords:[[10.38,-11.99],[10.04,-10.75],[9.18,-10.10],[8.55,-10.13],[8.00,-9.20],[7.756,-8.816]]},
{id:'RN5', etat:'piste', name:'RN5 — Kankan → Siguiri → frontière Mali',
coords:[[10.38,-9.306],[11.00,-9.22],[11.41,-9.17],[11.92,-9.05]]},
{id:'RN6', etat:'mixte', name:'RN6 — Conakry → Boké → Kamsar (côtière)',
coords:[[9.537,-13.677],[9.93,-13.57],[10.21,-13.52],[10.35,-13.55],[10.65,-14.28],[10.934,-14.298]]},
{id:'RN7', etat:'piste', name:'RN7 — Kankan → Kérouané → Beyla',
coords:[[10.38,-9.306],[9.70,-9.00],[9.05,-8.65],[8.68,-8.65]]},
{id:'RN8', etat:'mixte', name:'RN8 — Faranah → Kissidougou → Guékédou → Macenta',
coords:[[10.04,-10.75],[9.18,-10.10],[8.55,-10.13],[8.55,-9.47]]},
{id:'RN9', etat:'piste', name:'RN9 — Labé → Mali → Koundara',
coords:[[11.32,-12.29],[11.68,-12.29],[12.08,-12.29],[12.49,-13.30]]},
{id:'RN10', etat:'piste', name:'RN10 — N\'Zérékoré → Macenta → Guékédou → Kissidougou',
coords:[[7.756,-8.816],[8.00,-9.20],[8.55,-9.47],[8.55,-10.13],[9.18,-10.10]]},
];
// PREFECTURES (cliquables)
const PREFS = [
{nom:'Conakry',lat:9.537,lng:-13.677,pop:'2,500,000',area:'450 km²',economy:'Commerce, Port, Industrie',note:'Capitale politique et économique',mines:'Kaloum — zone industrielle',tourism:'Palais du Peuple, Grande Mosquée, Corniche'},
{nom:'Boké',lat:10.934,lng:-14.298,pop:'850,000',area:'31,186 km²',economy:'Bauxite (1er exportateur mondial)',note:'Cœur minier de la Guinée',mines:'CBG, SMB-Winning, GAC, EGA — 60% de l\'export national'},
{nom:'Kindia',lat:10.06,lng:-12.87,pop:'870,000',area:'28,873 km²',economy:'Bauxite RUSBAL, Agriculture, Transit',note:'Porte d\'entrée vers l\'intérieur',mines:'COBAD / RUSBAL — bauxite'},
{nom:'Mamou',lat:10.38,lng:-11.993,pop:'600,000',area:'17,074 km²',economy:'Élevage, Carrefour routier',note:'Carrefour centre du pays'},
{nom:'Labé',lat:11.318,lng:-12.289,pop:'960,000',area:'22,869 km²',economy:'Élevage bovin, Agriculture, Artisanat',note:'Cœur culturel du Fouta Djallon',tourism:'Cascades, montagnes, artisanat Peul'},
{nom:'Dalaba',lat:10.691,lng:-12.258,pop:'290,000',area:'3,986 km²',economy:'Tourisme, Élevage, Pomme de terre',note:'Station climatique, altitude 1,200m',tourism:'Chutes Dalaba, résidence coloniale'},
{nom:'Pita',lat:11.072,lng:-12.398,pop:'390,000',area:'8,082 km²',economy:'Élevage, Pomme de terre, Tourisme',note:'Fouta Djallon — paysages exceptionnels',tourism:'Chutes de Kinkon, Pont de Dieu, Voile de la Mariée'},
{nom:'Kankan',lat:10.383,lng:-9.306,pop:'1,200,000',area:'72,121 km²',economy:'Or, Agriculture, Commerce',note:'2ème plus grande ville, capitale religieuse',mines:'Siguiri — Or (AngloGold Ashanti)'},
{nom:'Siguiri',lat:11.41,lng:-9.17,pop:'380,000',area:'19,898 km²',economy:'Or (principale mine nationale)',note:'Capitale de l\'or guinéen',mines:'AngloGold Ashanti — 250,000 oz/an'},
{nom:'Faranah',lat:10.036,lng:-10.746,pop:'500,000',area:'13,074 km²',economy:'Agriculture, Source du Niger',note:'Source du fleuve Niger (Tembi)',tourism:'Source du Niger — site historique'},
{nom:'N\'Zérékoré',lat:7.756,lng:-8.816,pop:'1,100,000',area:'16,897 km²',economy:'Forêt, Minerai de fer (Simandou Sud)',note:'Guinée Forestière — zone biodiversité',mines:'Simandou Blocs 1&2 — SMB-Winning',tourism:'Mont Nimba (UNESCO), forêts tropicales'},
{nom:'Kissidougou',lat:9.185,lng:-10.094,pop:'380,000',area:'9,188 km²',economy:'Agriculture, Forêt',note:'Zone de transition forêt-savane'},
{nom:'Guékédou',lat:8.55,lng:-10.13,pop:'320,000',area:'7,010 km²',economy:'Agriculture, Commerce frontalier',note:'Zone frontière — surveillance Ebola OMS',health:'⚠️ Zone surveillance épidémique active'},
{nom:'Macenta',lat:8.55,lng:-9.47,pop:'350,000',area:'9,736 km²',economy:'Forêt, Agriculture vivrière',note:'Forêts denses — biodiversité exceptionnelle'},
{nom:'Télimélé',lat:10.90,lng:-13.04,pop:'450,000',area:'12,915 km²',economy:'Bauxite (réserves importantes)',note:'Réserves bauxite en cours d\'évaluation'},
{nom:'Coyah',lat:9.70,lng:-13.37,pop:'600,000',area:'2,866 km²',economy:'Zone péri-urbaine Conakry, Agriculture',note:'Croissance rapide — pression démographique'},
{nom:'Fria',lat:10.35,lng:-13.55,pop:'220,000',area:'2,900 km²',economy:'Alumine (ancienne RUSAL)',note:'Ancienne raffinerie alumine — relance discutée',mines:'Fria Alumine — production suspendue, relance en discussion'},
{nom:'Beyla',lat:8.69,lng:-8.65,pop:'380,000',area:'14,856 km²',economy:'Agriculture, Minerai (exploration)',note:'Frontière Côte d\'Ivoire, Simandou proche'},
{nom:'Koundara',lat:12.49,lng:-13.30,pop:'210,000',area:'7,123 km²',economy:'Élevage, Commerce frontalier Sénégal',note:'Frontière Sénégal / Guinée-Bissau'},
{nom:'Mali (ville)',lat:12.08,lng:-12.29,pop:'320,000',area:'8,640 km²',economy:'Élevage, Agriculture',note:'Mont Loura — Dame de Mali',tourism:'Chaîne de Tamgué, Dame de Mali'},
];
// MINING SITES
const MINING=[
{name:'CBG — Cie des Bauxites de Guinée',lat:10.93,lng:-14.30,type:'Bauxite',operator:'Alcoa/Rio Tinto/Guinée (49%)',status:'✅ Actif depuis 1973',production:'15 Mt/an',reserve:'Réserves vastes Boké',investment:'~$2 Mrd cumulé',jobs:'~4,000 directs',color:'#e8b84b'},
{name:'SMB-Winning Consortium',lat:10.68,lng:-14.48,type:'Bauxite',operator:'SMB-Winning (Chine/Singapour)',status:'✅ Actif — expansion 80 Mt',production:'60+ Mt/an',reserve:'Très importante',investment:'$3+ Mrd',jobs:'~15,000 directs + indirects',color:'#e8b84b'},
{name:'GAC — Guinea Alumina Corp.',lat:10.88,lng:-14.12,type:'Bauxite',operator:'EGA (Émirats Arabes Unis)',status:'✅ Actif',production:'12 Mt/an',reserve:'Non divulguée',investment:'$1.4 Mrd',jobs:'~3,000 directs',color:'#e8b84b'},
{name:'COBAD — Compagnie de Bauxite',lat:10.06,lng:-12.87,type:'Bauxite',operator:'Alliance RusAl / COBAD',status:'✅ Actif',production:'3 Mt/an',reserve:'Limitée Kindia',jobs:'~1,500',color:'#e8c040'},
{name:'Dian-Dian (EGA)',lat:10.62,lng:-14.38,type:'Bauxite',operator:'EGA',status:'🚧 Développement',production:'Cible 30 Mt/an',reserve:'900 Mt estimés',investment:'~$3 Mrd prévu',color:'#c8a030'},
{name:'Simandou Nord — Blocs 3 & 4',lat:9.35,lng:-8.75,type:'Minerai de fer',operator:'Rio Tinto / Chinalco (WCS)',status:'🚧 Construction voie ferrée',production:'Cible 60 Mt/an (2026)',reserve:'2.4 Gt partagé · 65% Fe',investment:'$20+ Mrd total',jobs:'Cible 45,000 emplois',color:'#e87b4b'},
{name:'Simandou Sud — Blocs 1 & 2',lat:8.92,lng:-8.68,type:'Minerai de fer',operator:'Winning/SMB-Simfer',status:'🚧 Construction',production:'Cible 2026',reserve:'2.4 Gt partagé · 65%+ Fe',color:'#e87b4b'},
{name:'Mont Nimba — Fer',lat:7.61,lng:-8.40,type:'Minerai de fer',operator:'SMFG / ArcelorMittal',status:'🔴 Bloqué (UNESCO)',production:'En attente autorisation',reserve:'600 Mt · 64% Fe',color:'#e84b4b'},
{name:'Siguiri — AngloGold Ashanti',lat:11.41,lng:-9.17,type:'Or',operator:'AngloGold Ashanti (85%) + État GN',status:'✅ Actif',production:'~250,000 oz/an',reserve:'3.5 Moz restants',investment:'$1.2 Mrd cumulé',jobs:'~2,800 directs',color:'#ffd700'},
{name:'Léro / Mandiana — Nordgold',lat:10.68,lng:-10.72,type:'Or',operator:'Nordgold (Russie)',status:'✅ Actif',production:'~110,000 oz/an',reserve:'En évaluation',color:'#ffd700'},
{name:'Fria — Alumine RUSAL',lat:10.35,lng:-13.55,type:'Alumine',operator:'RUSAL (Russie) — arrêt 2012',status:'⏸️ Suspendu — relance négociée',production:'740,000 t/an (capacité)',reserve:'N/A (raffinerie)',investment:'$200M (réhabilitation)',color:'#aaaaaa'},
{name:'Sangaredi — Phosphates',lat:11.28,lng:-13.72,type:'Phosphates',operator:'FRIGUIA / CBG zone',status:'🔬 Exploration',production:'TBD',reserve:'Non estimé',color:'#80d44b'},
{name:'Zone minière Kindia — Bauxite',lat:10.15,lng:-12.95,type:'Bauxite',operator:'Divers (COBAD, CBK)',status:'✅ Actif',production:'~5 Mt/an',reserve:'Importante',color:'#e8c040'},
{name:'Beyla — Fer / Or (exploration)',lat:8.68,lng:-8.63,type:'Fer / Or',operator:'Juniors canadiens / australiens',status:'🔬 Exploration',production:'TBD',reserve:'Non estimé',color:'#c86030'},
{name:'Mandiana — Or (exploration)',lat:10.63,lng:-8.69,type:'Or',operator:'Divers juniors',status:'🔬 Exploration',production:'TBD',reserve:'Non estimé',color:'#b09010'},
];
// DAMS
const DAMS=[
{name:'Barrage de Souapiti',lat:10.61,lng:-13.37,mw:'450 MW',status:'✅ Opérationnel',year:'2021',river:'Konkoure',builder:'China Intl. Water & Electric (CWE)'},
{name:'Barrage de Kaléta',lat:10.08,lng:-13.00,mw:'240 MW',status:'✅ Opérationnel',year:'2015',river:'Konkoure',builder:'China Intl. Water & Electric (CWE)'},
{name:'Barrage de Garafiri',lat:10.72,lng:-13.08,mw:'75 MW',status:'✅ Opérationnel',year:'1999',river:'Konkoure',builder:'SOGEA/Bouygues (France)'},
{name:'Barrage de Fomi',lat:10.83,lng:-10.52,mw:'90 MW',status:'🚧 Construction 45%',year:'2025 (cible)',river:'Niger supérieur',builder:'CHEC (Chine) / ENCO'},
{name:'Barrage d\'Amaria',lat:10.51,lng:-13.62,mw:'200 MW',status:'📋 Planification',year:'~2028',river:'Konkoure',builder:'TBD'},
];
// TOURISM
const TOURISM=[
{name:'Îles de Los — Kassa',lat:9.45,lng:-13.78,category:'Île / Plage',visit:'Traversée bateau depuis Conakry',highlight:'Plages paradisiaques, snorkeling, cocotiers',note:'30 min de Conakry'},
{name:'Île de Roume',lat:9.51,lng:-13.87,category:'Île / Écotourisme',visit:'Bateau depuis Boulbinet',highlight:'Ancienne résidence coloniale, plages sauvages',note:'La plus grande des îles de Los'},
{name:'Île de Tamara',lat:9.54,lng:-13.90,category:'Île / Histoire',visit:'Bateau',highlight:'Ancienne colonie pénitentiaire, nature préservée'},
{name:'Chutes de Kinkon',lat:11.07,lng:-12.40,category:'Cascade / Nature',visit:'Pita (2h de Mamou)',highlight:'Spectaculaires en saison des pluies · Pont de Dieu à proximité',note:'Parmi les plus belles d\'Afrique de l\'Ouest'},
{name:'Pont de Dieu',lat:11.05,lng:-12.35,category:'Site naturel',highlight:'Arche rocheuse naturelle · Vue imprenable Fouta Djallon'},
{name:'Voile de la Mariée',lat:11.08,lng:-12.42,category:'Cascade',highlight:'Chute d\'eau tombant en voile fin · Saison des pluies'},
{name:'Chutes de Kambadaga',lat:11.15,lng:-12.25,category:'Cascade / Randonnée',visit:'Depuis Pita',highlight:'Impressionnantes · Baignade possible'},
{name:'Falaise de Douki',lat:10.87,lng:-12.46,category:'Site naturel',highlight:'Falaise spectaculaire Fouta Djallon · Panorama exceptionnel'},
{name:'Mont Loura — Dame de Mali',lat:12.09,lng:-12.37,category:'Montagne / Randonnée',visit:'Mali (12h de Conakry)',highlight:'Silhouette féminine dans la roche · Vue à 360°',note:'Altitude 1,752m'},
{name:'Mont Nimba',lat:7.61,lng:-8.39,category:'Patrimoine UNESCO',highlight:'1752m · Biodiversité exceptionnelle · Hippopotames pygmées',note:'Réserve de Biosphère UNESCO'},
{name:'Parc Nat. du Haut Niger',lat:11.50,lng:-10.80,category:'Parc National / Safari',highlight:'Éléphants, lions, hippopotames · 6,000 km²',note:'Seul parc national de Guinée'},
{name:'Source du Niger (Tembi)',lat:10.19,lng:-10.81,category:'Site historique / Nature',visit:'Faranah region',highlight:'Naissance du 3ème fleuve africain'},
{name:'Grande Mosquée Fayçal',lat:9.536,lng:-13.672,category:'Architecture / Religion',visit:'Centre Conakry · Kaloum',highlight:'Plus grande mosquée d\'Afrique sub-saharienne (50,000 fidèles)'},
{name:'Palais du Peuple',lat:9.531,lng:-13.684,category:'Architecture / Culture',highlight:'Salle de congrès emblématique · Conakry'},
{name:'Musée National de Guinée',lat:9.532,lng:-13.680,category:'Culture / Histoire',highlight:'Artéfacts historiques, masques, instruments traditionnels'},
{name:'Jardin Botanique de Camayenne',lat:9.564,lng:-13.686,category:'Nature / Botanique',highlight:'Jardin tropical colonial · Espèces rares'},
{name:'Plage de Bel Air',lat:9.520,lng:-13.705,category:'Plage',highlight:'Plage de Conakry · Couchers de soleil sur l\'Atlantique'},
{name:'Plage de Rogbané',lat:9.558,lng:-13.640,category:'Plage',highlight:'Plage populaire Conakry'},
{name:'Marché Madina',lat:9.568,lng:-13.626,category:'Culture / Commerce',highlight:'Plus grand marché de Guinée · Tissus, artisanat, épices'},
{name:'Centre Artisanal de Conakry',lat:9.530,lng:-13.678,category:'Artisanat',highlight:'Sculpture, bijouterie, tissage · Souvenirs'},
{name:'Chutes de Ditinn',lat:11.25,lng:-12.68,category:'Cascade',highlight:'Chutes Fouta Djallon · Accessibles depuis Mamou'},
{name:'Archipel Tristão',lat:10.93,lng:-15.08,category:'Écotourisme',highlight:'Mangroves préservées · Oiseaux rares · Frontière Guinée-Bissau'},
];
// AGRICULTURE
const AGRI=[
{name:'SOGUIPAH — Hévéa & Palmier',lat:7.50,lng:-9.20,type:'Hévéa / Huile de palme',status:'✅ Actif',area:'25,000 ha',jobs:'~8,000 directs',region:'Yomou — Guinée Forestière'},
{name:'Plaine de Koba — Riz irrigué',lat:10.10,lng:-13.80,type:'Riziculture irriguée',status:'🚧 Expansion',area:'50,000 ha cultivables',region:'Basse Guinée · Côte',investment:'BAD + Banque Mondiale'},
{name:'FRIGUIA — Canne à sucre',lat:10.55,lng:-13.65,type:'Sucre / Diversification',status:'⏸️ Réduit',area:'2,500 ha',region:'Fria — Basse Guinée'},
{name:'Polder de Monchon',lat:11.00,lng:-12.70,type:'Riziculture — plaine alluviale',status:'🚧 Développement',area:'8,000 ha',region:'Fouta Djallon',investment:'FIDA'},
{name:'Zone café — Guinée Forestière',lat:8.20,lng:-9.60,type:'Café arabica & robusta',status:'✅ Actif',area:'~150,000 ha cultivateurs',region:'N\'Zérékoré · Macenta · Guékédou',note:'Produit de haute valeur — export limité'},
{name:'Ferme bovine — Fouta Djallon',lat:11.10,lng:-12.50,type:'Élevage bovin',status:'✅ Actif',area:'Plateau entier',region:'Labé · Pita · Dalaba · Mamou',note:'~3M têtes · Première zone d\'élevage'},
{name:'Bananeraie Coyah',lat:9.72,lng:-13.38,type:'Banane / Fruits tropicaux',status:'✅ Actif',area:'Périmètre Coyah',region:'Basse Guinée'},
{name:'PADER — Projet Agro-pastoral',lat:11.20,lng:-12.40,type:'Agropastoral multi-filières',status:'🚧 En cours',region:'Fouta Djallon complet',investment:'$85M — FIDA / Banque Mondiale'},
];
// INDUSTRY
const INDUSTRY=[
{name:'CIMAF — Cimenterie Conakry',lat:9.54,lng:-13.59,type:'Ciment',status:'✅ Actif',production:'1.5 Mt ciment/an',operator:'Groupe Chaâbi (Maroc)'},
{name:'SOBRAGUI — Brasserie',lat:9.55,lng:-13.63,type:'Brasserie / Boissons',status:'✅ Actif',operator:'Heineken (partiellement)',production:'Bières, softs'},
{name:'Zone Industrielle de Kaloum',lat:9.53,lng:-13.65,type:'Zone industrielle mixte',status:'✅ Actif',operator:'Divers — ~50 entreprises',note:'Principale zone industrielle du pays'},
{name:'Terminal pétrolier — Conakry',lat:9.52,lng:-13.72,type:'Stockage hydrocarbures',status:'✅ Actif',note:'Explosion 2023 — reconstruction'},
{name:'Port Autonome de Conakry',lat:9.519,lng:-13.726,type:'Port commercial',status:'✅ Actif',production:'2.5 Mt/an · extension 5Mt',operator:'PAC / Bolloré'},
{name:'ZES Matakong (planifiée)',lat:10.45,lng:-14.55,type:'Zone Économique Spéciale',status:'📋 Planification',investment:'$2+ Mrd prévus',note:'Transformation aluminium sur place'},
{name:'GUILUXE — Eau minérale',lat:10.25,lng:-13.05,type:'Eau embouteillée',status:'✅ Actif',region:'Kindia',note:'Marque nationale distribuée nationalement'},
];
// MILITARY
const MILITARY=[
{name:'Camp Samory Touré — QG FARG / CNRD',lat:9.513,lng:-13.712,type:'Quartier Général FARG',detail:'Siège des Forces Armées & gouvernement CNRD depuis sept. 2021',personnel:'Haute direction militaire'},
{name:'Camp Alpha Yaya Diallo',lat:9.530,lng:-13.680,type:'Régiment Troupes Terrestres',detail:'Principal camp militaire de Conakry'},
{name:'Base Navale de Conakry',lat:9.518,lng:-13.730,type:'Marine Nationale Guinéenne',detail:'Unique base navale — patrouilles Atlantique'},
{name:'Aérobase de Gbessia',lat:9.576,lng:-13.612,type:'Force Aérienne Guinéenne',detail:'Intégrée aéroport international — aéronefs militaires'},
{name:'Garnison de Kindia',lat:10.06,lng:-12.87,type:'Garnison régionale — Basse Guinée',detail:'Forces armées Basse Guinée · Sécurité axe Conakry-Mamou'},
{name:'Garnison de Kankan',lat:10.38,lng:-9.31,type:'Garnison régionale — Haute Guinée',detail:'Haute-Guinée · Sécurité frontières Mali · Zone Simandou'},
];
// INCIDENTS
const INCIDENTS=[
{name:'Explosion dépôt pétrolier Kaloum',lat:9.540,lng:-13.685,type:'Catastrophe industrielle',date:'18 Déc. 2023',casualties:'50+ décès · 200+ blessés',desc:'Explosion & incendie massif dépôt carburant Kaloum — Conakry',sev:'critical'},
{name:'Troubles sociaux — Labé',lat:11.32,lng:-12.29,type:'Manifestations',date:'Jan. 2025',casualties:'3 blessés',desc:'Manifestations coupures électriques et restrictions eau prolongées',sev:'high'},
{name:'Incident frontalier — Guinée Forestière',lat:7.77,lng:-8.82,type:'Sécurité frontalière',date:'Fév. 2025',casualties:'2 morts',desc:'Accrochages à la frontière Liberia/CIV — zone instable',sev:'high'},
{name:'Inondations Coyah',lat:9.70,lng:-13.37,type:'Catastrophe naturelle',date:'Mar. 2025',casualties:'800 déplacés',desc:'Débordement rivière — déplacements de populations',sev:'medium'},