hts-ai commited on
Commit
8df98b6
·
verified ·
1 Parent(s): cdf1999

tu analyse mal. voilà cette algorithme ameliore ton travaille ,<!DOCTYPE html>

Browse files

<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JANUS SCANNER - Module de Frappe Automatique</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary: #0a0a0a;
--secondary: #1a1a1a;
--accent: #ff0000;
--text: #ffffff;
--text-secondary: #cccccc;
--success: #00ff00;
--warning: #ffff00;
--danger: #ff0000;
--terminal: #00ff00;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Courier New', monospace;
}

body {
background: linear-gradient(135deg, var(--primary), #000000);
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}

header {
text-align: center;
padding: 40px 0;
border-bottom: 1px solid var(--accent);
margin-bottom: 40px;
position: relative;
}

h1 {
font-size: 3rem;
color: var(--accent);
text-transform: uppercase;
letter-spacing: 3px;
margin-bottom: 10px;
text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.subtitle {
font-size: 1.2rem;
color: var(--text-secondary);
margin-bottom: 20px;
}

.version-tag {
background: var(--accent);
color: var(--primary);
padding: 5px 15px;
border-radius: 20px;
font-weight: bold;
display: inline-block;
margin-top: 10px;
}

.terminal {
background-color: var(--secondary);
border: 1px solid var(--accent);
border-radius: 5px;
padding: 20px;
margin: 20px 0;
box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
overflow-x: auto;
}

.terminal-header {
color: var(--accent);
margin-bottom: 15px;
display: flex;
justify-content: space-between;
align-items: center;
}

.terminal-content {
color: var(--terminal);
line-height: 1.8;
}

.section {
margin: 40px 0;
}

.section-title {
color: var(--accent);
font-size: 1.8rem;
margin-bottom: 20px;
border-left: 3px solid var(--accent);
padding-left: 15px;
}

.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin: 20px 0;
}

.card {
background-color: var(--secondary);
border: 1px solid #333;
border-radius: 5px;
padding: 20px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
border-color: var(--accent);
}

.card-title {
color: var(--accent);
margin-bottom: 10px;
font-size: 1.3rem;
}

.file-card {
background-color: var(--secondary);
border: 1px solid #333;
border-radius: 5px;
padding: 20px;
margin: 10px 0;
}

.file-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}

.file-name {
color: var(--accent);
font-weight: bold;
}

.file-content {
background-color: rgba(0, 0, 0, 0.3);
padding: 15px;
border-radius: 3px;
overflow-x: auto;
font-size: 0.9rem;
}

.command {
color: var(--terminal);
background-color: rgba(0, 0, 0, 0.3);
padding: 2px 6px;
border-radius: 3px;
font-weight: bold;
}

.actions {
display: flex;
gap: 15px;
margin: 30px 0;
flex-wrap: wrap;
}

.btn {
background: var(--accent);
color: var(--primary);
border: none;
padding: 12px 25px;
border-radius: 5px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}

.btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.btn-secondary {
background: transparent;
border: 1px solid var(--accent);
color: var(--accent);
}

.btn-secondary:hover {
background: rgba(255, 0, 0, 0.1);
}

.timeline {
position: relative;
padding-left: 30px;
margin: 30px 0;
}

.timeline::before {
content: '';
position: absolute;
left: 10px;
top: 0;
bottom: 0;
width: 2px;
background: var(--accent);
}

.timeline-item {
position: relative;
margin-bottom: 20px;
padding: 10px;
background: rgba(255, 0, 0, 0.05);
border-left: 2px solid var(--accent);
}

.timeline-item::before {
content: '';
position: absolute;
left: -32px;
top: 15px;
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--accent);
}

.timeline-time {
color: var(--terminal);
font-weight: bold;
}

.quote {
text-align: center;
font-style: italic;
margin: 40px 0;
padding: 20px;
border-top: 1px solid var(--accent);
border-bottom: 1px solid var(--accent);
color: var(--text-secondary);
}

.objective-card {
background: linear-gradient(135deg, var(--secondary), #2a2a2a);
border: 1px solid var(--accent);
border-radius: 5px;
padding: 25px;
margin: 20px 0;
}

.alert-item {
background: rgba(255, 0, 0, 0.1);
border-left: 3px solid var(--accent);
padding: 15px;
margin: 10px 0;
}

footer {
text-align: center;
padding: 40px 0;
margin-top: 40px;
border-top: 1px solid var(--accent);
color: var(--text-secondary);
}

.pulse {
animation: pulse 2s infinite;
}



@keyframes
pulse {
0% { opacity: 0.6; }
50% { opacity: 1; }
100% { opacity: 0.6; }
}

.blink {
animation: blink 1s infinite;
}



@keyframes
blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}



@media
(max-width: 768px) {
h1 {
font-size: 2rem;
}

.grid {
grid-template-columns: 1fr;
}

.actions {
flex-direction: column;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>JANUS SCANNER</h1>
<div class="subtitle">MODULE DE FRAPPE AUTOMATIQUE</div>
<div class="version-tag">Version 1.1 – "Opération Foudre Silencieuse"</div>
</header>

<div class="objective-card">
<h2 class="section-title">OBJECTIF À 03:15 AM</h2>
<ul>
<li>✅ FEC scanné</li>
<li>✅ Preuves générées (PDF + ZIP chiffré)</li>
<li>✅ Alertes envoyées :
<ul>
<li>Procureur de Paris</li>
<li>Douanes Françaises</li>
<li>Le Monde / Mediapart</li>
</ul>
</li>
<li>✅ Zéro trace locale</li>
<li>✅ Tout automatisé</li>
</ul>
</div>

<div class="section">
<h2 class="section-title">1. services/strike_engine.py – Moteur de Frappe</h2>
<div class="file-card">
<div class="file-header">
<span class="file-name">backend/services/strike_engine.py</span>
</div>
<div class="file-content">
# backend/services/strike_engine.py<br>
import smtplib<br>
from email.mime.multipart import MIMEMultipart<br>
from email.mime.text import MIMEText<br>
from email.mime.base import MIMEBase<br>
from email import encoders<br>
import os<br>
import requests<br>
from datetime import datetime<br>
import subprocess<br>
import logging<br><br>
class StrikeEngine:<br>
    def __init__(self):<br>
        self.tor_proxy = {"http": "socks5h://127.0.0.1:9050", "https": "socks5h://127.0.0.1:9050"}<br>
        self.proton_user = os.getenv("PROTON_USER")<br>
        self.p

Files changed (2) hide show
  1. index.html +109 -65
  2. style.css +224 -26
index.html CHANGED
@@ -10,69 +10,101 @@
10
  <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
  <script src="https://unpkg.com/feather-icons"></script>
12
  </head>
13
- <body class="bg-gray-900 text-white">
14
- <header class="bg-gray-800 py-4 px-6 flex justify-between items-center">
 
15
  <div class="flex items-center space-x-2">
16
- <i data-feather="eye" class="text-red-500"></i>
17
- <h1 class="text-xl font-bold">Janus Scanner Pro</h1>
 
18
  </div>
19
- <nav class="flex space-x-4">
20
- <a href="index.html" class="hover:text-red-500">Dashboard</a>
21
- <a href="pages/reports.html" class="hover:text-red-500">Reports</a>
22
- <a href="pages/settings.html" class="hover:text-red-500">Settings</a>
23
  </nav>
24
  </header>
25
-
26
  <main class="container mx-auto px-4 py-8">
27
  <section class="text-center mb-12">
28
- <h2 class="text-3xl font-bold mb-4">FEC Analysis & Fraud Detection</h2>
29
  <p class="text-gray-400 max-w-2xl mx-auto">
30
- Upload your FEC files for instant analysis. Janus Scanner uses advanced AI to detect anomalies,
31
- tax fraud, and suspicious transactions.
32
  </p>
33
  </section>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  <div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12">
35
- <div class="bg-gray-800 rounded-lg p-6">
36
- <h3 class="text-xl font-semibold mb-4">Upload FEC File / Balance Sheet</h3>
37
- <div class="border-2 border-dashed border-gray-700 rounded-lg p-8 text-center mb-4">
38
- <i data-feather="upload" class="mx-auto mb-4 text-gray-500"></i>
39
- <p class="text-gray-400 mb-4">Drag & drop your FEC or balance sheet file here</p>
40
- <input type="file" id="fecFile" class="hidden" accept=".pdf,.xls,.xlsx">
41
- <label for="fecFile" class="bg-red-600 hover:bg-red-700 text-white py-2 px-4 rounded cursor-pointer">
42
- Select File (FEC/Balance Sheet - PDF/Excel)
43
  </label>
44
- </div>
45
- <button id="analyzeBtn" class="w-full bg-red-600 hover:bg-red-700 text-white py-3 rounded">
46
- Analyze FEC
47
  </button>
48
  </div>
49
- <div class="bg-gray-800 rounded-lg p-6">
50
- <h3 class="text-xl font-semibold mb-4">Analysis Results</h3>
51
  <div class="space-y-4">
52
  <div>
53
- <p class="text-gray-400">Risk Score</p>
54
- <div class="w-full bg-gray-700 rounded-full h-2.5">
55
- <div id="riskBar" class="bg-red-600 h-2.5 rounded-full" style="width: 0%"></div>
56
  </div>
57
- <p id="riskScore" class="text-right text-red-500 font-bold">0%</p>
58
  </div>
59
  <div>
60
- <p class="text-gray-400">Anomalies Detected</p>
61
- <p id="anomalyCount" class="text-2xl font-bold">0</p>
62
  </div>
63
  <div>
64
- <p class="text-gray-400">Total Entries</p>
65
  <p id="entryCount" class="text-2xl font-bold">0</p>
66
  </div>
67
  </div>
68
  </div>
69
 
70
- <div class="bg-gray-800 rounded-lg p-6">
71
- <h3 class="text-xl font-semibold mb-4">Location Analysis</h3>
72
  <div id="locationResults" class="space-y-4">
73
  <div class="text-center py-8 text-gray-500">
74
  <i data-feather="map-pin" class="mx-auto mb-2"></i>
75
- <p>Upload FEC file to analyze locations</p>
76
  </div>
77
  </div>
78
  </div>
@@ -95,51 +127,63 @@
95
  </table>
96
  </div>
97
  </section>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
 
99
  <section>
100
- <h3 class="text-2xl font-semibold mb-4">System Status</h3>
101
  <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
102
- <div class="bg-gray-800 rounded-lg p-6 text-center">
103
- <i data-feather="cpu" class="mx-auto mb-4 text-red-500"></i>
104
- <h4 class="text-lg font-semibold mb-2">AI Analysis</h4>
105
- <p class="text-green-500">Operational</p>
106
  </div>
107
- <div class="bg-gray-800 rounded-lg p-6 text-center">
108
- <i data-feather="shield" class="mx-auto mb-4 text-red-500"></i>
109
- <h4 class="text-lg font-semibold mb-2">Security</h4>
110
- <p class="text-green-500">Active</p>
111
  </div>
112
- <div class="bg-gray-800 rounded-lg p-6 text-center">
113
- <i data-feather="database" class="mx-auto mb-4 text-red-500"></i>
114
- <h4 class="text-lg font-semibold mb-2">Database</h4>
115
- <p class="text-green-500">Connected</p>
116
  </div>
117
  </div>
118
  </section>
119
- </main>
120
-
121
- <footer class="bg-gray-800 py-6 px-4 mt-12">
122
  <div class="container mx-auto text-center text-gray-500">
123
- <p>Janus Scanner Pro - Advanced Financial Fraud Detection System</p>
124
- <p class="mt-2 text-sm">© 2025 Janus Corp. All rights reserved. | Operation "Lumière Noire"</p>
125
- <div class="mt-4 flex justify-center space-x-4 text-sm">
126
- <span class="flex items-center">
127
- <i data-feather="shield" class="w-4 h-4 mr-1 text-green-500"></i>
128
- Secure
129
  </span>
130
- <span class="flex items-center">
131
- <i data-feather="cpu" class="w-4 h-4 mr-1 text-blue-500"></i>
132
- AI Powered
133
  </span>
134
- <span class="flex items-center">
135
- <i data-feather="database" class="w-4 h-4 mr-1 text-purple-500"></i>
136
- Real-time Analysis
137
  </span>
138
  </div>
139
  </div>
140
  </footer>
141
-
142
- <!-- Scripts -->
143
  <script src="components/navbar.js"></script>
144
  <script src="script.js"></script>
145
  <script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.18.5/xlsx.full.min.js"></script>
 
10
  <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
  <script src="https://unpkg.com/feather-icons"></script>
12
  </head>
13
+ <body class="bg-black text-terminal-green">
14
+ <div class="scanline"></div>
15
+ <header class="bg-primary border-b-2 border-accent py-4 px-6 flex justify-between items-center">
16
  <div class="flex items-center space-x-2">
17
+ <i data-feather="eye" class="text-accent pulse"></i>
18
+ <h1 class="text-2xl font-bold text-accent">JANUS SCANNER</h1>
19
+ <span class="version-tag">v2.1 - "Opération Foudre Silencieuse"</span>
20
  </div>
21
+ <nav class="flex space-x-6">
22
+ <a href="index.html" class="hover:text-accent text-gray-300">[DASHBOARD]</a>
23
+ <a href="pages/reports.html" class="hover:text-accent text-gray-300">[RAPPORTS]</a>
24
+ <a href="pages/settings.html" class="hover:text-accent text-gray-300">[CONFIG]</a>
25
  </nav>
26
  </header>
 
27
  <main class="container mx-auto px-4 py-8">
28
  <section class="text-center mb-12">
29
+ <h2 class="text-3xl font-bold text-accent mb-4">MODULE DE FRAPPE AUTOMATIQUE</h2>
30
  <p class="text-gray-400 max-w-2xl mx-auto">
31
+ Système d'analyse FEC avec détection IA et alertes automatisées aux autorités compétentes.
 
32
  </p>
33
  </section>
34
+
35
+ <!-- Objective Status Card -->
36
+ <div class="objective-card mb-8">
37
+ <h3 class="section-title">OBJECTIF SYSTEME</h3>
38
+ <ul class="space-y-2">
39
+ <li class="flex items-center gap-2"><i data-feather="check-circle" class="w-4 h-4 text-success"></i> FEC Scanné et analysé</li>
40
+ <li class="flex items-center gap-2"><i data-feather="check-circle" class="w-4 h-4 text-success"></i> Preuves générées (PDF + ZIP chiffré)</li>
41
+ <li class="flex items-center gap-2"><i data-feather="check-circle" class="w-4 h-4 text-success"></i> Alertes configurées :
42
+ <ul class="ml-8 mt-2 space-y-1 text-sm text-gray-400">
43
+ <li>• Procureur de Paris</li>
44
+ <li>• Douanes Françaises</li>
45
+ <li>• Le Monde / Mediapart</li>
46
+ </ul>
47
+ </li>
48
+ <li class="flex items-center gap-2"><i data-feather="check-circle" class="w-4 h-4 text-success"></i> Zéro trace locale</li>
49
+ <li class="flex items-center gap-2"><i data-feather="zap" class="w-4 h-4 text-accent pulse"></i> Frappe automatique active</li>
50
+ </ul>
51
+ </div>
52
+ <!-- Terminal Output Display -->
53
+ <div class="terminal mb-8">
54
+ <div class="terminal-header">
55
+ <span class="text-accent">[CONSOLE DE FRAPPE]</span>
56
+ <span class="text-sm text-gray-400"><i data-feather="clock" class="w-4 h-4 inline"></i> <span id="terminalTime"></span></span>
57
+ </div>
58
+ <div id="terminalContent" class="terminal-content">
59
+ <div class="text-gray-400"># Système JANUS prêt...</div>
60
+ <div class="text-gray-400"># Dernier scan: <span id="lastScanTime">Aucun</span></div>
61
+ <div class="text-gray-400"># Mode furtif: <span class="text-success">ACTIF</span></div>
62
+ <div class="text-gray-400"># Proxy Tor: <span class="text-success">CONNECTÉ</span></div>
63
+ </div>
64
+ </div>
65
+
66
  <div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12">
67
+ <div class="bg-secondary border border-gray-700 rounded-lg p-6 hover:border-accent transition-colors">
68
+ <h3 class="card-title">[UPLOAD FEC]</h3>
69
+ <div class="border-2 border-dashed border-gray-600 rounded-lg p-8 text-center mb-4">
70
+ <i data-feather="upload" class="mx-auto mb-4 text-gray-400"></i>
71
+ <p class="text-gray-400 mb-4">Glissez & déposez le fichier FEC</p>
72
+ <input type="file" id="fecFile" class="hidden" accept=".pdf,.xls,.xlsx,.csv">
73
+ <label for="fecFile" class="btn cursor-pointer">
74
+ [SÉLECTIONNER FICHIER]
75
  </label>
76
+ </div>
77
+ <button id="analyzeBtn" class="btn w-full">
78
+ [LANCER ANALYSE]
79
  </button>
80
  </div>
81
+ <div class="bg-secondary border border-gray-700 rounded-lg p-6 hover:border-accent transition-colors">
82
+ <h3 class="card-title">[RÉSULTATS D'ANALYSE]</h3>
83
  <div class="space-y-4">
84
  <div>
85
+ <p class="text-gray-400">Score de Risque</p>
86
+ <div class="w-full bg-gray-800 rounded-full h-2.5">
87
+ <div id="riskBar" class="bg-accent h-2.5 rounded-full" style="width: 0%"></div>
88
  </div>
89
+ <p id="riskScore" class="text-right text-accent font-bold">0%</p>
90
  </div>
91
  <div>
92
+ <p class="text-gray-400">Anomalies Détectées</p>
93
+ <p id="anomalyCount" class="text-2xl font-bold text-red-500">0</p>
94
  </div>
95
  <div>
96
+ <p class="text-gray-400">Entrées Totales</p>
97
  <p id="entryCount" class="text-2xl font-bold">0</p>
98
  </div>
99
  </div>
100
  </div>
101
 
102
+ <div class="bg-secondary border border-gray-700 rounded-lg p-6 hover:border-accent transition-colors">
103
+ <h3 class="card-title">[ANALYSE LOCALE]</h3>
104
  <div id="locationResults" class="space-y-4">
105
  <div class="text-center py-8 text-gray-500">
106
  <i data-feather="map-pin" class="mx-auto mb-2"></i>
107
+ <p>En attente de fichier FEC...</p>
108
  </div>
109
  </div>
110
  </div>
 
127
  </table>
128
  </div>
129
  </section>
130
+ <!-- Strike Timeline -->
131
+ <div class="section">
132
+ <h3 class="section-title">[TIMELINE DE FRAPPE]</h3>
133
+ <div class="timeline" id="strikeTimeline">
134
+ <div class="timeline-item">
135
+ <div class="timeline-time">00:00:00</div>
136
+ <div>Systeme initialisé - Mode furtif activé</div>
137
+ </div>
138
+ <div class="timeline-item">
139
+ <div class="timeline-time">En attente</div>
140
+ <div class="text-gray-400">En attente d'analyse FEC...</div>
141
+ </div>
142
+ </div>
143
+ </div>
144
 
145
  <section>
146
+ <h3 class="section-title">[STATUT SYSTÈME]</h3>
147
  <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
148
+ <div class="bg-secondary border border-gray-700 rounded-lg p-6 text-center hover:border-accent transition-colors">
149
+ <i data-feather="cpu" class="mx-auto mb-4 text-accent"></i>
150
+ <h4 class="card-title">[IA ANALYSE]</h4>
151
+ <p class="text-success">Opérationnel</p>
152
  </div>
153
+ <div class="bg-secondary border border-gray-700 rounded-lg p-6 text-center hover:border-accent transition-colors">
154
+ <i data-feather="shield" class="mx-auto mb-4 text-accent"></i>
155
+ <h4 class="card-title">[SÉCURITÉ]</h4>
156
+ <p class="text-success">Active</p>
157
  </div>
158
+ <div class="bg-secondary border border-gray-700 rounded-lg p-6 text-center hover:border-accent transition-colors">
159
+ <i data-feather="database" class="mx-auto mb-4 text-accent"></i>
160
+ <h4 class="card-title">[BASE DE DONNÉES]</h4>
161
+ <p class="text-success">Connectée</p>
162
  </div>
163
  </div>
164
  </section>
165
+ </main>
166
+ <footer class="bg-primary border-t-2 border-accent py-6 px-4 mt-12">
 
167
  <div class="container mx-auto text-center text-gray-500">
168
+ <p class="text-accent font-bold">JANUS SCANNER PRO - SYSTÈME DE DÉTECTION DE FRAUDE FINANCIÈRE</p>
169
+ <p class="mt-2 text-sm">© 2025 Janus Corp. Tous droits réservés. | Opération "Lumière Noire"</p>
170
+ <div class="mt-4 flex justify-center space-x-6 text-sm">
171
+ <span class="flex items-center text-green-500">
172
+ <i data-feather="shield" class="w-4 h-4 mr-1"></i>
173
+ SÉCURISÉ
174
  </span>
175
+ <span class="flex items-center text-blue-500">
176
+ <i data-feather="cpu" class="w-4 h-4 mr-1"></i>
177
+ IA ACTIVÉE
178
  </span>
179
+ <span class="flex items-center text-purple-500">
180
+ <i data-feather="database" class="w-4 h-4 mr-1"></i>
181
+ ANALYSE TEMPS RÉEL
182
  </span>
183
  </div>
184
  </div>
185
  </footer>
186
+ <!-- Scripts -->
 
187
  <script src="components/navbar.js"></script>
188
  <script src="script.js"></script>
189
  <script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.18.5/xlsx.full.min.js"></script>
style.css CHANGED
@@ -1,25 +1,233 @@
1
- @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  body {
4
- font-family: 'Inter', sans-serif;
5
- background-color: #111827;
6
- color: #F9FAFB;
 
 
 
 
 
 
 
7
  }
8
 
 
9
  .bg-primary {
10
- background-color: #EF4444; /* Red-500 */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  }
12
 
13
- .text-primary {
14
- color: #EF4444; /* Red-500 */
15
  }
16
 
17
- .border-primary {
18
- border-color: #EF4444; /* Red-500 */
 
 
 
 
 
19
  }
20
 
21
- .hover\:bg-primary:hover {
22
- background-color: #DC2626; /* Red-600 */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  }
24
 
25
  /* Custom scrollbar */
@@ -28,18 +236,14 @@ body {
28
  }
29
 
30
  ::-webkit-scrollbar-track {
31
- background: #1F2937;
32
  }
33
 
34
  ::-webkit-scrollbar-thumb {
35
- background: #4B5563;
36
  border-radius: 4px;
37
  }
38
 
39
- ::-webkit-scrollbar-thumb:hover {
40
- background: #6B7280;
41
- }
42
-
43
  /* Animation for risk bar */
44
  @keyframes fillRisk {
45
  from { width: 0%; }
@@ -50,13 +254,7 @@ body {
50
  animation: fillRisk 1.5s ease-in-out;
51
  }
52
 
53
- /* Pulse animation for system status */
54
- .pulse {
55
- animation: pulse 2s infinite;
56
  }
57
-
58
- @keyframes pulse {
59
- 0% { opacity: 1; }
60
- 50% { opacity: 0.5; }
61
- 100% { opacity: 1; }
62
- }
 
1
+
2
+ :root {
3
+ --primary: #0a0a0a;
4
+ --secondary: #1a1a1a;
5
+ --accent: #ff0000;
6
+ --text: #ffffff;
7
+ --text-secondary: #cccccc;
8
+ --terminal: #00ff00;
9
+ --success: #00ff00;
10
+ }
11
+
12
+ @import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');
13
 
14
  body {
15
+ font-family: 'Courier Prime', 'Courier New', monospace;
16
+ background: linear-gradient(135deg, var(--primary), #000000);
17
+ color: var(--text);
18
+ line-height: 1.6;
19
+ overflow-x: hidden;
20
+ }
21
+
22
+ /* Terminal green text utility */
23
+ .text-terminal-green {
24
+ color: var(--text);
25
  }
26
 
27
+ /* Primary background */
28
  .bg-primary {
29
+ background-color: var(--primary);
30
+ }
31
+
32
+ /* Secondary background */
33
+ .bg-secondary {
34
+ background-color: var(--secondary);
35
+ }
36
+
37
+ /* Accent color */
38
+ .text-accent {
39
+ color: var(--accent);
40
+ }
41
+
42
+ .border-accent {
43
+ border-color: var(--accent);
44
+ }
45
+
46
+ /* Version tag styling */
47
+ .version-tag {
48
+ background: var(--accent);
49
+ color: var(--primary);
50
+ padding: 5px 15px;
51
+ border-radius: 20px;
52
+ font-weight: bold;
53
+ font-size: 0.8rem;
54
+ letter-spacing: 0.5px;
55
+ }
56
+
57
+ /* Terminal styling */
58
+ .terminal {
59
+ background-color: var(--secondary);
60
+ border: 1px solid var(--accent);
61
+ border-radius: 5px;
62
+ padding: 20px;
63
+ box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
64
+ overflow-x: auto;
65
+ }
66
+
67
+ .terminal-header {
68
+ color: var(--accent);
69
+ margin-bottom: 15px;
70
+ display: flex;
71
+ justify-content: space-between;
72
+ align-items: center;
73
+ }
74
+
75
+ .terminal-content {
76
+ color: var(--terminal);
77
+ line-height: 1.8;
78
+ font-family: 'Courier Prime', monospace;
79
+ }
80
+
81
+ /* Card styling */
82
+ .card {
83
+ background-color: var(--secondary);
84
+ border: 1px solid var(--secondary);
85
+ border-radius: 5px;
86
+ padding: 20px;
87
+ transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
88
+ }
89
+
90
+ .card-title {
91
+ color: var(--accent);
92
+ margin-bottom: 10px;
93
+ font-size: 1.3rem;
94
+ font-weight: 600;
95
+ text-transform: uppercase;
96
+ }
97
+
98
+ .card:hover {
99
+ transform: translateY(-5px);
100
+ box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
101
+ border-color: var(--accent);
102
+ }
103
+
104
+ /* Button styling */
105
+ .btn {
106
+ background: var(--accent);
107
+ color: var(--primary);
108
+ border: none;
109
+ padding: 12px 25px;
110
+ border-radius: 5px;
111
+ font-weight: bold;
112
+ cursor: pointer;
113
+ transition: all 0.3s ease;
114
+ text-transform: uppercase;
115
+ letter-spacing: 1px;
116
+ font-family: 'Courier Prime', monospace;
117
+ }
118
+
119
+ .btn:hover {
120
+ transform: translateY(-2px);
121
+ box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
122
+ }
123
+
124
+ .btn-secondary {
125
+ background: transparent;
126
+ border: 1px solid var(--accent);
127
+ color: var(--accent);
128
  }
129
 
130
+ .btn-secondary:hover {
131
+ background: rgba(255, 0, 0, 0.1);
132
  }
133
 
134
+ /* Objective card */
135
+ .objective-card {
136
+ background: linear-gradient(135deg, var(--secondary), #2a2a2a);
137
+ border: 1px solid var(--accent);
138
+ border-radius: 5px;
139
+ padding: 25px;
140
+ margin: 20px 0;
141
  }
142
 
143
+ /* Timeline */
144
+ .timeline {
145
+ position: relative;
146
+ padding-left: 30px;
147
+ margin: 30px 0;
148
+ }
149
+
150
+ .timeline::before {
151
+ content: '';
152
+ position: absolute;
153
+ left: 10px;
154
+ top: 0;
155
+ bottom: 0;
156
+ width: 2px;
157
+ background: var(--accent);
158
+ }
159
+
160
+ .timeline-item {
161
+ position: relative;
162
+ margin-bottom: 20px;
163
+ padding: 10px;
164
+ background: rgba(255, 0, 0, 0.05);
165
+ border-left: 2px solid var(--accent);
166
+ }
167
+
168
+ .timeline-item::before {
169
+ content: '';
170
+ position: absolute;
171
+ left: -32px;
172
+ top: 15px;
173
+ width: 12px;
174
+ height: 12px;
175
+ border-radius: 50%;
176
+ background: var(--accent);
177
+ }
178
+
179
+ .timeline-time {
180
+ color: var(--terminal);
181
+ font-weight: bold;
182
+ font-family: 'Courier Prime', monospace;
183
+ }
184
+
185
+ /* Section titles */
186
+ .section-title {
187
+ color: var(--accent);
188
+ font-size: 1.8rem;
189
+ margin-bottom: 20px;
190
+ border-left: 3px solid var(--accent);
191
+ padding-left: 15px;
192
+ text-transform: uppercase;
193
+ }
194
+
195
+ /* Animations */
196
+ .pulse {
197
+ animation: pulse 2s infinite;
198
+ }
199
+
200
+ @keyframes pulse {
201
+ 0% { opacity: 0.6; }
202
+ 50% { opacity: 1; }
203
+ 100% { opacity: 0.6; }
204
+ }
205
+
206
+ .blink {
207
+ animation: blink 1s infinite;
208
+ }
209
+
210
+ @keyframes blink {
211
+ 0%, 100% { opacity: 1; }
212
+ 50% { opacity: 0; }
213
+ }
214
+
215
+ /* Scanline effect */
216
+ .scanline {
217
+ position: fixed;
218
+ top: 0;
219
+ left: 0;
220
+ right: 0;
221
+ height: 5px;
222
+ background: linear-gradient(to bottom, transparent, rgba(255, 0, 0, 0.2));
223
+ pointer-events: none;
224
+ z-index: 100;
225
+ animation: scanline 8s linear infinite;
226
+ }
227
+
228
+ @keyframes scanline {
229
+ 0% { transform: translateY(-5px); }
230
+ 100% { transform: translateY(100vh); }
231
  }
232
 
233
  /* Custom scrollbar */
 
236
  }
237
 
238
  ::-webkit-scrollbar-track {
239
+ background: var(--primary);
240
  }
241
 
242
  ::-webkit-scrollbar-thumb {
243
+ background: var(--accent);
244
  border-radius: 4px;
245
  }
246
 
 
 
 
 
247
  /* Animation for risk bar */
248
  @keyframes fillRisk {
249
  from { width: 0%; }
 
254
  animation: fillRisk 1.5s ease-in-out;
255
  }
256
 
257
+ /* Success text */
258
+ .text-success {
259
+ color: var(--success);
260
  }