Upload deepseek_html_20250426_c5e739.html

#2
by IGORANT - opened
Files changed (1) hide show
  1. deepseek_html_20250426_c5e739.html +369 -0
deepseek_html_20250426_c5e739.html ADDED
@@ -0,0 +1,369 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Космическая оптика "ОПТОН"</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
+ <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Space+Grotesk:wght@400;700&display=swap" rel="stylesheet">
10
+ <style>
11
+ :root {
12
+ --space-blue: #0B1A30;
13
+ --nebula-purple: #4A2FBD;
14
+ --star-yellow: #FFE81F;
15
+ --galaxy-edge: #2A2356;
16
+ }
17
+ body {
18
+ font-family: 'Space Grotesk', sans-serif;
19
+ background: var(--space-blue);
20
+ color: white;
21
+ overflow-x: hidden;
22
+ }
23
+ .cosmic-bg {
24
+ background:
25
+ radial-gradient(circle at 50% 50%,
26
+ var(--nebula-purple) 0%,
27
+ var(--space-blue) 70%),
28
+ url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><circle cx="100" cy="100" r="1" fill="%23FFFFFF" opacity="0.5"/></svg>');
29
+ background-size: cover, 2px 2px;
30
+ }
31
+ .star {
32
+ position: absolute;
33
+ background: white;
34
+ border-radius: 50%;
35
+ animation: twinkle 2s infinite;
36
+ }
37
+ @keyframes twinkle {
38
+ 0%, 100% { opacity: 0.3; }
39
+ 50% { opacity: 1; }
40
+ }
41
+ .cosmic-card {
42
+ background: rgba(11, 26, 48, 0.8);
43
+ border: 1px solid var(--star-yellow);
44
+ border-radius: 15px;
45
+ backdrop-filter: blur(10px);
46
+ box-shadow: 0 0 30px rgba(74, 47, 189, 0.3);
47
+ transition: all 0.3s ease;
48
+ position: relative;
49
+ overflow: hidden;
50
+ }
51
+ .cosmic-card::before {
52
+ content: '';
53
+ position: absolute;
54
+ top: -50%;
55
+ left: -50%;
56
+ width: 200%;
57
+ height: 200%;
58
+ background: linear-gradient(45deg,
59
+ transparent 45%,
60
+ rgba(255,232,31,0.1) 50%,
61
+ transparent 55%);
62
+ transform: rotate(45deg);
63
+ animation: cosmicFlow 20s linear infinite;
64
+ }
65
+ @keyframes cosmicFlow {
66
+ 0% { transform: rotate(45deg) translateY(0); }
67
+ 100% { transform: rotate(45deg) translateY(-200px); }
68
+ }
69
+ .nebula-btn {
70
+ background: linear-gradient(135deg,
71
+ var(--nebula-purple) 0%,
72
+ var(--star-yellow) 100%);
73
+ border: none;
74
+ padding: 15px 30px;
75
+ color: white;
76
+ font-family: 'Orbitron', sans-serif;
77
+ text-transform: uppercase;
78
+ letter-spacing: 2px;
79
+ position: relative;
80
+ overflow: hidden;
81
+ transition: 0.3s;
82
+ }
83
+ .nebula-btn:hover {
84
+ transform: scale(1.05);
85
+ box-shadow: 0 0 30px rgba(255,232,31,0.3);
86
+ }
87
+ .section-title {
88
+ font-family: 'Orbitron', sans-serif;
89
+ text-shadow: 0 0 15px var(--star-yellow);
90
+ position: relative;
91
+ }
92
+ .section-title::after {
93
+ content: '';
94
+ position: absolute;
95
+ bottom: -10px;
96
+ left: 50%;
97
+ transform: translateX(-50%);
98
+ width: 100px;
99
+ height: 3px;
100
+ background: var(--star-yellow);
101
+ box-shadow: 0 0 15px var(--star-yellow);
102
+ }
103
+ </style>
104
+ </head>
105
+ <body class="cosmic-bg">
106
+ <!-- Звездный фон -->
107
+ <div id="stars-container" class="fixed inset-0 pointer-events-none"></div>
108
+
109
+ <!-- Header -->
110
+ <header class="fixed w-full z-50 bg-black/80 backdrop-blur-md border-b border-star-yellow">
111
+ <div class="container mx-auto px-4 py-3">
112
+ <div class="flex justify-between items-center">
113
+ <div class="flex items-center space-x-4">
114
+ <div class="text-3xl nebula-btn px-4">ОПТОН</div>
115
+ </div>
116
+ <nav class="hidden md:flex space-x-8 items-center">
117
+ <a href="#services" class="text-xl hover:text-star-yellow transition">Услуги</a>
118
+ <a href="#care" class="text-xl hover:text-star-yellow transition">Уход</a>
119
+ <a href="#contacts" class="text-xl hover:text-star-yellow transition">Контакты</a>
120
+ <a href="tel:+79263236886" class="nebula-btn">
121
+ <i class="fas fa-satellite-dish mr-2"></i>+7 (926) 323-68-86
122
+ </a>
123
+ </nav>
124
+ <button id="menu-btn" class="md:hidden text-2xl text-star-yellow">
125
+ <i class="fas fa-bars"></i>
126
+ </button>
127
+ </div>
128
+ </div>
129
+ </header>
130
+
131
+ <!-- Hero Section -->
132
+ <section class="min-h-screen flex items-center justify-center relative pt-20">
133
+ <div class="container mx-auto px-4 text-center">
134
+ <h1 class="text-6xl md:text-8xl font-bold mb-8 section-title">КОСМИЧЕСКАЯ ОПТИКА</h1>
135
+ <p class="text-2xl md:text-3xl mb-12 max-w-2xl mx-auto">Технологии будущего для вашего зрения на орбите совершенства</p>
136
+ <a href="#services" class="nebula-btn text-2xl px-16 py-4 inline-block">
137
+ ИССЛЕДОВАТЬ УСЛУГИ
138
+ </a>
139
+ </div>
140
+ </section>
141
+
142
+ <!-- Наши услуги -->
143
+ <section id="services" class="py-20 relative">
144
+ <div class="container mx-auto px-4">
145
+ <div class="text-center mb-16">
146
+ <h2 class="text-5xl font-bold mb-4 section-title">НАШИ УСЛУГИ</h2>
147
+ </div>
148
+
149
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
150
+ <!-- Услуга 1 -->
151
+ <div class="cosmic-card p-8">
152
+ <div class="text-star-yellow text-4xl mb-4">
153
+ <i class="fas fa-rocket"></i>
154
+ </div>
155
+ <h3 class="text-2xl font-bold mb-4">Экспресс-ремонт</h3>
156
+ <ul class="space-y-3 text-gray-300">
157
+ <li>Замена носовых упоров</li>
158
+ <li>Ремонт заушников</li>
159
+ <li>Корректировка оправ</li>
160
+ <li>Замена винтов</li>
161
+ </ul>
162
+ </div>
163
+
164
+ <!-- Услуга 2 -->
165
+ <div class="cosmic-card p-8">
166
+ <div class="text-star-yellow text-4xl mb-4">
167
+ <i class="fas fa-palette"></i>
168
+ </div>
169
+ <h3 class="text-2xl font-bold mb-4">Космический дизайн</h3>
170
+ <ul class="space-y-3 text-gray-300">
171
+ <li>Окрашивание линз</li>
172
+ <li>Градиентные покрытия</li>
173
+ <li>3D моделирование</li>
174
+ <li>Персонализация</li>
175
+ </ul>
176
+ </div>
177
+
178
+ <!-- Услуга 3 -->
179
+ <div class="cosmic-card p-8">
180
+ <div class="text-star-yellow text-4xl mb-4">
181
+ <i class="fas fa-glasses"></i>
182
+ </div>
183
+ <h3 class="text-2xl font-bold mb-4">Изготовление</h3>
184
+ <ul class="space-y-3 text-gray-300">
185
+ <li>Диоптрийные очки</li>
186
+ <li>Солнцезащитные</li>
187
+ <li>Спортивные</li>
188
+ <li>Эксклюзивные модели</li>
189
+ </ul>
190
+ </div>
191
+ </div>
192
+ </div>
193
+ </section>
194
+
195
+ <!-- Уход за очками -->
196
+ <section id="care" class="py-20 bg-black/30">
197
+ <div class="container mx-auto px-4">
198
+ <div class="text-center mb-16">
199
+ <h2 class="text-5xl font-bold mb-4 section-title">УХОД ЗА ОЧКАМИ</h2>
200
+ </div>
201
+
202
+ <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
203
+ <div class="cosmic-card p-8 text-center">
204
+ <div class="text-6xl mb-4 text-star-yellow">
205
+ <i class="fas fa-hand-sparkles"></i>
206
+ </div>
207
+ <h3 class="text-xl font-bold mb-2">Очистка</h3>
208
+ <p class="text-gray-300">Используйте специальные салфетки и растворы</p>
209
+ </div>
210
+
211
+ <div class="cosmic-card p-8 text-center">
212
+ <div class="text-6xl mb-4 text-star-yellow">
213
+ <i class="fas fa-temperature-low"></i>
214
+ </div>
215
+ <h3 class="text-xl font-bold mb-2">Температура</h3>
216
+ <p class="text-gray-300">Избегайте экстремальных температур</p>
217
+ </div>
218
+
219
+ <div class="cosmic-card p-8 text-center">
220
+ <div class="text-6xl mb-4 text-star-yellow">
221
+ <i class="fas fa-box-open"></i>
222
+ </div>
223
+ <h3 class="text-xl font-bold mb-2">Хранение</h3>
224
+ <p class="text-gray-300">Используйте жесткие футляры</p>
225
+ </div>
226
+
227
+ <div class="cosmic-card p-8 text-center">
228
+ <div class="text-6xl mb-4 text-star-yellow">
229
+ <i class="fas fa-tools"></i>
230
+ </div>
231
+ <h3 class="text-xl font-bold mb-2">Обслуживание</h3>
232
+ <p class="text-gray-300">Регулярная профессиональная проверка</p>
233
+ </div>
234
+ </div>
235
+ </div>
236
+ </section>
237
+
238
+ <!-- Контакты -->
239
+ <section id="contacts" class="py-20">
240
+ <div class="container mx-auto px-4">
241
+ <div class="cosmic-card p-12">
242
+ <div class="grid lg:grid-cols-2 gap-12">
243
+ <div>
244
+ <h2 class="text-4xl font-bold mb-8 section-title">КОНТАКТЫ</h2>
245
+
246
+ <div class="space-y-6">
247
+ <div class="flex items-start">
248
+ <div class="text-star-yellow text-2xl mr-4">
249
+ <i class="fas fa-map-marker-alt"></i>
250
+ </div>
251
+ <div>
252
+ <h3 class="text-xl font-bold">Адрес</h3>
253
+ <p class="text-gray-300">Москва, ул.Берзарина д.34 стр.12</p>
254
+ </div>
255
+ </div>
256
+
257
+ <div class="flex items-start">
258
+ <div class="text-star-yellow text-2xl mr-4">
259
+ <i class="fas fa-clock"></i>
260
+ </div>
261
+ <div>
262
+ <h3 class="text-xl font-bold">Время работы</h3>
263
+ <p class="text-gray-300">
264
+ ПН-ЧТ: 08:00 - 16:00<br>
265
+ ВС: 09:00 - 14:00<br>
266
+ ПТ-СБ: Выходной
267
+ </p>
268
+ </div>
269
+ </div>
270
+
271
+ <div class="flex items-start">
272
+ <div class="text-star-yellow text-2xl mr-4">
273
+ <i class="fas fa-phone"></i>
274
+ </div>
275
+ <div>
276
+ <h3 class="text-xl font-bold">Связь</h3>
277
+ <p class="text-2xl font-bold text-star-yellow">+7 (926) 323-68-86</p>
278
+ <a href="tel:+79263236886" class="nebula-btn inline-block mt-4 px-6 py-2">
279
+ <i class="fas fa-satellite mr-2"></i>Вызов
280
+ </a>
281
+ </div>
282
+ </div>
283
+ </div>
284
+ </div>
285
+
286
+ <div>
287
+ <div class="h-full border-2 border-star-yellow/30 rounded-lg overflow-hidden">
288
+ <script type="text/javascript" charset="utf-8" async
289
+ src="https://api-maps.yandex.ru/services/constructor/1.0/js/?um=constructor%3Ac8fcb6c1bec1d088da7abd2d9ca82929556153fe8e67aea432ef025fb36f1714&amp;width=100%25&amp;height=400&amp;lang=ru_RU&amp;scroll=true">
290
+ </script>
291
+ </div>
292
+ </div>
293
+ </div>
294
+ </div>
295
+ </div>
296
+ </section>
297
+
298
+ <!-- Футер -->
299
+ <footer class="bg-black/80 py-8 border-t border-star-yellow/30">
300
+ <div class="container mx-auto px-4 text-center">
301
+ <div class="text-3xl font-bold mb-4 section-title">ОПТОН</div>
302
+ <div class="flex justify-center space-x-6 mb-4">
303
+ <a href="#" class="text-star-yellow hover:text-nebula-purple text-2xl">
304
+ <i class="fab fa-vk"></i>
305
+ </a>
306
+ <a href="#" class="text-star-yellow hover:text-nebula-purple text-2xl">
307
+ <i class="fab fa-telegram"></i>
308
+ </a>
309
+ <a href="#" class="text-star-yellow hover:text-nebula-purple text-2xl">
310
+ <i class="fab fa-whatsapp"></i>
311
+ </a>
312
+ </div>
313
+ <p class="text-gray-400">&copy; 2023 Космическая оптика. Все права защищены</p>
314
+ </div>
315
+ </footer>
316
+
317
+ <script>
318
+ // Создание звездного фона
319
+ function createStars() {
320
+ const container = document.getElementById('stars-container');
321
+ for(let i = 0; i < 200; i++) {
322
+ const star = document.createElement('div');
323
+ star.className = 'star';
324
+ star.style.width = Math.random() * 3 + 'px';
325
+ star.style.height = star.style.width;
326
+ star.style.left = Math.random() * 100 + '%';
327
+ star.style.top = Math.random() * 100 + '%';
328
+ star.style.animationDelay = Math.random() * 2 + 's';
329
+ container.appendChild(star);
330
+ }
331
+ }
332
+ createStars();
333
+
334
+ // Мобильное меню
335
+ const menuBtn = document.getElementById('menu-btn');
336
+ const mobileMenu = document.createElement('div');
337
+ mobileMenu.className = 'md:hidden fixed top-16 right-4 cosmic-card p-4 space-y-3';
338
+ mobileMenu.innerHTML = `
339
+ <a href="#services" class="block nebula-btn text-center">Услуги</a>
340
+ <a href="#care" class="block nebula-btn text-center">Уход</a>
341
+ <a href="#contacts" class="block nebula-btn text-center">Контакты</a>
342
+ `;
343
+ mobileMenu.style.display = 'none';
344
+ document.body.appendChild(mobileMenu);
345
+
346
+ menuBtn.addEventListener('click', () => {
347
+ mobileMenu.style.display = mobileMenu.style.display === 'none' ? 'block' : 'none';
348
+ });
349
+
350
+ // Плавная прокрутка
351
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
352
+ anchor.addEventListener('click', function(e) {
353
+ e.preventDefault();
354
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
355
+ behavior: 'smooth'
356
+ });
357
+ });
358
+ });
359
+
360
+ // Параллакс для карточек
361
+ window.addEventListener('scroll', () => {
362
+ const scrolled = window.pageYOffset;
363
+ document.querySelectorAll('.cosmic-card').forEach(card => {
364
+ card.style.transform = `translateY(${scrolled * 0.05}px)`;
365
+ });
366
+ });
367
+ </script>
368
+ </body>
369
+ </html>