File size: 21,325 Bytes
e775e0c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f9f0da0
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
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>GameGear Store - Магазин игровых товаров</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Orbitron:wght@500;600;700&display=swap" rel="stylesheet">
    <style>
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #0f172a;
            color: #e2e8f0;
        }
        .header-font {
            font-family: 'Orbitron', sans-serif;
        }
        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(148, 163, 184, 0.2);
        }
        .glow-button {
            transition: all 0.3s ease;
        }
        .glow-button:hover {
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.7);
        }
        .category-item {
            transition: all 0.3s ease;
        }
        .category-item:hover {
            background-color: #4c1d95;
            transform: scale(1.05);
        }
        .cart-item {
            border-left: 3px solid #8b5cf6;
        }
    </style>
</head>
<body class="bg-slate-900 text-slate-100">
    <!-- Header -->
    <header class="bg-slate-800 shadow-lg sticky top-0 z-50">
        <div class="container mx-auto px-4 py-4 flex flex-col md:flex-row justify-between items-center">
            <div class="flex items-center mb-4 md:mb-0">
                <div class="bg-purple-600 w-10 h-10 rounded-lg flex items-center justify-center mr-3">
                    <i data-feather="gamepad" class="text-white"></i>
                </div>
                <h1 class="text-2xl font-bold header-font text-purple-400">GameGear Store</h1>
            </div>
            
            <div class="w-full md:w-1/3 mb-4 md:mb-0">
                <div class="relative">
                    <input type="text" placeholder="Поиск товаров..." class="w-full px-4 py-2 rounded-lg bg-slate-700 text-white placeholder-slate-400 focus:outline-none focus:ring-2 focus:ring-purple-500">
                    <i data-feather="search" class="absolute right-3 top-2.5 text-slate-400"></i>
                </div>
            </div>
            
            <div class="flex items-center space-x-4">
                <button class="p-2 rounded-full hover:bg-slate-700 transition">
                    <i data-feather="heart" class="text-slate-300"></i>
                </button>
                <button class="p-2 rounded-full hover:bg-slate-700 transition relative">
                    <i data-feather="shopping-cart" class="text-slate-300"></i>
                    <span class="absolute top-0 right-0 bg-purple-600 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">3</span>
                </button>
                <button class="px-4 py-2 bg-purple-600 hover:bg-purple-700 rounded-lg glow-button flex items-center">
                    <i data-feather="user" class="mr-2"></i>
                    Войти
                </button>
            </div>
        </div>
        
        <!-- Navigation -->
        <nav class="container mx-auto px-4 py-3 border-t border-slate-700">
            <ul class="flex flex-wrap justify-center space-x-6">
                <li><a href="#" class="text-purple-400 font-medium hover:text-purple-300">Главная</a></li>
                <li><a href="#" class="text-slate-300 hover:text-purple-300">Каталог</a></li>
                <li><a href="#" class="text-slate-300 hover:text-purple-300">Акции</a></li>
                <li><a href="#" class="text-slate-300 hover:text-purple-300">Новинки</a></li>
                <li><a href="#" class="text-slate-300 hover:text-purple-300">Доставка</a></li>
                <li><a href="#" class="text-slate-300 hover:text-purple-300">Контакты</a></li>
            </ul>
        </nav>
    </header>

    <!-- Hero Section -->
    <section class="relative bg-gradient-to-r from-purple-900 to-indigo-800 py-20">
        <div class="container mx-auto px-4 text-center">
            <h2 class="text-4xl md:text-6xl font-bold header-font mb-4">Геймерские товары по лучшим ценам</h2>
            <p class="text-xl mb-8 max-w-2xl mx-auto">Все для геймеров: игры, аксессуары, техника и многое другое</p>
            <div class="flex flex-col sm:flex-row justify-center gap-4">
                <button class="px-8 py-3 bg-white text-purple-900 font-bold rounded-lg hover:bg-slate-100 transition glow-button">
                    Каталог товаров
                </button>
                <button class="px-8 py-3 bg-transparent border-2 border-white text-white font-bold rounded-lg hover:bg-white hover:text-purple-900 transition">
                    Акции недели
                </button>
            </div>
        </div>
    </section>

    <!-- Categories -->
    <section class="py-16 bg-slate-800">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12 header-font">Категории товаров</h2>
            <div class="grid grid-cols-2 md:grid-cols-4 gap-6">
                <div class="category-item bg-slate-700 rounded-xl p-6 text-center cursor-pointer">
                    <div class="bg-purple-600 w-16 h-16 rounded-lg flex items-center justify-center mx-auto mb-4">
                        <i data-feather="monitor" class="text-white"></i>
                    </div>
                    <h3 class="font-bold">Игры</h3>
                    <p class="text-slate-400 text-sm mt-2">500+ товаров</p>
                </div>
                <div class="category-item bg-slate-700 rounded-xl p-6 text-center cursor-pointer">
                    <div class="bg-purple-600 w-16 h-16 rounded-lg flex items-center justify-center mx-auto mb-4">
                        <i data-feather="headphones" class="text-white"></i>
                    </div>
                    <h3 class="font-bold">Аксессуары</h3>
                    <p class="text-slate-400 text-sm mt-2">300+ товаров</p>
                </div>
                <div class="category-item bg-slate-700 rounded-xl p-6 text-center cursor-pointer">
                    <div class="bg-purple-600 w-16 h-16 rounded-lg flex items-center justify-center mx-auto mb-4">
                        <i data-feather="cpu" class="text-white"></i>
                    </div>
                    <h3 class="font-bold">Комплектующие</h3>
                    <p class="text-slate-400 text-sm mt-2">200+ товаров</p>
                </div>
                <div class="category-item bg-slate-700 rounded-xl p-6 text-center cursor-pointer">
                    <div class="bg-purple-600 w-16 h-16 rounded-lg flex items-center justify-center mx-auto mb-4">
                        <i data-feather="smartphone" class="text-white"></i>
                    </div>
                    <h3 class="font-bold">Гаджеты</h3>
                    <p class="text-slate-400 text-sm mt-2">150+ товаров</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Featured Products -->
    <section class="py-16">
        <div class="container mx-auto px-4">
            <div class="flex justify-between items-center mb-10">
                <h2 class="text-3xl font-bold header-font">Популярные товары</h2>
                <a href="#" class="text-purple-400 hover:text-purple-300 flex items-center">
                    Все товары
                    <i data-feather="arrow-right" class="ml-2"></i>
                </a>
            </div>
            
            <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
                <!-- Product 1 -->
                <div class="product-card bg-slate-800 rounded-xl overflow-hidden">
                    <div class="relative">
                        <img src="http://static.photos/technology/320x240/1" alt="Игра" class="w-full h-48 object-cover">
                        <div class="absolute top-2 right-2 bg-red-500 text-white text-xs font-bold px-2 py-1 rounded">
                            -25%
                        </div>
                    </div>
                    <div class="p-5">
                        <div class="flex justify-between items-start">
                            <h3 class="font-bold text-lg">Cyberpunk 2077</h3>
                            <i data-feather="heart" class="text-slate-400 cursor-pointer hover:text-red-500"></i>
                        </div>
                        <p class="text-slate-400 text-sm mt-1">Полная версия игры</p>
                        <div class="flex justify-between items-center mt-4">
                            <div>
                                <span class="text-lg font-bold text-purple-400">1499 ₽</span>
                                <span class="text-slate-500 line-through text-sm ml-2">1999 ₽</span>
                            </div>
                            <button class="bg-purple-600 hover:bg-purple-700 p-2 rounded-lg">
                                <i data-feather="shopping-cart"></i>
                            </button>
                        </div>
                    </div>
                </div>
                
                <!-- Product 2 -->
                <div class="product-card bg-slate-800 rounded-xl overflow-hidden">
                    <div class="relative">
                        <img src="http://static.photos/gaming/320x240/2" alt="Геймпад" class="w-full h-48 object-cover">
                    </div>
                    <div class="p-5">
                        <div class="flex justify-between items-start">
                            <h3 class="font-bold text-lg">Геймпад Xbox</h3>
                            <i data-feather="heart" class="text-slate-400 cursor-pointer hover:text-red-500"></i>
                        </div>
                        <p class="text-slate-400 text-sm mt-1">Беспроводной контроллер</p>
                        <div class="flex justify-between items-center mt-4">
                            <div>
                                <span class="text-lg font-bold text-purple-400">3499 ₽</span>
                            </div>
                            <button class="bg-purple-600 hover:bg-purple-700 p-2 rounded-lg">
                                <i data-feather="shopping-cart"></i>
                            </button>
                        </div>
                    </div>
                </div>
                
                <!-- Product 3 -->
                <div class="product-card bg-slate-800 rounded-xl overflow-hidden">
                    <div class="relative">
                        <img src="http://static.photos/technology/320x240/3" alt="Наушники" class="w-full h-48 object-cover">
                        <div class="absolute top-2 right-2 bg-green-500 text-white text-xs font-bold px-2 py-1 rounded">
                            Новинка
                        </div>
                    </div>
                    <div class="p-5">
                        <div class="flex justify-between items-start">
                            <h3 class="font-bold text-lg">Наушники HyperX</h3>
                            <i data-feather="heart" class="text-slate-400 cursor-pointer hover:text-red-500"></i>
                        </div>
                        <p class="text-slate-400 text-sm mt-1">Геймерские наушники 7.1</p>
                        <div class="flex justify-between items-center mt-4">
                            <div>
                                <span class="text-lg font-bold text-purple-400">5999 ₽</span>
                            </div>
                            <button class="bg-purple-600 hover:bg-purple-700 p-2 rounded-lg">
                                <i data-feather="shopping-cart"></i>
                            </button>
                        </div>
                    </div>
                </div>
                
                <!-- Product 4 -->
                <div class="product-card bg-slate-800 rounded-xl overflow-hidden">
                    <div class="relative">
                        <img src="http://static.photos/gaming/320x240/4" alt="Клавиатура" class="w-full h-48 object-cover">
                    </div>
                    <div class="p-5">
                        <div class="flex justify-between items-start">
                            <h3 class="font-bold text-lg">Клавиатура Razer</h3>
                            <i data-feather="heart" class="text-slate-400 cursor-pointer hover:text-red-500"></i>
                        </div>
                        <p class="text-slate-400 text-sm mt-1">Механическая RGB</p>
                        <div class="flex justify-between items-center mt-4">
                            <div>
                                <span class="text-lg font-bold text-purple-400">8999 ₽</span>
                            </div>
                            <button class="bg-purple-600 hover:bg-purple-700 p-2 rounded-lg">
                                <i data-feather="shopping-cart"></i>
                            </button>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Special Offers -->
    <section class="py-16 bg-gradient-to-r from-indigo-900 to-purple-900">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12 header-font">Специальные предложения</h2>
            <div class="bg-slate-800 rounded-2xl p-8 max-w-4xl mx-auto">
                <div class="flex flex-col md:flex-row items-center">
                    <div class="md:w-1/3 mb-6 md:mb-0">
                        <img src="http://static.photos/gaming/320x240/5" alt="PlayStation 5" class="rounded-xl">
                    </div>
                    <div class="md:w-2/3 md:pl-8 text-center md:text-left">
                        <h3 class="text-2xl font-bold mb-2">PlayStation 5</h3>
                        <p class="text-slate-300 mb-4">Самая мощная игровая консоль нового поколения с эксклюзивными играми</p>
                        <div class="flex flex-col sm:flex-row items-center justify-between">
                            <div class="mb-4 sm:mb-0">
                                <span class="text-2xl font-bold text-purple-400">34999 ₽</span>
                                <span class="text-slate-500 line-through ml-3">39999 ₽</span>
                            </div>
                            <button class="px-6 py-3 bg-purple-600 hover:bg-purple-700 rounded-lg glow-button font-bold">
                                Купить сейчас
                            </button>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Newsletter -->
    <section class="py-16">
        <div class="container mx-auto px-4">
            <div class="bg-slate-800 rounded-2xl p-8 max-w-3xl mx-auto text-center">
                <h2 class="text-2xl font-bold mb-2">Подпишитесь на рассылку</h2>
                <p class="text-slate-400 mb-6">Получайте уведомления о скидках и новых поступлениях</p>
                <div class="flex flex-col sm:flex-row gap-4 max-w-md mx-auto">
                    <input type="email" placeholder="Ваш email" class="flex-grow px-4 py-3 rounded-lg bg-slate-700 text-white placeholder-slate-400 focus:outline-none">
                    <button class="px-6 py-3 bg-purple-600 hover:bg-purple-700 rounded-lg glow-button font-bold">
                        Подписаться
                    </button>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-slate-800 border-t border-slate-700 pt-16 pb-8">
        <div class="container mx-auto px-4">
            <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
                <div>
                    <div class="flex items-center mb-4">
                        <div class="bg-purple-600 w-8 h-8 rounded-lg flex items-center justify-center mr-2">
                            <i data-feather="gamepad" class="text-white"></i>
                        </div>
                        <h3 class="text-xl font-bold header-font text-purple-400">GameGear Store</h3>
                    </div>
                    <p class="text-slate-400 mb-4">Ваш надежный партнер в мире гейминга. Лучшие товары по отличным ценам.</p>
                    <div class="flex space-x-4">
                        <a href="#" class="text-slate-400 hover:text-purple-400">
                            <i data-feather="facebook"></i>
                        </a>
                        <a href="#" class="text-slate-400 hover:text-purple-400">
                            <i data-feather="twitter"></i>
                        </a>
                        <a href="#" class="text-slate-400 hover:text-purple-400">
                            <i data-feather="instagram"></i>
                        </a>
                        <a href="#" class="text-slate-400 hover:text-purple-400">
                            <i data-feather="youtube"></i>
                        </a>
                    </div>
                </div>
                
                <div>
                    <h4 class="text-lg font-bold mb-4">Категории</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-slate-400 hover:text-purple-400">Игры</a></li>
                        <li><a href="#" class="text-slate-400 hover:text-purple-400">Консоли</a></li>
                        <li><a href="#" class="text-slate-400 hover:text-purple-400">Аксессуары</a></li>
                        <li><a href="#" class="text-slate-400 hover:text-purple-400">Комплектующие</a></li>
                        <li><a href="#" class="text-slate-400 hover:text-purple-400">Гаджеты</a></li>
                    </ul>
                </div>
                
                <div>
                    <h4 class="text-lg font-bold mb-4">Информация</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-slate-400 hover:text-purple-400">О нас</a></li>
                        <li><a href="#" class="text-slate-400 hover:text-purple-400">Доставка</a></li>
                        <li><a href="#" class="text-slate-400 hover:text-purple-400">Оплата</a></li>
                        <li><a href="#" class="text-slate-400 hover:text-purple-400">Гарантия</a></li>
                        <li><a href="#" class="text-slate-400 hover:text-purple-400">Контакты</a></li>
                    </ul>
                </div>
                
                <div>
                    <h4 class="text-lg font-bold mb-4">Контакты</h4>
                    <ul class="space-y-3">
                        <li class="flex items-start">
                            <i data-feather="map-pin" class="text-slate-400 mr-3 mt-1"></i>
                            <span class="text-slate-400">г. Москва, ул. Геймерская, 15</span>
                        </li>
                        <li class="flex items-center">
                            <i data-feather="phone" class="text-slate-400 mr-3"></i>
                            <span class="text-slate-400">+7 (495) 123-45-67</span>
                        </li>
                        <li class="flex items-center">
                            <i data-feather="mail" class="text-slate-400 mr-3"></i>
                            <span class="text-slate-400">info@gamegear.ru</span>
                        </li>
                        <li class="flex items-center">
                            <i data-feather="clock" class="text-slate-400 mr-3"></i>
                            <span class="text-slate-400">Пн-Пт: 9:00-21:00</span>
                        </li>
                    </ul>
                </div>
            </div>
            
            <div class="border-t border-slate-700 pt-8 text-center text-slate-500">
                <p>© 2023 GameGear Store. Все права защищены.</p>
            </div>
        </div>
    </footer>

    <script>
        feather.replace();
    </script>
</body>
</html>