-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwireframe_claude_optimized.html
More file actions
513 lines (459 loc) · 21.1 KB
/
Copy pathwireframe_claude_optimized.html
File metadata and controls
513 lines (459 loc) · 21.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CypherOracle | AI-Powered Crypto Prediction</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.2/dist/gsap.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@300;500;700&display=swap');
:root {
--neon-blue: #00f3ff;
--neon-pink: #ff00ff;
--neon-green: #00ff9f;
--cyber-dark: #050505;
--cyber-gray: #1a1a1a;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--cyber-dark);
color: white;
font-family: 'Rajdhani', sans-serif;
overflow-x: hidden;
}
h1, h2, h3, .neon-text {
font-family: 'Orbitron', sans-serif;
text-transform: uppercase;
letter-spacing: 2px;
}
.neon-border {
border: 1px solid var(--neon-blue);
box-shadow: 0 0 10px var(--neon-blue), inset 0 0 5px var(--neon-blue);
}
.glass-panel {
background: rgba(26, 26, 26, 0.8);
backdrop-filter: blur(10px);
border: 1px solid rgba(0, 243, 255, 0.2);
}
#canvas-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-track {
background: var(--cyber-dark);
}
::-webkit-scrollbar-thumb {
background: var(--neon-blue);
box-shadow: 0 0 10px var(--neon-blue);
}
@keyframes glitch {
0% { transform: translate(0); }
20% { transform: translate(-2px, 2px); }
40% { transform: translate(-2px, -2px); }
60% { transform: translate(2px, 2px); }
80% { transform: translate(2px, -2px); }
100% { transform: translate(0); }
}
.glitch-hover:hover {
animation: glitch 0.3s infinite;
}
.scan-lines {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: repeating-linear-gradient(
0deg,
rgba(0, 243, 255, 0.03),
rgba(0, 243, 255, 0.03) 1px,
transparent 1px,
transparent 2px
);
pointer-events: none;
}
.heatmap-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
gap: 4px;
}
.heatmap-cell {
aspect-ratio: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 0.65rem;
border-radius: 2px;
transition: all 0.3s;
cursor: pointer;
border: 1px solid rgba(0, 243, 255, 0.1);
}
.heatmap-cell:hover {
transform: scale(1.15);
z-index: 10;
box-shadow: 0 0 20px currentColor;
border: 1px solid currentColor;
}
.metric-card {
position: relative;
overflow: hidden;
}
.metric-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
animation: shimmer 3s infinite;
}
@keyframes shimmer {
0% { left: -100%; }
100% { left: 100%; }
}
.prediction-bar {
height: 8px;
background: linear-gradient(90deg, #ff00ff, #00f3ff);
border-radius: 4px;
overflow: hidden;
}
.prediction-fill {
height: 100%;
background: linear-gradient(90deg, #00ff9f, #00f3ff);
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 0.6; }
50% { opacity: 1; }
}
.terminal-text {
font-family: 'Courier New', monospace;
font-size: 0.85rem;
line-height: 1.6;
}
.code-block {
background: rgba(0, 0, 0, 0.5);
padding: 1rem;
border-left: 3px solid var(--neon-green);
overflow-x: auto;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.feature-card {
padding: 1.5rem;
border: 1px solid rgba(0, 243, 255, 0.2);
transition: all 0.3s;
position: relative;
}
.feature-card:hover {
border-color: var(--neon-blue);
box-shadow: 0 0 20px var(--neon-blue);
transform: translateY(-5px);
}
.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 3px;
height: 100%;
background: var(--neon-blue);
opacity: 0;
transition: opacity 0.3s;
}
.feature-card:hover::before {
opacity: 1;
}
</style>
</head>
<body>
<div id="canvas-container"></div>
<div class="scan-lines"></div>
<!-- Navigation -->
<nav class="fixed top-0 w-full z-50 px-8 py-4 flex justify-between items-center glass-panel">
<div class="flex items-center gap-3">
<div class="w-10 h-10 neon-border rounded-full flex items-center justify-center relative">
<span class="text-sm font-bold text-[#00f3ff]">CO</span>
</div>
<div>
<div class="text-lg font-bold neon-text text-[#00f3ff]">CypherOracle</div>
<div class="text-[10px] text-gray-500 tracking-widest">PRECISION FINTECH</div>
</div>
</div>
<div class="hidden md:flex gap-8 text-xs uppercase tracking-widest">
<a href="#dashboard" class="hover:text-[#00f3ff] transition">Dashboard</a>
<a href="#predictions" class="hover:text-[#00f3ff] transition">Predictions</a>
<a href="#analytics" class="hover:text-[#00f3ff] transition">Analytics</a>
<a href="#about" class="hover:text-[#00f3ff] transition">About</a>
</div>
<button class="neon-border px-6 py-2 text-xs uppercase hover:bg-[#00f3ff] hover:text-black transition duration-300 glitch-hover">
Connect
</button>
</nav>
<!-- Hero Section -->
<section id="dashboard" class="min-h-screen pt-32 px-8 flex flex-col items-center justify-center relative">
<div class="max-w-5xl text-center mb-16">
<h1 class="text-7xl md:text-8xl mb-6 font-bold">
<span style="color: #00f3ff;">CYPHER</span><br>
<span style="color: #ff00ff; text-shadow: 0 0 20px #ff00ff;">ORACLE</span>
</h1>
<p class="text-xl text-gray-300 mb-8 max-w-3xl mx-auto leading-relaxed">
Harness the power of machine learning to predict cryptocurrency price movements with unprecedented accuracy.
Our advanced algorithms analyze market sentiment, historical patterns, and real-time data streams to guide your investment decisions.
</p>
<div class="flex gap-4 justify-center flex-wrap">
<button class="bg-[#00f3ff] text-black font-bold px-8 py-3 rounded-sm hover:shadow-[0_0_30px_#00f3ff] transition glitch-hover">
START PREDICTING
</button>
<button class="border-2 border-[#ff00ff] text-[#ff00ff] font-bold px-8 py-3 rounded-sm hover:bg-[#ff00ff] hover:text-white transition">
LEARN MORE
</button>
</div>
</div>
<!-- Key Metrics -->
<div class="w-full max-w-6xl grid grid-cols-2 md:grid-cols-4 gap-6 mt-20">
<div class="glass-panel p-6 neon-border metric-card">
<div class="text-xs text-gray-400 uppercase mb-2">Model Accuracy</div>
<div class="text-4xl font-bold text-[#00ff9f]">94.2%</div>
<div class="text-[10px] text-gray-500 mt-2">↑ 2.3% from last month</div>
</div>
<div class="glass-panel p-6 neon-border metric-card">
<div class="text-xs text-gray-400 uppercase mb-2">Predictions/Day</div>
<div class="text-4xl font-bold text-[#00f3ff]">1.2M</div>
<div class="text-[10px] text-gray-500 mt-2">Across 500+ coins</div>
</div>
<div class="glass-panel p-6 neon-border metric-card">
<div class="text-xs text-gray-400 uppercase mb-2">Avg Response Time</div>
<div class="text-4xl font-bold text-[#ff00ff]">12ms</div>
<div class="text-[10px] text-gray-500 mt-2">Real-time processing</div>
</div>
<div class="glass-panel p-6 neon-border metric-card">
<div class="text-xs text-gray-400 uppercase mb-2">Active Users</div>
<div class="text-4xl font-bold text-white">45K+</div>
<div class="text-[10px] text-gray-500 mt-2">Global community</div>
</div>
</div>
</section>
<!-- Market Dashboard -->
<section id="predictions" class="py-32 px-8">
<div class="max-w-7xl mx-auto">
<h2 class="text-4xl mb-12 neon-text text-[#00f3ff]">Live Market Matrix</h2>
<div class="grid md:grid-cols-3 gap-8">
<!-- Candlestick Chart -->
<div class="md:col-span-2 glass-panel p-6 rounded-lg neon-border">
<div class="flex justify-between items-center mb-6">
<h3 class="text-2xl neon-text">BTC/USDT Forecast</h3>
<div class="flex gap-2">
<button class="px-3 py-1 bg-gray-800 text-xs rounded hover:bg-[#00f3ff] hover:text-black transition">1H</button>
<button class="px-3 py-1 bg-[#00f3ff] text-black text-xs rounded">4H</button>
<button class="px-3 py-1 bg-gray-800 text-xs rounded hover:bg-[#00f3ff] hover:text-black transition">1D</button>
</div>
</div>
<div class="h-[350px] bg-black/30 rounded flex items-center justify-center">
<canvas id="candleChart"></canvas>
</div>
</div>
<!-- Heatmap -->
<div class="glass-panel p-6 rounded-lg border border-gray-800">
<h3 class="text-xl mb-6 neon-text text-[#ff00ff]">Market Heat Index</h3>
<div class="heatmap-grid" id="heatmap"></div>
<div class="mt-8 pt-6 border-t border-gray-700">
<div class="text-xs font-mono text-gray-400 mb-3">TOP MOVERS</div>
<div class="space-y-2">
<div class="flex justify-between text-sm">
<span>BTC</span>
<span class="text-[#00ff9f]">+5.2%</span>
</div>
<div class="flex justify-between text-sm">
<span>ETH</span>
<span class="text-[#00ff9f]">+3.8%</span>
</div>
<div class="flex justify-between text-sm">
<span>SOL</span>
<span class="text-[#ff00ff]">-2.1%</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ML Pipeline Section -->
<section id="analytics" class="py-32 px-8 bg-[#0a0a0a]">
<div class="max-w-7xl mx-auto">
<h2 class="text-4xl mb-16 neon-text text-center text-[#00ff9f]">Machine Learning Pipeline</h2>
<div class="feature-grid">
<div class="feature-card glass-panel">
<div class="text-[#00f3ff] text-2xl mb-3">📊</div>
<h3 class="text-lg font-bold mb-3">Data Collection</h3>
<p class="text-sm text-gray-400 mb-4">Real-time data ingestion from Binance, CoinMarketCap, and blockchain networks.</p>
<div class="prediction-bar">
<div class="prediction-fill" style="width: 85%;"></div>
</div>
</div>
<div class="feature-card glass-panel">
<div class="text-[#ff00ff] text-2xl mb-3">🔧</div>
<h3 class="text-lg font-bold mb-3">Data Preprocessing</h3>
<p class="text-sm text-gray-400 mb-4">Normalization, scaling, and handling missing values for algorithm readiness.</p>
<div class="prediction-bar">
<div class="prediction-fill" style="width: 92%;"></div>
</div>
</div>
<div class="feature-card glass-panel">
<div class="text-[#00ff9f] text-2xl mb-3">🎯</div>
<h3 class="text-lg font-bold mb-3">Feature Selection</h3>
<p class="text-sm text-gray-400 mb-4">Identify key indicators: volume spikes, volatility indexes, sentiment scores.</p>
<div class="prediction-bar">
<div class="prediction-fill" style="width: 88%;"></div>
</div>
</div>
<div class="feature-card glass-panel">
<div class="text-[#00f3ff] text-2xl mb-3">🧠</div>
<h3 class="text-lg font-bold mb-3">Model Training</h3>
<p class="text-sm text-gray-400 mb-4">Random Forest, XGBoost, LSTM with 80/20 train-test split validation.</p>
<div class="prediction-bar">
<div class="prediction-fill" style="width: 95%;"></div>
</div>
</div>
<div class="feature-card glass-panel">
<div class="text-[#ff00ff] text-2xl mb-3">📈</div>
<h3 class="text-lg font-bold mb-3">Performance Metrics</h3>
<p class="text-sm text-gray-400 mb-4">Accuracy, Precision, Recall, F1-Score continuously monitored.</p>
<div class="prediction-bar">
<div class="prediction-fill" style="width: 94.2%;"></div>
</div>
</div>
<div class="feature-card glass-panel">
<div class="text-[#00ff9f] text-2xl mb-3">🚀</div>
<h3 class="text-lg font-bold mb-3">Live Predictions</h3>
<p class="text-sm text-gray-400 mb-4">Real-time forecasts delivered to users with confidence intervals.</p>
<div class="prediction-bar">
<div class="prediction-fill" style="width: 91%;"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Sentiment Analysis -->
<section id="about" class="py-32 px-8">
<div class="max-w-7xl mx-auto">
<h2 class="text-4xl mb-12 text-center neon-text">Neural Sentiment Engine</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="glass-panel p-6 border-l-4 border-[#00f3ff]">
<div class="flex justify-between mb-4">
<span class="text-xs uppercase text-gray-500 font-mono">Social Sentiment</span>
<span class="text-[#00f3ff] text-xs font-bold">+72%</span>
</div>
<p class="italic text-gray-300 text-sm mb-4">"Bitcoin adoption accelerating among institutional investors..."</p>
<div class="flex gap-2 flex-wrap">
<span class="text-[10px] px-2 py-1 bg-blue-900/30 rounded">TWITTER</span>
<span class="text-[10px] px-2 py-1 bg-blue-900/30 rounded">REDDIT</span>
</div>
</div>
<div class="glass-panel p-6 border-l-4 border-[#ff00ff]">
<div class="flex justify-between mb-4">
<span class="text-xs uppercase text-gray-500 font-mono">News Sentiment</span>
<span class="text-[#ff00ff] text-xs font-bold">±45%</span>
</div>
<p class="italic text-gray-300 text-sm mb-4">"SEC reviews crypto regulation framework amid market volatility..."</p>
<div class="flex gap-2 flex-wrap">
<span class="text-[10px] px-2 py-1 bg-pink-900/30 rounded">REUTERS</span>
<span class="text-[10px] px-2 py-1 bg-pink-900/30 rounded">COINDESK</span>
</div>
</div>
<div class="glass-panel p-6 border-l-4 border-[#00ff9f]">
<div class="flex justify-between mb-4">
<span class="text-xs uppercase text-gray-500 font-mono">On-Chain Signal</span>
<span class="text-[#00ff9f] text-xs font-bold">+88%</span>
</div>
<p class="italic text-gray-300 text-sm mb-4">"Large whale transactions moving to cold storage wallets..."</p>
<div class="flex gap-2 flex-wrap">
<span class="text-[10px] px-2 py-1 bg-green-900/30 rounded">BLOCKCHAIN</span>
</div>
</div>
</div>
</div>
</section>
<footer class="py-12 px-8 border-t border-gray-800 text-center">
<p class="text-gray-500 text-sm font-mono">© 2026 CYPHERORACLE | ML-POWERED CRYPTO PREDICTION SYSTEM</p>
</footer>
<script>
// Three.js 3D Background
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
const renderer = new THREE.WebGLRenderer({ antialias: true, alpha: true });
renderer.setSize(window.innerWidth, window.innerHeight);
document.getElementById('canvas-container').appendChild(renderer.domElement);
// Particle system
const particlesGeometry = new THREE.BufferGeometry();
const particlesCount = 1500;
const posArray = new Float32Array(particlesCount * 3);
for(let i = 0; i < particlesCount * 3; i++) {
posArray[i] = (Math.random() - 0.5) * 8;
}
particlesGeometry.setAttribute('position', new THREE.BufferAttribute(posArray, 3));
const particlesMaterial = new THREE.PointsMaterial({
size: 0.007,
color: 0x00f3ff,
transparent: true,
opacity: 0.6
});
const particlesMesh = new THREE.Points(particlesGeometry, particlesMaterial);
scene.add(particlesMesh);
// Grid
const gridHelper = new THREE.GridHelper(15, 30, 0xff00ff, 0x1a1a1a);
gridHelper.position.y = -2;
scene.add(gridHelper);
camera.position.z = 4;
function animate() {
requestAnimationFrame(animate);
particlesMesh.rotation.y += 0.0005;
particlesMesh.rotation.x += 0.0002;
renderer.render(scene, camera);
}
animate();
// Heatmap
const heatmap = document.getElementById('heatmap');
const coins = ['BTC', 'ETH', 'BNB', 'SOL', 'XRP', 'ADA', 'DOGE', 'DOT', 'MATIC', 'AVAX', 'SHIB', 'LTC', 'TRX', 'LINK', 'UNI', 'ATOM'];
coins.forEach(coin => {
const change = (Math.random() * 12 - 6).toFixed(1);
const cell = document.createElement('div');
cell.className = 'heatmap-cell';
if(change > 0) {
cell.style.backgroundColor = `rgba(0, 255, 159, ${Math.abs(change)/12 + 0.3})`;
cell.style.color = '#00ff9f';
} else {
cell.style.backgroundColor = `rgba(255, 0, 255, ${Math.abs(change)/12 + 0.3})`;
cell.style.color = '#ff00ff';
}
cell.innerHTML = `<strong>${coin}</strong><span>${change}%</span>`;
heatmap.appendChild(cell);
});
// Responsive
window.addEventListener('resize', () => {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
});
</script>
</body>
</html>