flausch commited on
Commit
b1d1d19
·
verified ·
1 Parent(s): aa912ac

https://i.imgur.com/JQ9wXWn.png take it off - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +581 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Fluffy Landing
3
- emoji: 🏢
4
  colorFrom: yellow
5
- colorTo: indigo
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: fluffy-landing
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,581 @@
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>CyberFluff - Where Tech Meets Cuteness</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=Press+Start+2P&family=Rubik+Mono+One&family=Comfortaa:wght@400;700&display=swap');
11
+
12
+ :root {
13
+ --neon-pink: #ff6ec7;
14
+ --neon-blue: #6ec6ff;
15
+ --neon-purple: #b36eff;
16
+ --fluffy-white: #fff9f9;
17
+ --cyber-black: #0a0a14;
18
+ }
19
+
20
+ body {
21
+ font-family: 'Comfortaa', cursive;
22
+ background-color: var(--cyber-black);
23
+ color: var(--fluffy-white);
24
+ overflow-x: hidden;
25
+ }
26
+
27
+ .cyber-title {
28
+ font-family: 'Rubik Mono One', sans-serif;
29
+ text-shadow: 0 0 10px var(--neon-pink),
30
+ 0 0 20px var(--neon-blue);
31
+ }
32
+
33
+ .fluffy-card {
34
+ background: rgba(255, 255, 255, 0.08);
35
+ backdrop-filter: blur(12px);
36
+ border-radius: 25px;
37
+ border: 1px solid rgba(255, 255, 255, 0.3);
38
+ transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
39
+ box-shadow: 0 8px 32px rgba(110, 198, 255, 0.1),
40
+ inset 0 0 20px rgba(255, 255, 255, 0.05);
41
+ }
42
+
43
+ .fluffy-card:hover {
44
+ transform: translateY(-10px);
45
+ box-shadow: 0 10px 30px rgba(110, 198, 255, 0.3);
46
+ }
47
+
48
+ .neon-text {
49
+ text-shadow: 0 0 5px currentColor;
50
+ }
51
+
52
+ .pink-neon {
53
+ color: var(--neon-pink);
54
+ }
55
+
56
+ .blue-neon {
57
+ color: var(--neon-blue);
58
+ }
59
+
60
+ .purple-neon {
61
+ color: var(--neon-purple);
62
+ }
63
+
64
+ .fluffy-btn {
65
+ background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
66
+ border: none;
67
+ border-radius: 50px;
68
+ padding: 12px 30px;
69
+ font-weight: bold;
70
+ text-transform: uppercase;
71
+ letter-spacing: 2px;
72
+ position: relative;
73
+ overflow: hidden;
74
+ z-index: 1;
75
+ }
76
+
77
+ .fluffy-btn::before {
78
+ content: '';
79
+ position: absolute;
80
+ top: 0;
81
+ left: -100%;
82
+ width: 100%;
83
+ height: 100%;
84
+ background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
85
+ transition: all 0.4s ease;
86
+ z-index: -1;
87
+ }
88
+
89
+ .fluffy-btn:hover::before {
90
+ left: 0;
91
+ }
92
+
93
+ .floating-clouds {
94
+ position: absolute;
95
+ width: 100%;
96
+ height: 100%;
97
+ top: 0;
98
+ left: 0;
99
+ pointer-events: none;
100
+ z-index: -1;
101
+ }
102
+
103
+ .cloud {
104
+ position: absolute;
105
+ background: rgba(255, 255, 255, 0.15);
106
+ border-radius: 50%;
107
+ filter: blur(40px);
108
+ animation: float 15s infinite ease-in-out;
109
+ box-shadow: 0 0 60px rgba(255, 255, 255, 0.2);
110
+ }
111
+ .cloud::after {
112
+ content: '';
113
+ position: absolute;
114
+ width: 50%;
115
+ height: 50%;
116
+ background: rgba(255, 255, 255, 0.1);
117
+ border-radius: 50%;
118
+ top: 20%;
119
+ left: 20%;
120
+ filter: blur(15px);
121
+ }
122
+
123
+ @keyframes float {
124
+ 0% { transform: translateY(0) translateX(0); }
125
+ 50% { transform: translateY(-50px) translateX(50px); }
126
+ 100% { transform: translateY(0) translateX(0); }
127
+ }
128
+
129
+ .cyber-grid {
130
+ background-image:
131
+ linear-gradient(rgba(110, 198, 255, 0.1) 1px, transparent 1px),
132
+ linear-gradient(90deg, rgba(110, 198, 255, 0.1) 1px, transparent 1px);
133
+ background-size: 30px 30px;
134
+ }
135
+
136
+ .pixel-corners {
137
+ clip-path: polygon(
138
+ 0% 10px, 10px 10px, 10px 0%, calc(100% - 10px) 0%,
139
+ calc(100% - 10px) 10px, 100% 10px, 100% calc(100% - 10px),
140
+ calc(100% - 10px) calc(100% - 10px), calc(100% - 10px) 100%,
141
+ 10px 100%, 10px calc(100% - 10px), 0% calc(100% - 10px)
142
+ );
143
+ }
144
+
145
+ .fluffy-mascot {
146
+ animation: bounce 2s infinite cubic-bezier(0.28, 0.84, 0.42, 1.1);
147
+ filter: drop-shadow(0 10px 15px rgba(255, 110, 199, 0.4));
148
+ }
149
+
150
+ @keyframes bounce {
151
+ 0%, 100% { transform: translateY(0) rotate(-2deg); }
152
+ 25% { transform: translateY(-30px) rotate(2deg); }
153
+ 50% { transform: translateY(-10px) rotate(-2deg); }
154
+ 75% { transform: translateY(-20px) rotate(2deg); }
155
+ }
156
+
157
+ .glow {
158
+ animation: glow 2s infinite alternate;
159
+ }
160
+
161
+ @keyframes glow {
162
+ from { filter: drop-shadow(0 0 5px currentColor); }
163
+ to { filter: drop-shadow(0 0 20px currentColor); }
164
+ }
165
+ .floating-hearts {
166
+ position: absolute;
167
+ width: 100%;
168
+ height: 100%;
169
+ top: 0;
170
+ left: 0;
171
+ pointer-events: none;
172
+ z-index: -1;
173
+ }
174
+ .heart {
175
+ position: absolute;
176
+ color: rgba(255, 110, 199, 0.6);
177
+ animation: float-up 15s linear infinite;
178
+ filter: drop-shadow(0 0 5px rgba(255, 110, 199, 0.4));
179
+ }
180
+ @keyframes float-up {
181
+ 0% { transform: translateY(100vh) translateX(0) scale(0.5); opacity: 0; }
182
+ 10% { opacity: 0.8; }
183
+ 90% { opacity: 0.8; }
184
+ 100% { transform: translateY(-100px) translateX(50px) scale(1.2); opacity: 0; }
185
+ }
186
+ </style>
187
+ </head>
188
+ <body class="cyber-grid min-h-screen">
189
+ <!-- Floating Clouds Background -->
190
+ <div class="floating-clouds">
191
+ <div class="cloud w-64 h-64 bg-pink-200 top-20 left-10" style="animation-delay: 0s"></div>
192
+ <div class="cloud w-80 h-80 bg-blue-200 top-40 right-20" style="animation-delay: 1s"></div>
193
+ <div class="cloud w-96 h-96 bg-purple-200 bottom-20 left-1/4" style="animation-delay: 2s"></div>
194
+ <div class="cloud w-72 h-72 bg-pink-200 bottom-40 right-1/3" style="animation-delay: 3s"></div>
195
+ <div class="cloud w-60 h-60 bg-blue-200 top-1/4 right-1/3" style="animation-delay: 4s"></div>
196
+ <div class="cloud w-88 h-88 bg-purple-200 bottom-1/3 left-1/5" style="animation-delay: 5s"></div>
197
+ <div class="cloud w-100 h-100 bg-pink-200 top-1/3 left-1/2" style="animation-delay: 6s"></div>
198
+ </div>
199
+
200
+ <!-- Floating Hearts -->
201
+ <div class="floating-hearts" id="hearts-container"></div>
202
+
203
+ <!-- Navigation -->
204
+ <nav class="container mx-auto px-6 py-4 flex justify-between items-center">
205
+ <div class="flex items-center space-x-2">
206
+ <i class="fas fa-cloud text-3xl pink-neon glow"></i>
207
+ <span class="cyber-title text-2xl">CyberFluff</span>
208
+ </div>
209
+ <div class="hidden md:flex space-x-8">
210
+ <a href="#" class="text-white hover:text-pink-400 transition">Home</a>
211
+ <a href="#" class="text-white hover:text-blue-400 transition">Features</a>
212
+ <a href="#" class="text-white hover:text-purple-400 transition">Products</a>
213
+ <a href="#" class="text-white hover:text-pink-400 transition">About</a>
214
+ <a href="#" class="text-white hover:text-blue-400 transition">Contact</a>
215
+ </div>
216
+ <button class="md:hidden text-white">
217
+ <i class="fas fa-bars text-2xl"></i>
218
+ </button>
219
+ </nav>
220
+
221
+ <!-- Hero Section -->
222
+ <section class="container mx-auto px-6 py-20 md:py-32 flex flex-col md:flex-row items-center">
223
+ <div class="md:w-1/2 mb-12 md:mb-0">
224
+ <h1 class="cyber-title text-4xl md:text-6xl mb-6 leading-tight">
225
+ <span class="pink-neon">Super</span> <span class="blue-neon">Fluffy</span>
226
+ <span class="purple-neon">Cyber</span> <span class="text-white">Experience</span>
227
+ </h1>
228
+ <p class="text-xl mb-8 text-gray-300">
229
+ Where cutting-edge technology meets adorable fluffiness.
230
+ Our cyber-fluff fusion will melt your heart while blowing your mind!
231
+ </p>
232
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
233
+ <button class="fluffy-btn text-white">
234
+ <i class="fas fa-rocket mr-2"></i> Launch Now
235
+ </button>
236
+ <button class="px-8 py-3 border-2 border-pink-500 text-pink-400 rounded-full hover:bg-pink-500 hover:text-white transition">
237
+ <i class="fas fa-info-circle mr-2"></i> Learn More
238
+ </button>
239
+ </div>
240
+ </div>
241
+ <div class="md:w-1/2 flex justify-center">
242
+ <div class="relative">
243
+ <div class="w-64 h-64 md:w-80 md:h-80 bg-gradient-to-br from-pink-500 to-blue-500 rounded-full opacity-20 blur-3xl absolute -z-10 top-10 left-10"></div>
244
+ <img src="https://i.imgur.com/JQ9wXWn.png" alt="Cyber Fluffy Mascot" class="fluffy-mascot w-64 h-64 md:w-80 md:h-80">
245
+ <div class="absolute -bottom-10 -right-10 w-32 h-32 bg-purple-500 rounded-full opacity-20 blur-2xl -z-10"></div>
246
+ </div>
247
+ </div>
248
+ </section>
249
+
250
+ <!-- Features Section -->
251
+ <section class="container mx-auto px-6 py-20">
252
+ <div class="text-center mb-16">
253
+ <h2 class="cyber-title text-3xl md:text-4xl mb-4">
254
+ <span class="pink-neon">Fluffy</span> <span class="blue-neon">Cyber</span> <span class="text-white">Features</span>
255
+ </h2>
256
+ <p class="text-xl text-gray-400 max-w-3xl mx-auto">
257
+ Our unique blend of technology and cuteness provides an experience like no other
258
+ </p>
259
+ </div>
260
+
261
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
262
+ <!-- Feature 1 -->
263
+ <div class="fluffy-card p-8">
264
+ <div class="w-16 h-16 bg-pink-500 bg-opacity-20 rounded-full flex items-center justify-center mb-6">
265
+ <i class="fas fa-cloud text-3xl pink-neon glow"></i>
266
+ </div>
267
+ <h3 class="text-2xl font-bold mb-4 neon-text pink-neon">Cloud Fluff</h3>
268
+ <p class="text-gray-400">
269
+ Ultra-soft cloud storage that feels like hugging a plushie. Secure, fast, and adorable.
270
+ </p>
271
+ </div>
272
+
273
+ <!-- Feature 2 -->
274
+ <div class="fluffy-card p-8">
275
+ <div class="w-16 h-16 bg-blue-500 bg-opacity-20 rounded-full flex items-center justify-center mb-6">
276
+ <i class="fas fa-shield-alt text-3xl blue-neon glow"></i>
277
+ </div>
278
+ <h3 class="text-2xl font-bold mb-4 neon-text blue-neon">Cuddly Security</h3>
279
+ <p class="text-gray-400">
280
+ Protection so warm and fuzzy, hackers won't want to break in. They'll just ask nicely.
281
+ </p>
282
+ </div>
283
+
284
+ <!-- Feature 3 -->
285
+ <div class="fluffy-card p-8">
286
+ <div class="w-16 h-16 bg-purple-500 bg-opacity-20 rounded-full flex items-center justify-center mb-6">
287
+ <i class="fas fa-bolt text-3xl purple-neon glow"></i>
288
+ </div>
289
+ <h3 class="text-2xl font-bold mb-4 neon-text purple-neon">Lightning Fluff</h3>
290
+ <p class="text-gray-400">
291
+ Blazing fast speeds with the softest landing. Like a bunny on a rocket.
292
+ </p>
293
+ </div>
294
+ </div>
295
+ </section>
296
+
297
+ <!-- Products Section -->
298
+ <section class="container mx-auto px-6 py-20 bg-gradient-to-r from-purple-900 to-blue-900 bg-opacity-30 rounded-3xl my-12">
299
+ <div class="text-center mb-16">
300
+ <h2 class="cyber-title text-3xl md:text-4xl mb-4">
301
+ <span class="pink-neon">Our</span> <span class="blue-neon">Fluffy</span> <span class="text-white">Products</span>
302
+ </h2>
303
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
304
+ Choose your perfect blend of tech and tenderness
305
+ </p>
306
+ </div>
307
+
308
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
309
+ <!-- Product 1 -->
310
+ <div class="fluffy-card p-8 pixel-corners">
311
+ <div class="text-center mb-6">
312
+ <div class="w-24 h-24 bg-pink-500 bg-opacity-20 rounded-full flex items-center justify-center mx-auto mb-4">
313
+ <i class="fas fa-baby text-4xl pink-neon"></i>
314
+ </div>
315
+ <h3 class="text-2xl font-bold mb-2 neon-text pink-neon">Fluff Lite</h3>
316
+ <p class="text-gray-400">For beginners</p>
317
+ </div>
318
+ <ul class="space-y-3 mb-8">
319
+ <li class="flex items-center">
320
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
321
+ <span>Basic cloud storage</span>
322
+ </li>
323
+ <li class="flex items-center">
324
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
325
+ <span>1 Fluffy mascot</span>
326
+ </li>
327
+ <li class="flex items-center">
328
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
329
+ <span>Pastel security</span>
330
+ </li>
331
+ </ul>
332
+ <div class="text-center">
333
+ <p class="text-3xl font-bold mb-4">$9.99<span class="text-sm text-gray-400">/month</span></p>
334
+ <button class="fluffy-btn w-full">Get Fluffy</button>
335
+ </div>
336
+ </div>
337
+
338
+ <!-- Product 2 -->
339
+ <div class="fluffy-card p-8 pixel-corners transform scale-105 relative">
340
+ <div class="absolute top-0 right-0 bg-pink-500 text-white px-4 py-1 text-sm font-bold rounded-bl-lg">
341
+ POPULAR
342
+ </div>
343
+ <div class="text-center mb-6">
344
+ <div class="w-24 h-24 bg-blue-500 bg-opacity-20 rounded-full flex items-center justify-center mx-auto mb-4">
345
+ <i class="fas fa-cat text-4xl blue-neon"></i>
346
+ </div>
347
+ <h3 class="text-2xl font-bold mb-2 neon-text blue-neon">Fluff Pro</h3>
348
+ <p class="text-gray-400">For enthusiasts</p>
349
+ </div>
350
+ <ul class="space-y-3 mb-8">
351
+ <li class="flex items-center">
352
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
353
+ <span>Advanced cloud storage</span>
354
+ </li>
355
+ <li class="flex items-center">
356
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
357
+ <span>3 Fluffy mascots</span>
358
+ </li>
359
+ <li class="flex items-center">
360
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
361
+ <span>Neon security</span>
362
+ </li>
363
+ <li class="flex items-center">
364
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
365
+ <span>Priority support</span>
366
+ </li>
367
+ </ul>
368
+ <div class="text-center">
369
+ <p class="text-3xl font-bold mb-4">$19.99<span class="text-sm text-gray-400">/month</span></p>
370
+ <button class="fluffy-btn w-full">Get Fluffier</button>
371
+ </div>
372
+ </div>
373
+
374
+ <!-- Product 3 -->
375
+ <div class="fluffy-card p-8 pixel-corners">
376
+ <div class="text-center mb-6">
377
+ <div class="w-24 h-24 bg-purple-500 bg-opacity-20 rounded-full flex items-center justify-center mx-auto mb-4">
378
+ <i class="fas fa-crown text-4xl purple-neon"></i>
379
+ </div>
380
+ <h3 class="text-2xl font-bold mb-2 neon-text purple-neon">Fluff Supreme</h3>
381
+ <p class="text-gray-400">For connoisseurs</p>
382
+ </div>
383
+ <ul class="space-y-3 mb-8">
384
+ <li class="flex items-center">
385
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
386
+ <span>Unlimited cloud storage</span>
387
+ </li>
388
+ <li class="flex items-center">
389
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
390
+ <span>10 Fluffy mascots</span>
391
+ </li>
392
+ <li class="flex items-center">
393
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
394
+ <span>Holographic security</span>
395
+ </li>
396
+ <li class="flex items-center">
397
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
398
+ <span>VIP support</span>
399
+ </li>
400
+ <li class="flex items-center">
401
+ <i class="fas fa-check-circle text-green-400 mr-2"></i>
402
+ <span>Fluffy merch</span>
403
+ </li>
404
+ </ul>
405
+ <div class="text-center">
406
+ <p class="text-3xl font-bold mb-4">$49.99<span class="text-sm text-gray-400">/month</span></p>
407
+ <button class="fluffy-btn w-full">Get Fluffiest</button>
408
+ </div>
409
+ </div>
410
+ </div>
411
+ </section>
412
+
413
+ <!-- Testimonials -->
414
+ <section class="container mx-auto px-6 py-20">
415
+ <div class="text-center mb-16">
416
+ <h2 class="cyber-title text-3xl md:text-4xl mb-4">
417
+ <span class="pink-neon">What</span> <span class="blue-neon">People</span> <span class="text-white">Say</span>
418
+ </h2>
419
+ <p class="text-xl text-gray-400 max-w-3xl mx-auto">
420
+ Don't just take our word for it - hear from our fluffy family
421
+ </p>
422
+ </div>
423
+
424
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
425
+ <!-- Testimonial 1 -->
426
+ <div class="fluffy-card p-8">
427
+ <div class="flex items-center mb-6">
428
+ <img src="https://i.imgur.com/JQ9wXWn.png" alt="User" class="w-16 h-16 rounded-full border-2 border-pink-500">
429
+ <div class="ml-4">
430
+ <h4 class="text-xl font-bold">Sarah K.</h4>
431
+ <p class="text-pink-400">Digital Artist</p>
432
+ </div>
433
+ </div>
434
+ <p class="text-gray-300 italic">
435
+ "I've never felt so secure and comforted by technology before. My files are safe, and my heart is full!"
436
+ </p>
437
+ <div class="mt-4 text-yellow-400">
438
+ <i class="fas fa-star"></i>
439
+ <i class="fas fa-star"></i>
440
+ <i class="fas fa-star"></i>
441
+ <i class="fas fa-star"></i>
442
+ <i class="fas fa-star"></i>
443
+ </div>
444
+ </div>
445
+
446
+ <!-- Testimonial 2 -->
447
+ <div class="fluffy-card p-8">
448
+ <div class="flex items-center mb-6">
449
+ <img src="https://i.imgur.com/JQ9wXWn.png" alt="User" class="w-16 h-16 rounded-full border-2 border-blue-500">
450
+ <div class="ml-4">
451
+ <h4 class="text-xl font-bold">Mark T.</h4>
452
+ <p class="text-blue-400">Game Developer</p>
453
+ </div>
454
+ </div>
455
+ <p class="text-gray-300 italic">
456
+ "The perfect balance of power and playfulness. My productivity has never been so enjoyable!"
457
+ </p>
458
+ <div class="mt-4 text-yellow-400">
459
+ <i class="fas fa-star"></i>
460
+ <i class="fas fa-star"></i>
461
+ <i class="fas fa-star"></i>
462
+ <i class="fas fa-star"></i>
463
+ <i class="fas fa-star-half-alt"></i>
464
+ </div>
465
+ </div>
466
+
467
+ <!-- Testimonial 3 -->
468
+ <div class="fluffy-card p-8">
469
+ <div class="flex items-center mb-6">
470
+ <img src="https://i.imgur.com/JQ9wXWn.png" alt="User" class="w-16 h-16 rounded-full border-2 border-purple-500">
471
+ <div class="ml-4">
472
+ <h4 class="text-xl font-bold">Lisa M.</h4>
473
+ <p class="text-purple-400">Streamer</p>
474
+ </div>
475
+ </div>
476
+ <p class="text-gray-300 italic">
477
+ "My viewers love the fluffy mascots that pop up during streams. It's like having digital pets that protect my content!"
478
+ </p>
479
+ <div class="mt-4 text-yellow-400">
480
+ <i class="fas fa-star"></i>
481
+ <i class="fas fa-star"></i>
482
+ <i class="fas fa-star"></i>
483
+ <i class="fas fa-star"></i>
484
+ <i class="fas fa-star"></i>
485
+ </div>
486
+ </div>
487
+ </div>
488
+ </section>
489
+
490
+ <!-- CTA Section -->
491
+ <section class="container mx-auto px-6 py-20 text-center">
492
+ <div class="fluffy-card p-12 bg-gradient-to-r from-pink-900 to-purple-900 bg-opacity-50 rounded-3xl">
493
+ <h2 class="cyber-title text-3xl md:text-5xl mb-6">
494
+ <span class="pink-neon">Ready</span> <span class="blue-neon">to</span> <span class="text-white">Embrace</span> <span class="purple-neon">the</span> <span class="pink-neon">Fluff?</span>
495
+ </h2>
496
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto mb-8">
497
+ Join thousands of happy users who've discovered the joy of cyber-fluff fusion
498
+ </p>
499
+ <button class="fluffy-btn text-white px-12 py-4 text-lg">
500
+ <i class="fas fa-paw mr-2"></i> Start Your Fluffy Journey
501
+ </button>
502
+ </div>
503
+ </section>
504
+
505
+ <!-- Footer -->
506
+ <footer class="bg-black bg-opacity-50 py-12">
507
+ <div class="container mx-auto px-6">
508
+ <div class="flex flex-col md:flex-row justify-between items-center">
509
+ <div class="flex items-center space-x-2 mb-6 md:mb-0">
510
+ <i class="fas fa-cloud text-3xl pink-neon glow"></i>
511
+ <span class="cyber-title text-2xl">CyberFluff</span>
512
+ </div>
513
+
514
+ <div class="flex space-x-6 mb-6 md:mb-0">
515
+ <a href="#" class="text-gray-400 hover:text-pink-400 transition">
516
+ <i class="fab fa-twitter text-2xl"></i>
517
+ </a>
518
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition">
519
+ <i class="fab fa-discord text-2xl"></i>
520
+ </a>
521
+ <a href="#" class="text-gray-400 hover:text-purple-400 transition">
522
+ <i class="fab fa-instagram text-2xl"></i>
523
+ </a>
524
+ <a href="#" class="text-gray-400 hover:text-pink-400 transition">
525
+ <i class="fab fa-tiktok text-2xl"></i>
526
+ </a>
527
+ </div>
528
+
529
+ <div class="text-gray-500 text-sm">
530
+ &copy; 2023 CyberFluff. All rights reserved. Made with <i class="fas fa-heart text-pink-500"></i> and fluff.
531
+ </div>
532
+ </div>
533
+ </div>
534
+ </footer>
535
+
536
+ <!-- Floating Mascot Button -->
537
+ <button class="fixed bottom-8 right-8 w-16 h-16 bg-pink-500 rounded-full flex items-center justify-center shadow-lg hover:bg-purple-500 transition z-50">
538
+ <i class="fas fa-paw text-2xl text-white"></i>
539
+ </button>
540
+
541
+ <script>
542
+ // Create floating hearts
543
+ const heartsContainer = document.getElementById('hearts-container');
544
+ for (let i = 0; i < 15; i++) {
545
+ const heart = document.createElement('div');
546
+ heart.className = 'heart';
547
+ heart.innerHTML = '<i class="fas fa-heart"></i>';
548
+ heart.style.left = Math.random() * 100 + 'vw';
549
+ heart.style.fontSize = (Math.random() * 20 + 10) + 'px';
550
+ heart.style.animationDuration = (Math.random() * 10 + 10) + 's';
551
+ heart.style.animationDelay = Math.random() * 15 + 's';
552
+ heartsContainer.appendChild(heart);
553
+ }
554
+
555
+ // Simple animation for the mascot
556
+ document.addEventListener('DOMContentLoaded', function() {
557
+ const mascot = document.querySelector('.fluffy-mascot');
558
+
559
+ function animateMascot() {
560
+ mascot.style.transform = 'translateY(-20px)';
561
+ setTimeout(() => {
562
+ mascot.style.transform = 'translateY(0)';
563
+ }, 1000);
564
+ }
565
+
566
+ setInterval(animateMascot, 3000);
567
+
568
+ // Button hover effect
569
+ const buttons = document.querySelectorAll('.fluffy-btn');
570
+ buttons.forEach(button => {
571
+ button.addEventListener('mouseenter', () => {
572
+ button.querySelector('i').classList.add('fa-bounce');
573
+ });
574
+ button.addEventListener('mouseleave', () => {
575
+ button.querySelector('i').classList.remove('fa-bounce');
576
+ });
577
+ });
578
+ });
579
+ </script>
580
+ <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=flausch/fluffy-landing" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
581
+ </html>