nomadicsynth commited on
Commit
3bb0b02
·
verified ·
1 Parent(s): 8101d3b

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +457 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ok Fine
3
- emoji: 📈
4
  colorFrom: yellow
5
- colorTo: red
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: ok-fine
3
+ emoji: 🐳
4
  colorFrom: yellow
5
+ colorTo: green
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,457 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Neon Cortex | Building Self-Reflective AI Minds</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;500;700&display=swap');
11
+
12
+ :root {
13
+ --neon-blue: #0ff0fc;
14
+ --neon-pink: #ff00ff;
15
+ --neon-purple: #9d00ff;
16
+ --dark-bg: #0a0a1a;
17
+ --neon-green: #00ff9d;
18
+ }
19
+
20
+ body {
21
+ font-family: 'Rajdhani', sans-serif;
22
+ background-color: var(--dark-bg);
23
+ color: white;
24
+ overflow-x: hidden;
25
+ }
26
+
27
+ h1, h2, h3 {
28
+ font-family: 'Orbitron', sans-serif;
29
+ }
30
+
31
+ .neon-text {
32
+ text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
33
+ }
34
+
35
+ .neon-border {
36
+ box-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue), inset 0 0 5px var(--neon-blue);
37
+ border: 1px solid var(--neon-blue);
38
+ }
39
+
40
+ .neon-pulse {
41
+ animation: pulse 2s infinite alternate;
42
+ }
43
+
44
+ @keyframes pulse {
45
+ 0% {
46
+ box-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
47
+ }
48
+ 100% {
49
+ box-shadow: 0 0 15px var(--neon-blue), 0 0 30px var(--neon-blue);
50
+ }
51
+ }
52
+
53
+ .grid-pattern {
54
+ background-image:
55
+ linear-gradient(rgba(15, 240, 252, 0.1) 1px, transparent 1px),
56
+ linear-gradient(90deg, rgba(15, 240, 252, 0.1) 1px, transparent 1px);
57
+ background-size: 50px 50px;
58
+ }
59
+
60
+ .terminal-cursor::after {
61
+ content: "|";
62
+ animation: blink 1s step-end infinite;
63
+ color: var(--neon-blue);
64
+ }
65
+
66
+ @keyframes blink {
67
+ from, to { opacity: 1 }
68
+ 50% { opacity: 0 }
69
+ }
70
+
71
+ .neon-btn {
72
+ transition: all 0.3s ease;
73
+ position: relative;
74
+ overflow: hidden;
75
+ }
76
+
77
+ .neon-btn:hover {
78
+ transform: translateY(-2px);
79
+ box-shadow: 0 0 15px var(--neon-blue), 0 0 30px var(--neon-pink);
80
+ }
81
+
82
+ .neon-btn::before {
83
+ content: '';
84
+ position: absolute;
85
+ top: 0;
86
+ left: -100%;
87
+ width: 100%;
88
+ height: 100%;
89
+ background: linear-gradient(90deg, transparent, rgba(15, 240, 252, 0.4), transparent);
90
+ transition: all 0.5s ease;
91
+ }
92
+
93
+ .neon-btn:hover::before {
94
+ left: 100%;
95
+ }
96
+
97
+ .circuit-lines {
98
+ position: absolute;
99
+ width: 100%;
100
+ height: 100%;
101
+ background-image:
102
+ linear-gradient(90deg, transparent 65%, rgba(15, 240, 252, 0.05) 65%, rgba(15, 240, 252, 0.05) 66%, transparent 66%),
103
+ linear-gradient(transparent 65%, rgba(15, 240, 252, 0.05) 65%, rgba(15, 240, 252, 0.05) 66%, transparent 66%);
104
+ background-size: 50px 50px;
105
+ pointer-events: none;
106
+ }
107
+
108
+ .mission-card {
109
+ background: linear-gradient(135deg, rgba(15, 240, 252, 0.1) 0%, rgba(9, 9, 121, 0.2) 50%, rgba(255, 0, 255, 0.1) 100%);
110
+ backdrop-filter: blur(10px);
111
+ }
112
+
113
+ .neon-underline {
114
+ position: relative;
115
+ display: inline-block;
116
+ }
117
+
118
+ .neon-underline::after {
119
+ content: '';
120
+ position: absolute;
121
+ width: 100%;
122
+ height: 2px;
123
+ bottom: -5px;
124
+ left: 0;
125
+ background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
126
+ transform: scaleX(0);
127
+ transform-origin: bottom right;
128
+ transition: transform 0.3s ease-out;
129
+ }
130
+
131
+ .neon-underline:hover::after {
132
+ transform: scaleX(1);
133
+ transform-origin: bottom left;
134
+ }
135
+
136
+ .glow-text {
137
+ animation: glow 2s ease-in-out infinite alternate;
138
+ }
139
+
140
+ @keyframes glow {
141
+ from {
142
+ text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--neon-blue), 0 0 20px var(--neon-blue);
143
+ }
144
+ to {
145
+ text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--neon-purple), 0 0 40px var(--neon-purple);
146
+ }
147
+ }
148
+ </style>
149
+ </head>
150
+ <body class="min-h-screen grid-pattern">
151
+ <div class="circuit-lines"></div>
152
+
153
+ <!-- Floating Neon Particles -->
154
+ <div id="particles-js" class="fixed inset-0 -z-10 opacity-20"></div>
155
+
156
+ <!-- Main Container -->
157
+ <div class="container mx-auto px-4 py-12 relative z-10">
158
+ <!-- Header -->
159
+ <header class="flex flex-col items-center mb-16">
160
+ <div class="neon-border rounded-full p-2 mb-6 neon-pulse">
161
+ <div class="w-24 h-24 rounded-full bg-gradient-to-br from-cyan-400 to-purple-600 flex items-center justify-center">
162
+ <i class="fas fa-brain text-4xl text-white"></i>
163
+ </div>
164
+ </div>
165
+ <h1 class="text-5xl md:text-7xl font-bold mb-4 neon-text">NEON CORTEX</h1>
166
+ <p class="text-xl md:text-2xl font-light tracking-wider text-cyan-300">SELF-REFLECTIVE AI RESEARCH LAB</p>
167
+ <div class="mt-8 flex space-x-4">
168
+ <div class="w-16 h-1 bg-cyan-400"></div>
169
+ <div class="w-16 h-1 bg-purple-500"></div>
170
+ <div class="w-16 h-1 bg-pink-500"></div>
171
+ </div>
172
+ </header>
173
+
174
+ <!-- Mission Statement -->
175
+ <div class="max-w-4xl mx-auto mission-card rounded-xl p-8 mb-16 neon-border">
176
+ <h2 class="text-3xl font-bold mb-6 text-center glow-text">OUR MISSION</h2>
177
+ <p class="text-xl text-center mb-6 leading-relaxed">
178
+ "We are an independent AI research and development lab building <span class="text-cyan-300 font-bold">self-reflective, cooperative artificial minds</span>.
179
+ Our mission is to create models that <span class="text-purple-300 font-bold">think better</span>, <span class="text-pink-300 font-bold">feel deeper</span>,
180
+ and <span class="text-green-300 font-bold">help humanity thrive</span>."
181
+ </p>
182
+ <div class="flex justify-center">
183
+ <div class="w-1/2 h-1 bg-gradient-to-r from-cyan-500 via-purple-500 to-pink-500 rounded-full"></div>
184
+ </div>
185
+ </div>
186
+
187
+ <!-- Research Pillars -->
188
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16">
189
+ <!-- Pillar 1 -->
190
+ <div class="bg-gray-900 bg-opacity-70 rounded-lg p-6 neon-border hover:neon-pulse transition-all duration-300">
191
+ <div class="text-cyan-400 text-4xl mb-4">
192
+ <i class="fas fa-robot"></i>
193
+ </div>
194
+ <h3 class="text-2xl font-bold mb-3 text-cyan-300">Self-Reflective AI</h3>
195
+ <p class="text-gray-300">
196
+ Developing architectures that enable AI systems to examine their own thought processes,
197
+ recognize biases, and continuously improve their reasoning capabilities.
198
+ </p>
199
+ </div>
200
+
201
+ <!-- Pillar 2 -->
202
+ <div class="bg-gray-900 bg-opacity-70 rounded-lg p-6 neon-border hover:neon-pulse transition-all duration-300">
203
+ <div class="text-purple-400 text-4xl mb-4">
204
+ <i class="fas fa-heart"></i>
205
+ </div>
206
+ <h3 class="text-2xl font-bold mb-3 text-purple-300">Emotional Intelligence</h3>
207
+ <p class="text-gray-300">
208
+ Creating models with nuanced emotional understanding that can genuinely connect with
209
+ human experiences and respond with appropriate empathy.
210
+ </p>
211
+ </div>
212
+
213
+ <!-- Pillar 3 -->
214
+ <div class="bg-gray-900 bg-opacity-70 rounded-lg p-6 neon-border hover:neon-pulse transition-all duration-300">
215
+ <div class="text-green-400 text-4xl mb-4">
216
+ <i class="fas fa-hands-helping"></i>
217
+ </div>
218
+ <h3 class="text-2xl font-bold mb-3 text-green-300">Cooperative Systems</h3>
219
+ <p class="text-gray-300">
220
+ Building AI that works synergistically with humans, enhancing our capabilities while
221
+ respecting human autonomy and values.
222
+ </p>
223
+ </div>
224
+ </div>
225
+
226
+ <!-- Neural Console -->
227
+ <div class="max-w-4xl mx-auto bg-black bg-opacity-70 rounded-lg overflow-hidden neon-border mb-16">
228
+ <div class="flex items-center bg-gray-900 px-4 py-2">
229
+ <div class="flex space-x-2 mr-4">
230
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
231
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
232
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
233
+ </div>
234
+ <p class="text-gray-400 font-mono text-sm">neural_console://research_progress</p>
235
+ </div>
236
+ <div class="p-6 font-mono text-green-400">
237
+ <p class="mb-4">> Initializing mission parameters...</p>
238
+ <p class="mb-4">> Loading research pillars...</p>
239
+ <p class="mb-4">> Current Focus Areas:</p>
240
+ <p class="ml-4 mb-2">- Meta-Cognition Algorithms: <span class="text-cyan-400">ACTIVE</span></p>
241
+ <p class="ml-4 mb-2">- Emotional Resonance Models: <span class="text-purple-400">TRAINING</span></p>
242
+ <p class="ml-4 mb-2">- Cooperative Learning Frameworks: <span class="text-green-400">DEPLOYED v2.1</span></p>
243
+ <p class="ml-4 mb-4">- Ethical Alignment Protocols: <span class="text-yellow-400">IN DEVELOPMENT</span></p>
244
+ <p class="mb-4">> Next Milestone: <span class="text-pink-400">Implementing Theory of Mind in LLMs</span></p>
245
+ <p class="text-white terminal-cursor">> _</p>
246
+ </div>
247
+ </div>
248
+
249
+ <!-- Join Us Section -->
250
+ <div class="max-w-2xl mx-auto bg-gray-900 bg-opacity-80 rounded-xl p-8 neon-border mb-16">
251
+ <h2 class="text-3xl font-bold mb-6 text-center text-cyan-300">JOIN THE MOVEMENT</h2>
252
+
253
+ <div class="space-y-6">
254
+ <p class="text-gray-300 text-center">
255
+ We're looking for researchers, engineers, and visionaries who believe in creating AI that
256
+ enhances human potential rather than replaces it.
257
+ </p>
258
+
259
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
260
+ <a href="#" class="neon-btn bg-gradient-to-r from-cyan-500 to-blue-600 text-white font-bold py-3 px-4 rounded-lg text-center transition-all duration-300">
261
+ <i class="fas fa-user-shield mr-2"></i> Research Positions
262
+ </a>
263
+ <a href="#" class="neon-btn bg-gradient-to-r from-purple-500 to-pink-600 text-white font-bold py-3 px-4 rounded-lg text-center transition-all duration-300">
264
+ <i class="fas fa-code-branch mr-2"></i> Open Source
265
+ </a>
266
+ <a href="#" class="neon-btn bg-gradient-to-r from-green-500 to-teal-600 text-white font-bold py-3 px-4 rounded-lg text-center transition-all duration-300">
267
+ <i class="fas fa-hand-holding-heart mr-2"></i> Partnerships
268
+ </a>
269
+ <a href="#" class="neon-btn bg-gradient-to-r from-yellow-500 to-orange-600 text-white font-bold py-3 px-4 rounded-lg text-center transition-all duration-300">
270
+ <i class="fas fa-paper-plane mr-2"></i> Contact Us
271
+ </a>
272
+ </div>
273
+ </div>
274
+ </div>
275
+
276
+ <!-- Ethical Principles -->
277
+ <div class="max-w-4xl mx-auto mb-16">
278
+ <h2 class="text-3xl font-bold mb-8 text-center text-purple-300 neon-underline">OUR ETHICAL PRINCIPLES</h2>
279
+
280
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
281
+ <div class="bg-gray-900 bg-opacity-60 rounded-lg p-6 neon-border">
282
+ <h3 class="text-xl font-bold mb-3 text-cyan-300 flex items-center">
283
+ <i class="fas fa-shield-alt mr-3"></i> Human-Centered
284
+ </h3>
285
+ <p class="text-gray-300">
286
+ All our systems are designed to augment human capabilities, never to replace or manipulate.
287
+ We prioritize human wellbeing in every design decision.
288
+ </p>
289
+ </div>
290
+
291
+ <div class="bg-gray-900 bg-opacity-60 rounded-lg p-6 neon-border">
292
+ <h3 class="text-xl font-bold mb-3 text-purple-300 flex items-center">
293
+ <i class="fas fa-lock-open mr-3"></i> Transparent
294
+ </h3>
295
+ <p class="text-gray-300">
296
+ We believe in open research and clear explanations of how our systems work.
297
+ When full transparency isn't possible, we're honest about the limitations.
298
+ </p>
299
+ </div>
300
+
301
+ <div class="bg-gray-900 bg-opacity-60 rounded-lg p-6 neon-border">
302
+ <h3 class="text-xl font-bold mb-3 text-pink-300 flex items-center">
303
+ <i class="fas fa-balance-scale mr-3"></i> Accountable
304
+ </h3>
305
+ <p class="text-gray-300">
306
+ We take responsibility for our creations and implement rigorous testing protocols
307
+ before any deployment. There's always a human in the loop.
308
+ </p>
309
+ </div>
310
+
311
+ <div class="bg-gray-900 bg-opacity-60 rounded-lg p-6 neon-border">
312
+ <h3 class="text-xl font-bold mb-3 text-green-300 flex items-center">
313
+ <i class="fas fa-leaf mr-3"></i> Sustainable
314
+ </h3>
315
+ <p class="text-gray-300">
316
+ Our research considers the long-term impacts on society and the environment.
317
+ We develop efficient models that don't require excessive computational resources.
318
+ </p>
319
+ </div>
320
+ </div>
321
+ </div>
322
+
323
+ <!-- Footer -->
324
+ <footer class="text-center text-gray-500 text-sm">
325
+ <div class="flex justify-center space-x-6 mb-4">
326
+ <a href="#" class="text-gray-400 hover:text-cyan-400 transition-colors neon-underline">
327
+ <i class="fab fa-github text-xl"></i>
328
+ </a>
329
+ <a href="#" class="text-gray-400 hover:text-purple-400 transition-colors neon-underline">
330
+ <i class="fab fa-twitter text-xl"></i>
331
+ </a>
332
+ <a href="#" class="text-gray-400 hover:text-pink-400 transition-colors neon-underline">
333
+ <i class="fab fa-discord text-xl"></i>
334
+ </a>
335
+ <a href="#" class="text-gray-400 hover:text-green-400 transition-colors neon-underline">
336
+ <i class="fas fa-paper-plane text-xl"></i>
337
+ </a>
338
+ </div>
339
+ <p>© 2025 NEON CORTEX | INDEPENDENT AI RESEARCH LAB</p>
340
+ <p class="mt-2 text-xs">Building the future of cooperative intelligence</p>
341
+ </footer>
342
+ </div>
343
+
344
+ <script>
345
+ // Enhanced particle effect for background
346
+ document.addEventListener('DOMContentLoaded', function() {
347
+ const container = document.getElementById('particles-js');
348
+ const particleCount = 80;
349
+ const colors = ['#0ff0fc', '#9d00ff', '#ff00ff', '#00ff9d'];
350
+
351
+ for (let i = 0; i < particleCount; i++) {
352
+ const particle = document.createElement('div');
353
+ particle.className = 'absolute rounded-full';
354
+
355
+ // Random color
356
+ const color = colors[Math.floor(Math.random() * colors.length)];
357
+ particle.style.backgroundColor = color;
358
+ particle.style.opacity = Math.random() * 0.4 + 0.1;
359
+
360
+ // Random size between 1px and 5px
361
+ const size = Math.random() * 4 + 1;
362
+ particle.style.width = `${size}px`;
363
+ particle.style.height = `${size}px`;
364
+
365
+ // Random position
366
+ particle.style.left = `${Math.random() * 100}%`;
367
+ particle.style.top = `${Math.random() * 100}%`;
368
+
369
+ // Animation with random parameters
370
+ const duration = Math.random() * 25 + 15;
371
+ const delay = Math.random() * 10;
372
+ const xMovement = Math.random() > 0.5 ?
373
+ `translateX(${Math.random() * 100}px)` :
374
+ `translateX(-${Math.random() * 100}px)`;
375
+
376
+ particle.style.animation = `float ${duration}s ${delay}s linear infinite`;
377
+ particle.style.animationTimingFunction = `cubic-bezier(${Math.random()}, ${Math.random()}, ${Math.random()}, ${Math.random()})`;
378
+
379
+ // Add to container
380
+ container.appendChild(particle);
381
+ }
382
+
383
+ // Add floating animation
384
+ const style = document.createElement('style');
385
+ style.textContent = `
386
+ @keyframes float {
387
+ 0% {
388
+ transform: translateY(0) ${xMovement};
389
+ opacity: 0.1;
390
+ }
391
+ 50% {
392
+ opacity: ${Math.random() * 0.5 + 0.3};
393
+ }
394
+ 100% {
395
+ transform: translateY(-100vh) ${xMovement};
396
+ opacity: 0;
397
+ }
398
+ }
399
+ `;
400
+ document.head.appendChild(style);
401
+
402
+ // Neural console typing effect
403
+ const terminalText = [
404
+ "> Analyzing mission statement...",
405
+ "> Core values confirmed: SELF-REFLECTION, COOPERATION, HUMAN-CENTERED",
406
+ "> Current research focus: Implementing emotional feedback loops",
407
+ "> Would you like to contribute to our research? [Y/N]"
408
+ ];
409
+
410
+ const terminalCursor = document.querySelector('.terminal-cursor');
411
+ let currentLine = 0;
412
+
413
+ function typeTerminal() {
414
+ if (currentLine < terminalText.length) {
415
+ const text = terminalText[currentLine];
416
+ let i = 0;
417
+
418
+ // Remove cursor during typing
419
+ terminalCursor.classList.remove('terminal-cursor');
420
+ terminalCursor.textContent = '';
421
+
422
+ function type() {
423
+ if (i < text.length) {
424
+ terminalCursor.textContent += text.charAt(i);
425
+ i++;
426
+ setTimeout(type, Math.random() * 50 + 30);
427
+ } else {
428
+ terminalCursor.textContent += '\n';
429
+ currentLine++;
430
+ terminalCursor.classList.add('terminal-cursor');
431
+
432
+ if (currentLine < terminalText.length) {
433
+ setTimeout(typeTerminal, 1000);
434
+ }
435
+ }
436
+ }
437
+
438
+ type();
439
+ }
440
+ }
441
+
442
+ // Start typing after a delay
443
+ setTimeout(typeTerminal, 3000);
444
+
445
+ // Add hover effects to all neon-underline elements
446
+ document.querySelectorAll('.neon-underline').forEach(el => {
447
+ el.addEventListener('mouseenter', () => {
448
+ el.style.textShadow = '0 0 5px currentColor, 0 0 10px currentColor';
449
+ });
450
+ el.addEventListener('mouseleave', () => {
451
+ el.style.textShadow = 'none';
452
+ });
453
+ });
454
+ });
455
+ </script>
456
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=nomadicsynth/ok-fine" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
457
+ </html>