Spaces:
Running
Running
Add 2 files
Browse files- README.md +7 -5
- index.html +205 -19
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
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: spice-it-up
|
3 |
+
emoji: 🐳
|
4 |
+
colorFrom: pink
|
5 |
+
colorTo: pink
|
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,205 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>Spice It Up | Playful Connections</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 |
+
.flame-animation {
|
11 |
+
animation: flicker 2s infinite alternate;
|
12 |
+
}
|
13 |
+
@keyframes flicker {
|
14 |
+
0%, 100% { opacity: 0.8; transform: scale(1); }
|
15 |
+
25% { opacity: 1; transform: scale(1.02); }
|
16 |
+
50% { opacity: 0.9; transform: scale(0.98); }
|
17 |
+
75% { opacity: 1; transform: scale(1.01); }
|
18 |
+
}
|
19 |
+
.heartbeat {
|
20 |
+
animation: heartbeat 1.5s ease-in-out infinite;
|
21 |
+
}
|
22 |
+
@keyframes heartbeat {
|
23 |
+
0% { transform: scale(1); }
|
24 |
+
25% { transform: scale(1.1); }
|
25 |
+
50% { transform: scale(1); }
|
26 |
+
75% { transform: scale(1.1); }
|
27 |
+
100% { transform: scale(1); }
|
28 |
+
}
|
29 |
+
.option-card:hover {
|
30 |
+
transform: translateY(-5px);
|
31 |
+
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
|
32 |
+
}
|
33 |
+
.glow {
|
34 |
+
box-shadow: 0 0 15px rgba(255,105,180,0.7);
|
35 |
+
}
|
36 |
+
</style>
|
37 |
+
</head>
|
38 |
+
<body class="bg-gradient-to-br from-purple-900 via-pink-800 to-red-900 min-h-screen flex flex-col items-center justify-center p-4 text-white">
|
39 |
+
<div class="max-w-2xl w-full bg-black bg-opacity-40 backdrop-blur-lg rounded-3xl shadow-2xl overflow-hidden transition-all duration-500 border border-pink-500 border-opacity-30">
|
40 |
+
<!-- Header -->
|
41 |
+
<div class="bg-gradient-to-r from-pink-600 to-purple-600 p-6 text-center relative overflow-hidden">
|
42 |
+
<div class="absolute inset-0 flex items-center justify-center">
|
43 |
+
<div class="w-full h-full bg-gradient-to-r from-transparent via-white opacity-5 to-transparent animate-pulse"></div>
|
44 |
+
</div>
|
45 |
+
<h1 class="text-4xl font-bold text-white mb-2 font-serif tracking-tight">Spice It Up</h1>
|
46 |
+
<p class="text-pink-200">Curate your perfect playful evening...</p>
|
47 |
+
<div class="absolute -bottom-4 left-1/2 transform -translate-x-1/2">
|
48 |
+
<div class="w-8 h-8 bg-pink-500 rounded-full flame-animation"></div>
|
49 |
+
</div>
|
50 |
+
</div>
|
51 |
+
|
52 |
+
<!-- Content -->
|
53 |
+
<div class="p-6">
|
54 |
+
<div class="text-center mb-8">
|
55 |
+
<div class="w-24 h-24 mx-auto mb-4 bg-pink-500 bg-opacity-20 rounded-full flex items-center justify-center heartbeat border-2 border-pink-400">
|
56 |
+
<i class="fas fa-heart text-4xl text-pink-400"></i>
|
57 |
+
</div>
|
58 |
+
<h2 class="text-2xl font-semibold text-white mb-2">What's your mood tonight?</h2>
|
59 |
+
<p class="text-pink-200">Select your desired experience level</p>
|
60 |
+
</div>
|
61 |
+
|
62 |
+
<!-- Experience Options -->
|
63 |
+
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-8" id="experienceOptions">
|
64 |
+
<div class="option-card bg-gradient-to-br from-purple-800 to-pink-700 p-5 rounded-xl cursor-pointer transition-all duration-300 border border-pink-400 border-opacity-30" data-level="1">
|
65 |
+
<div class="flex items-center">
|
66 |
+
<div class="w-10 h-10 rounded-full bg-pink-500 flex items-center justify-center mr-3">
|
67 |
+
<i class="fas fa-kiss-wink-heart"></i>
|
68 |
+
</div>
|
69 |
+
<h3 class="font-medium">Flirty & Fun</h3>
|
70 |
+
</div>
|
71 |
+
<p class="text-sm text-pink-100 mt-2">Playful teasing and romantic vibes</p>
|
72 |
+
</div>
|
73 |
+
|
74 |
+
<div class="option-card bg-gradient-to-br from-pink-700 to-red-700 p-5 rounded-xl cursor-pointer transition-all duration-300 border border-pink-400 border-opacity-30" data-level="2">
|
75 |
+
<div class="flex items-center">
|
76 |
+
<div class="w-10 h-10 rounded-full bg-red-500 flex items-center justify-center mr-3">
|
77 |
+
<i class="fas fa-fire"></i>
|
78 |
+
</div>
|
79 |
+
<h3 class="font-medium">Hot & Heavy</h3>
|
80 |
+
</div>
|
81 |
+
<p class="text-sm text-pink-100 mt-2">Turn up the heat with passionate play</p>
|
82 |
+
</div>
|
83 |
+
|
84 |
+
<div class="option-card bg-gradient-to-br from-red-700 to-purple-800 p-5 rounded-xl cursor-pointer transition-all duration-300 border border-pink-400 border-opacity-30" data-level="3">
|
85 |
+
<div class="flex items-center">
|
86 |
+
<div class="w-10 h-10 rounded-full bg-purple-500 flex items-center justify-center mr-3">
|
87 |
+
<i class="fas fa-magic"></i>
|
88 |
+
</div>
|
89 |
+
<h3 class="font-medium">Kinky Adventures</h3>
|
90 |
+
</div>
|
91 |
+
<p class="text-sm text-pink-100 mt-2">Explore your wilder side</p>
|
92 |
+
</div>
|
93 |
+
|
94 |
+
<div class="option-card bg-gradient-to-br from-purple-900 to-gray-800 p-5 rounded-xl cursor-pointer transition-all duration-300 border border-pink-400 border-opacity-30" data-level="4">
|
95 |
+
<div class="flex items-center">
|
96 |
+
<div class="w-10 h-10 rounded-full bg-gray-500 flex items-center justify-center mr-3">
|
97 |
+
<i class="fas fa-user-secret"></i>
|
98 |
+
</div>
|
99 |
+
<h3 class="font-medium">Custom Experience</h3>
|
100 |
+
</div>
|
101 |
+
<p class="text-sm text-pink-100 mt-2">Mix and match to create your perfect night</p>
|
102 |
+
</div>
|
103 |
+
</div>
|
104 |
+
|
105 |
+
<!-- Selected Experience -->
|
106 |
+
<div class="hidden" id="selectedExperienceContainer">
|
107 |
+
<div class="bg-black bg-opacity-30 rounded-xl p-6 mb-6 text-center border border-pink-500 border-opacity-50 glow">
|
108 |
+
<p class="text-pink-300 font-medium mb-2">Your selected experience:</p>
|
109 |
+
<h3 class="text-xl font-bold text-white mb-3" id="experienceTitle"></h3>
|
110 |
+
<p class="text-pink-200 mb-4" id="experienceDescription"></p>
|
111 |
+
|
112 |
+
<div class="flex justify-center space-x-4 mt-4">
|
113 |
+
<button class="px-4 py-2 bg-pink-600 hover:bg-pink-700 rounded-full text-sm font-medium transition">
|
114 |
+
<i class="fas fa-play-circle mr-1"></i> Start Experience
|
115 |
+
</button>
|
116 |
+
<button class="px-4 py-2 bg-purple-600 hover:bg-purple-700 rounded-full text-sm font-medium transition">
|
117 |
+
<i class="fas fa-cog mr-1"></i> Customize
|
118 |
+
</button>
|
119 |
+
</div>
|
120 |
+
</div>
|
121 |
+
|
122 |
+
<div class="text-center">
|
123 |
+
<button id="changeSelectionBtn" class="px-6 py-2 bg-gradient-to-r from-gray-700 to-gray-800 text-white rounded-full font-medium hover:opacity-90 transition border border-gray-600">
|
124 |
+
<i class="fas fa-redo mr-1"></i> Choose Different Mood
|
125 |
+
</button>
|
126 |
+
</div>
|
127 |
+
</div>
|
128 |
+
</div>
|
129 |
+
|
130 |
+
<!-- Footer -->
|
131 |
+
<div class="bg-black bg-opacity-30 p-4 text-center text-sm text-pink-300 border-t border-pink-900">
|
132 |
+
<p>For adults only. Play responsibly with consenting partners.</p>
|
133 |
+
<div class="flex justify-center space-x-4 mt-2">
|
134 |
+
<a href="#" class="hover:text-white"><i class="fab fa-snapchat-ghost"></i></a>
|
135 |
+
<a href="#" class="hover:text-white"><i class="fab fa-instagram"></i></a>
|
136 |
+
<a href="#" class="hover:text-white"><i class="fab fa-twitter"></i></a>
|
137 |
+
</div>
|
138 |
+
</div>
|
139 |
+
</div>
|
140 |
+
|
141 |
+
<script>
|
142 |
+
document.addEventListener('DOMContentLoaded', function() {
|
143 |
+
const experienceOptions = document.querySelectorAll('.option-card');
|
144 |
+
const selectedExperienceContainer = document.getElementById('selectedExperienceContainer');
|
145 |
+
const experienceTitle = document.getElementById('experienceTitle');
|
146 |
+
const experienceDescription = document.getElementById('experienceDescription');
|
147 |
+
const changeSelectionBtn = document.getElementById('changeSelectionBtn');
|
148 |
+
|
149 |
+
const experiences = [
|
150 |
+
{
|
151 |
+
title: "Flirty & Fun",
|
152 |
+
description: "Set the mood with playful teasing, romantic ambiance, and sensual connection. Perfect for building anticipation and enjoying each other's company.",
|
153 |
+
icon: "fa-kiss-wink-heart",
|
154 |
+
color: "bg-pink-500"
|
155 |
+
},
|
156 |
+
{
|
157 |
+
title: "Hot & Heavy",
|
158 |
+
description: "Turn up the heat with passionate play, intense connection, and physical chemistry. For when you want to skip the foreplay.",
|
159 |
+
icon: "fa-fire",
|
160 |
+
color: "bg-red-500"
|
161 |
+
},
|
162 |
+
{
|
163 |
+
title: "Kinky Adventures",
|
164 |
+
description: "Explore fantasies, try new things, and push boundaries in a safe, consensual way. Bring your wild side to the bedroom.",
|
165 |
+
icon: "fa-magic",
|
166 |
+
color: "bg-purple-500"
|
167 |
+
},
|
168 |
+
{
|
169 |
+
title: "Custom Experience",
|
170 |
+
description: "Mix and match elements from different experiences to create your perfect night. The choice is yours!",
|
171 |
+
icon: "fa-user-secret",
|
172 |
+
color: "bg-gray-500"
|
173 |
+
}
|
174 |
+
];
|
175 |
+
|
176 |
+
// Handle experience selection
|
177 |
+
experienceOptions.forEach(option => {
|
178 |
+
option.addEventListener('click', function() {
|
179 |
+
const level = parseInt(this.getAttribute('data-level')) - 1;
|
180 |
+
const selectedExp = experiences[level];
|
181 |
+
|
182 |
+
// Set experience details
|
183 |
+
experienceTitle.textContent = selectedExp.title;
|
184 |
+
experienceDescription.textContent = selectedExp.description;
|
185 |
+
|
186 |
+
// Hide options and show selected experience
|
187 |
+
document.getElementById('experienceOptions').classList.add('hidden');
|
188 |
+
selectedExperienceContainer.classList.remove('hidden');
|
189 |
+
|
190 |
+
// Add pulse effect to the glow
|
191 |
+
const glow = document.querySelector('.glow');
|
192 |
+
glow.classList.add('animate-pulse');
|
193 |
+
});
|
194 |
+
});
|
195 |
+
|
196 |
+
// Change selection button
|
197 |
+
changeSelectionBtn.addEventListener('click', function() {
|
198 |
+
selectedExperienceContainer.classList.add('hidden');
|
199 |
+
document.getElementById('experienceOptions').classList.remove('hidden');
|
200 |
+
document.querySelector('.glow').classList.remove('animate-pulse');
|
201 |
+
});
|
202 |
+
});
|
203 |
+
</script>
|
204 |
+
<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=Freefall/spice-it-up" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
205 |
+
</html>
|