ANTIMOLL commited on
Commit
c9fd851
·
verified ·
1 Parent(s): e5aa29f

Upload index.html

Browse files
Files changed (1) hide show
  1. index.html +530 -0
index.html ADDED
@@ -0,0 +1,530 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="ru">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>СССР Очки - Ретро Линзы 60-х</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
+ <style>
11
+ :root {
12
+ --red: #CC2222;
13
+ --gold: #FFD700;
14
+ --vintage: #2F2F2F;
15
+ --cream: #F5F5DC;
16
+ }
17
+
18
+ body {
19
+ font-family: 'Roboto', sans-serif;
20
+ background-color: var(--cream);
21
+ margin: 0;
22
+ color: #333;
23
+ }
24
+
25
+ .logo {
26
+ animation: pulse 3s infinite;
27
+ filter: drop-shadow(0 0 10px rgba(204, 34, 34, 0.7));
28
+ }
29
+
30
+ @keyframes pulse {
31
+ 0% { transform: scale(1); }
32
+ 50% { transform: scale(1.05); }
33
+ 100% { transform: scale(1); }
34
+ }
35
+
36
+ .header {
37
+ background: linear-gradient(135deg, var(--red) 0%, var(--vintage) 100%);
38
+ padding: 15px;
39
+ text-align: center;
40
+ border-bottom: 3px solid var(--gold);
41
+ position: relative;
42
+ overflow: hidden;
43
+ }
44
+
45
+ .header::before {
46
+ content: "";
47
+ position: absolute;
48
+ top: 0;
49
+ left: 0;
50
+ right: 0;
51
+ bottom: 0;
52
+ background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="10" y="50" font-family="Arial" font-size="20" fill="rgba(255,255,255,0.05)">◭◮</text></svg>');
53
+ opacity: 0.3;
54
+ }
55
+
56
+ .hero {
57
+ background: rgba(245, 245, 220, 0.7);
58
+ padding: 80px 20px;
59
+ text-align: center;
60
+ position: relative;
61
+ }
62
+
63
+ .hero::after {
64
+ content: "";
65
+ position: absolute;
66
+ top: 0;
67
+ left: 0;
68
+ right: 0;
69
+ bottom: 0;
70
+ background: rgba(245, 245, 220, 0.7);
71
+ }
72
+
73
+ .hero-content {
74
+ position: relative;
75
+ z-index: 1;
76
+ }
77
+
78
+ .cta-button {
79
+ background: var(--gold);
80
+ color: var(--red) !important;
81
+ padding: 12px 30px;
82
+ border: none;
83
+ font-size: 1.1em;
84
+ font-weight: bold;
85
+ cursor: pointer;
86
+ transition: all 0.3s;
87
+ text-decoration: none;
88
+ display: inline-block;
89
+ margin-top: 20px;
90
+ border-radius: 30px;
91
+ box-shadow: 0 4px 8px rgba(0,0,0,0.2);
92
+ }
93
+
94
+ .cta-button:hover {
95
+ transform: translateY(-3px);
96
+ box-shadow: 0 6px 12px rgba(0,0,0,0.3);
97
+ }
98
+
99
+ .product-card {
100
+ border: 2px solid var(--red);
101
+ padding: 20px;
102
+ text-align: center;
103
+ transition: all 0.3s;
104
+ background: white;
105
+ border-radius: 8px;
106
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
107
+ }
108
+
109
+ .product-card:hover {
110
+ transform: translateY(-10px);
111
+ box-shadow: 0 10px 20px rgba(0,0,0,0.2);
112
+ }
113
+
114
+ .gallery {
115
+ padding: 40px 20px;
116
+ position: relative;
117
+ }
118
+
119
+ .gallery::before {
120
+ content: "";
121
+ position: absolute;
122
+ top: 0;
123
+ left: 0;
124
+ right: 0;
125
+ bottom: 0;
126
+ background: rgba(0,0,0,0.03);
127
+ }
128
+
129
+ .gallery img {
130
+ width: 100%;
131
+ height: 250px;
132
+ object-fit: cover;
133
+ filter: sepia(0.4) contrast(1.1);
134
+ border: 3px solid var(--gold);
135
+ transition: all 0.3s;
136
+ border-radius: 4px;
137
+ }
138
+
139
+ .gallery img:hover {
140
+ filter: sepia(0.2) contrast(1.2);
141
+ transform: scale(1.02);
142
+ }
143
+
144
+ .newsletter {
145
+ background: linear-gradient(135deg, var(--vintage) 0%, #1a1a1a 100%);
146
+ padding: 40px 20px;
147
+ text-align: center;
148
+ color: white;
149
+ position: relative;
150
+ overflow: hidden;
151
+ }
152
+
153
+ .newsletter::before {
154
+ content: "";
155
+ position: absolute;
156
+ top: 0;
157
+ left: 0;
158
+ right: 0;
159
+ bottom: 0;
160
+ background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="10" y="50" font-family="Arial" font-size="20" fill="rgba(255,215,0,0.05)">СССР</text></svg>');
161
+ opacity: 0.3;
162
+ }
163
+
164
+ input[type="email"] {
165
+ padding: 12px 15px;
166
+ width: 100%;
167
+ max-width: 400px;
168
+ margin: 15px auto;
169
+ border: 2px solid var(--gold);
170
+ border-radius: 30px;
171
+ font-size: 1em;
172
+ outline: none;
173
+ }
174
+
175
+ .mobile-menu {
176
+ display: none;
177
+ position: fixed;
178
+ bottom: 20px;
179
+ left: 50%;
180
+ transform: translateX(-50%);
181
+ background: var(--red);
182
+ border-radius: 30px;
183
+ padding: 10px;
184
+ box-shadow: 0 4px 12px rgba(0,0,0,0.3);
185
+ z-index: 100;
186
+ }
187
+
188
+ .mobile-menu a {
189
+ color: white;
190
+ margin: 0 10px;
191
+ font-size: 1.2em;
192
+ }
193
+
194
+ @media (max-width: 768px) {
195
+ .header h1 {
196
+ font-size: 1.8em;
197
+ }
198
+
199
+ .hero {
200
+ padding: 60px 20px;
201
+ }
202
+
203
+ .features {
204
+ grid-template-columns: 1fr;
205
+ gap: 20px;
206
+ }
207
+
208
+ .mobile-menu {
209
+ display: flex;
210
+ }
211
+
212
+ .gallery {
213
+ grid-template-columns: 1fr;
214
+ }
215
+ }
216
+
217
+ @media (min-width: 769px) and (max-width: 1024px) {
218
+ .features {
219
+ grid-template-columns: repeat(2, 1fr);
220
+ }
221
+ }
222
+
223
+ .floating {
224
+ animation: floating 3s ease-in-out infinite;
225
+ }
226
+
227
+ @keyframes floating {
228
+ 0% { transform: translateY(0px); }
229
+ 50% { transform: translateY(-10px); }
230
+ 100% { transform: translateY(0px); }
231
+ }
232
+
233
+ .hammer-sickle {
234
+ font-size: 1.5em;
235
+ margin: 0 5px;
236
+ color: var(--gold);
237
+ }
238
+
239
+ /* Стили для цветных кружков-линз */
240
+ .lens-color {
241
+ width: 50px;
242
+ height: 50px;
243
+ border-radius: 50%;
244
+ display: inline-block;
245
+ margin: 10px;
246
+ cursor: pointer;
247
+ border: 3px solid transparent;
248
+ transition: all 0.3s ease;
249
+ position: relative;
250
+ box-shadow: 0 4px 8px rgba(0,0,0,0.2);
251
+ }
252
+
253
+ .lens-color:hover {
254
+ transform: scale(1.1);
255
+ box-shadow: 0 6px 12px rgba(0,0,0,0.3);
256
+ }
257
+
258
+ .lens-color.active {
259
+ border-color: var(--gold);
260
+ transform: scale(1.1);
261
+ }
262
+
263
+ .lens-color::after {
264
+ content: '';
265
+ position: absolute;
266
+ top: 10px;
267
+ left: 10px;
268
+ width: 10px;
269
+ height: 10px;
270
+ border-radius: 50%;
271
+ background: rgba(255,255,255,0.5);
272
+ }
273
+
274
+ .colors-container {
275
+ margin: 30px 0;
276
+ display: flex;
277
+ flex-wrap: wrap;
278
+ justify-content: center;
279
+ max-width: 600px;
280
+ margin-left: auto;
281
+ margin-right: auto;
282
+ }
283
+ </style>
284
+ </head>
285
+ <body>
286
+ <header class="header">
287
+ <div class="logo">
288
+ <h1 class="text-3xl md:text-4xl font-bold font-serif text-white">
289
+ <span class="hammer-sickle">☭</span> СССР ОЧКИ 1960 <span class="hammer-sickle">☭</span>
290
+ </h1>
291
+ </div>
292
+ </header>
293
+
294
+ <section class="hero">
295
+ <div class="hero-content">
296
+ <h2 class="text-2xl md:text-3xl font-bold mb-4" style="color: var(--red);">Смотри на мир через линзы истории</h2>
297
+ <p class="text-lg md:text-xl mb-6">Оригинальные оправы из СССР с линзами ручной окраски</p>
298
+ <a href="#colors" class="cta-button">
299
+ <i class="fas fa-glasses mr-2"></i> ВЫБРАТЬ СВОЙ ЦВЕТ
300
+ </a>
301
+
302
+ <!-- Добавленный блок с цветами линз -->
303
+ <div id="colors" class="colors-container">
304
+ <div class="lens-color active" style="background: #4a6fa5;" title="Синий"></div>
305
+ <div class="lens-color" style="background: #8b4513;" title="Коричневый"></div>
306
+ <div class="lens-color" style="background: #228b22;" title="Зеленый"></div>
307
+ <div class="lens-color" style="background: #ff6347;" title="Красный"></div>
308
+ <div class="lens-color" style="background: #9370db;" title="Фиолетовый"></div>
309
+ <div class="lens-color" style="background: #ffd700;" title="Золотой"></div>
310
+ <div class="lens-color" style="background: #708090;" title="Серый"></div>
311
+ <div class="lens-color" style="background: #ff69b4;" title="Розовый"></div>
312
+ <div class="lens-color" style="background: #40e0d0;" title="Бирюзовый"></div>
313
+ <div class="lens-color" style="background: #000000;" title="Черный"></div>
314
+ </div>
315
+
316
+ <div class="mt-8 floating">
317
+ <i class="fas fa-angle-double-down text-3xl text-red-600"></i>
318
+ </div>
319
+ </div>
320
+ </section>
321
+
322
+ <section class="py-12 px-4">
323
+ <div class="max-w-6xl mx-auto">
324
+ <h2 class="text-3xl font-bold text-center mb-10" style="color: var(--red);">
325
+ <i class="fas fa-star mr-2" style="color: var(--gold);"></i> Почему выбирают нас
326
+ </h2>
327
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
328
+ <div class="product-card">
329
+ <div class="text-4xl mb-4" style="color: var(--red);">
330
+ <i class="fas fa-certificate"></i>
331
+ </div>
332
+ <h3 class="text-xl font-bold mb-2">Аутентичность</h3>
333
+ <p class="text-gray-700">Оправы 1960-х годов с архивных складов</p>
334
+ </div>
335
+ <div class="product-card">
336
+ <div class="text-4xl mb-4" style="color: var(--red);">
337
+ <i class="fas fa-palette"></i>
338
+ </div>
339
+ <h3 class="text-xl font-bold mb-2">Индивидуальность</h3>
340
+ <p class="text-gray-700">Ручная окраска линз пигментом "ОК"</p>
341
+ </div>
342
+ <div class="product-card">
343
+ <div class="text-4xl mb-4" style="color: var(--red);">
344
+ <i class="fas fa-crown"></i>
345
+ </div>
346
+ <h3 class="text-xl font-bold mb-2">Эксклюзив</h3>
347
+ <p class="text-gray-700">Только 10 экземпляров каждой модели</p>
348
+ </div>
349
+ </div>
350
+ </div>
351
+ </section>
352
+
353
+ <section id="catalog" class="gallery">
354
+ <div class="max-w-6xl mx-auto">
355
+ <h2 class="text-3xl font-bold text-center mb-10" style="color: var(--red);">
356
+ <i class="fas fa-images mr-2" style="color: var(--gold);"></i> КАТАЛОГ
357
+ </h2>
358
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
359
+ <div class="group relative overflow-hidden rounded-lg">
360
+ <img src="/glasses1.jpg" alt="Очки модель 'Партийный'" class="w-full h-64 md:h-80 object-cover">
361
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
362
+ <div class="text-center text-white p-4">
363
+ <h3 class="text-xl font-bold">"Партийный"</h3>
364
+ <p class="mt-2">Официальный стиль партийных работников</p>
365
+ <button class="mt-4 px-6 py-2 bg-red-600 text-white rounded-full">Подробнее</button>
366
+ </div>
367
+ </div>
368
+ </div>
369
+ <div class="group relative overflow-hidden rounded-lg">
370
+ <img src="/glasses3.jpg" alt="Очки модель 'Космос'" class="w-full h-64 md:h-80 object-cover">
371
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
372
+ <div class="text-center text-white p-4">
373
+ <h3 class="text-xl font-bold">"Космос"</h3>
374
+ <p class="mt-2">Вдохновлено эпохой космических достижений</p>
375
+ <button class="mt-4 px-6 py-2 bg-red-600 text-white rounded-full">Подробнее</button>
376
+ </div>
377
+ </div>
378
+ </div>
379
+ <div class="group relative overflow-hidden rounded-lg">
380
+ <img src="/glasses2.jpg" alt="Очки модель 'Стиляга'" class="w-full h-64 md:h-80 object-cover">
381
+ <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300">
382
+ <div class="text-center text-white p-4">
383
+ <h3 class="text-xl font-bold">"Стиляга"</h3>
384
+ <p class="mt-2">Яркий акцент для поклонников западной моды</p>
385
+ <button class="mt-4 px-6 py-2 bg-red-600 text-white rounded-full">Подробнее</button>
386
+ </div>
387
+ </div>
388
+ </div>
389
+ </div>
390
+ </div>
391
+ </section>
392
+
393
+ <section class="newsletter">
394
+ <div class="max-w-4xl mx-auto relative z-10">
395
+ <h2 class="text-2xl md:text-3xl font-bold mb-4">Получи скидку 15%</h2>
396
+ <p class="text-lg mb-6">Подпишись на рассылку и получи гид по стилю 60-х</p>
397
+ <div class="flex flex-col md:flex-row items-center justify-center">
398
+ <input type="email" placeholder="Ваш e-mail" class="mb-4 md:mb-0 md:mr-4">
399
+ <button class="cta-button">
400
+ <i class="fas fa-envelope mr-2"></i> ПОДПИСАТЬСЯ
401
+ </button>
402
+ </div>
403
+ </div>
404
+ </section>
405
+
406
+ <footer class="bg-gray-900 text-white py-8 px-4">
407
+ <div class="max-w-6xl mx-auto grid grid-cols-1 md:grid-cols-3 gap-8">
408
+ <div>
409
+ <h3 class="text-xl font-bold mb-4" style="color: var(--gold);">СССР Очки</h3>
410
+ <p>Возвращаем моду 60-х в современный мир</p>
411
+ <div class="mt-4 flex space-x-4">
412
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-vk fa-lg"></i></a>
413
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-telegram fa-lg"></i></a>
414
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram fa-lg"></i></a>
415
+ </div>
416
+ </div>
417
+ <div>
418
+ <h3 class="text-xl font-bold mb-4" style="color: var(--gold);">Контакты</h3>
419
+ <p><i class="fas fa-map-marker-alt mr-2"></i> Москва, ул. Берзарина, 34 стр.12</p>
420
+ <p class="mt-2"><i class="fas fa-phone mr-2"></i> +7 (926) 323-68-86</p>
421
+ <p class="mt-2"><i class="fas fa-envelope mr-2"></i> info@xoptica.ru</p>
422
+ </div>
423
+ <div>
424
+ <h3 class="text-xl font-bold mb-4" style="color: var(--gold);">Часы работы</h3>
425
+ <p>Пн-Чт: 08:00 - 16:00</p>
426
+ <p class="mt-2">Вс: 09:00 - 14:00</p>
427
+ </div>
428
+ </div>
429
+ <div class="max-w-6xl mx-auto mt-8 pt-4 border-t border-gray-700 text-center text-gray-400">
430
+ <p>© 2025 xoptica.ru СССР Очки. Все права защищены.</p>
431
+ </div>
432
+ </footer>
433
+
434
+ <div class="mobile-menu">
435
+ <a href="#"><i class="fas fa-home"></i></a>
436
+ <a href="#catalog"><i class="fas fa-glasses"></i></a>
437
+ <a href="#"><i class="fas fa-shopping-cart"></i></a>
438
+ <a href="#"><i class="fas fa-user"></i></a>
439
+ </div>
440
+
441
+ <script>
442
+ // Анимация при скролле
443
+ document.addEventListener('DOMContentLoaded', function() {
444
+ // Плавная прокрутка
445
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
446
+ anchor.addEventListener('click', function(e) {
447
+ e.preventDefault();
448
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
449
+ behavior: 'smooth'
450
+ });
451
+ });
452
+ });
453
+
454
+ // Анимация карточек
455
+ const cards = document.querySelectorAll('.product-card');
456
+ cards.forEach(card => {
457
+ card.addEventListener('mouseover', () => {
458
+ card.style.transform = 'rotate(-2deg)';
459
+ });
460
+
461
+ card.addEventListener('mouseout', () => {
462
+ card.style.transform = 'none';
463
+ });
464
+ });
465
+
466
+ // Обработка формы
467
+ document.querySelector('.newsletter button').addEventListener('click', () => {
468
+ const email = document.querySelector('.newsletter input').value;
469
+ if(email.includes('@')) {
470
+ Swal.fire({
471
+ title: 'Спасибо!',
472
+ text: 'Чек-лист "Стиль 60-х" уже летит к вам!',
473
+ icon: 'success',
474
+ confirmButtonColor: '#CC2222'
475
+ });
476
+ } else {
477
+ Swal.fire({
478
+ title: 'Ошибка',
479
+ text: 'Пожалуйста, введите корректный email',
480
+ icon: 'error',
481
+ confirmButtonColor: '#CC2222'
482
+ });
483
+ }
484
+ });
485
+
486
+ // Анимация появления элементов при скролле
487
+ const observer = new IntersectionObserver((entries) => {
488
+ entries.forEach(entry => {
489
+ if(entry.isIntersecting) {
490
+ entry.target.classList.add('animate__animated', 'animate__fadeInUp');
491
+ }
492
+ });
493
+ }, { threshold: 0.1 });
494
+
495
+ document.querySelectorAll('.product-card, .gallery img, .newsletter').forEach(el => {
496
+ observer.observe(el);
497
+ });
498
+
499
+ // Выбор цвета линз
500
+ const colorLenses = document.querySelectorAll('.lens-color');
501
+ colorLenses.forEach(lens => {
502
+ lens.addEventListener('click', function() {
503
+ // Удаляем активный класс у всех линз
504
+ colorLenses.forEach(l => l.classList.remove('active'));
505
+ // Добавляем активный класс текущей линзе
506
+ this.classList.add('active');
507
+
508
+ // Можно добавить здесь логику для изменения цвета линз в галерее
509
+ // Например:
510
+ // const color = this.style.backgroundColor;
511
+ // document.querySelectorAll('.gallery img').forEach(img => {
512
+ // img.style.filter = `sepia(0.4) contrast(1.1) hue-rotate(...)`;
513
+ // });
514
+ });
515
+ });
516
+ });
517
+
518
+ // Добавляем SweetAlert для красивых уведомлений
519
+ const SwalScript = document.createElement('script');
520
+ SwalScript.src = 'https://cdn.jsdelivr.net/npm/sweetalert2@11';
521
+ document.head.appendChild(SwalScript);
522
+
523
+ // Добавляем анимации
524
+ const animateCSS = document.createElement('link');
525
+ animateCSS.href = 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css';
526
+ animateCSS.rel = 'stylesheet';
527
+ document.head.appendChild(animateCSS);
528
+ </script>
529
+ <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=ANTIMOLL/ussroptical5" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
530
+ </html>