spice-it-up / index.html
Freefall's picture
Add 2 files
4b3b014 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spice It Up | Playful Connections</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.flame-animation {
animation: flicker 2s infinite alternate;
}
@keyframes flicker {
0%, 100% { opacity: 0.8; transform: scale(1); }
25% { opacity: 1; transform: scale(1.02); }
50% { opacity: 0.9; transform: scale(0.98); }
75% { opacity: 1; transform: scale(1.01); }
}
.heartbeat {
animation: heartbeat 1.5s ease-in-out infinite;
}
@keyframes heartbeat {
0% { transform: scale(1); }
25% { transform: scale(1.1); }
50% { transform: scale(1); }
75% { transform: scale(1.1); }
100% { transform: scale(1); }
}
.option-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.glow {
box-shadow: 0 0 15px rgba(255,105,180,0.7);
}
</style>
</head>
<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">
<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">
<!-- Header -->
<div class="bg-gradient-to-r from-pink-600 to-purple-600 p-6 text-center relative overflow-hidden">
<div class="absolute inset-0 flex items-center justify-center">
<div class="w-full h-full bg-gradient-to-r from-transparent via-white opacity-5 to-transparent animate-pulse"></div>
</div>
<h1 class="text-4xl font-bold text-white mb-2 font-serif tracking-tight">Spice It Up</h1>
<p class="text-pink-200">Curate your perfect playful evening...</p>
<div class="absolute -bottom-4 left-1/2 transform -translate-x-1/2">
<div class="w-8 h-8 bg-pink-500 rounded-full flame-animation"></div>
</div>
</div>
<!-- Content -->
<div class="p-6">
<div class="text-center mb-8">
<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">
<i class="fas fa-heart text-4xl text-pink-400"></i>
</div>
<h2 class="text-2xl font-semibold text-white mb-2">What's your mood tonight?</h2>
<p class="text-pink-200">Select your desired experience level</p>
</div>
<!-- Experience Options -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-8" id="experienceOptions">
<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">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-pink-500 flex items-center justify-center mr-3">
<i class="fas fa-kiss-wink-heart"></i>
</div>
<h3 class="font-medium">Flirty & Fun</h3>
</div>
<p class="text-sm text-pink-100 mt-2">Playful teasing and romantic vibes</p>
</div>
<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">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-red-500 flex items-center justify-center mr-3">
<i class="fas fa-fire"></i>
</div>
<h3 class="font-medium">Hot & Heavy</h3>
</div>
<p class="text-sm text-pink-100 mt-2">Turn up the heat with passionate play</p>
</div>
<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">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-purple-500 flex items-center justify-center mr-3">
<i class="fas fa-magic"></i>
</div>
<h3 class="font-medium">Kinky Adventures</h3>
</div>
<p class="text-sm text-pink-100 mt-2">Explore your wilder side</p>
</div>
<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">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-gray-500 flex items-center justify-center mr-3">
<i class="fas fa-user-secret"></i>
</div>
<h3 class="font-medium">Custom Experience</h3>
</div>
<p class="text-sm text-pink-100 mt-2">Mix and match to create your perfect night</p>
</div>
</div>
<!-- Selected Experience -->
<div class="hidden" id="selectedExperienceContainer">
<div class="bg-black bg-opacity-30 rounded-xl p-6 mb-6 text-center border border-pink-500 border-opacity-50 glow">
<p class="text-pink-300 font-medium mb-2">Your selected experience:</p>
<h3 class="text-xl font-bold text-white mb-3" id="experienceTitle"></h3>
<p class="text-pink-200 mb-4" id="experienceDescription"></p>
<div class="flex justify-center space-x-4 mt-4">
<button class="px-4 py-2 bg-pink-600 hover:bg-pink-700 rounded-full text-sm font-medium transition">
<i class="fas fa-play-circle mr-1"></i> Start Experience
</button>
<button class="px-4 py-2 bg-purple-600 hover:bg-purple-700 rounded-full text-sm font-medium transition">
<i class="fas fa-cog mr-1"></i> Customize
</button>
</div>
</div>
<div class="text-center">
<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">
<i class="fas fa-redo mr-1"></i> Choose Different Mood
</button>
</div>
</div>
</div>
<!-- Footer -->
<div class="bg-black bg-opacity-30 p-4 text-center text-sm text-pink-300 border-t border-pink-900">
<p>For adults only. Play responsibly with consenting partners.</p>
<div class="flex justify-center space-x-4 mt-2">
<a href="#" class="hover:text-white"><i class="fab fa-snapchat-ghost"></i></a>
<a href="#" class="hover:text-white"><i class="fab fa-instagram"></i></a>
<a href="#" class="hover:text-white"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const experienceOptions = document.querySelectorAll('.option-card');
const selectedExperienceContainer = document.getElementById('selectedExperienceContainer');
const experienceTitle = document.getElementById('experienceTitle');
const experienceDescription = document.getElementById('experienceDescription');
const changeSelectionBtn = document.getElementById('changeSelectionBtn');
const experiences = [
{
title: "Flirty & Fun",
description: "Set the mood with playful teasing, romantic ambiance, and sensual connection. Perfect for building anticipation and enjoying each other's company.",
icon: "fa-kiss-wink-heart",
color: "bg-pink-500"
},
{
title: "Hot & Heavy",
description: "Turn up the heat with passionate play, intense connection, and physical chemistry. For when you want to skip the foreplay.",
icon: "fa-fire",
color: "bg-red-500"
},
{
title: "Kinky Adventures",
description: "Explore fantasies, try new things, and push boundaries in a safe, consensual way. Bring your wild side to the bedroom.",
icon: "fa-magic",
color: "bg-purple-500"
},
{
title: "Custom Experience",
description: "Mix and match elements from different experiences to create your perfect night. The choice is yours!",
icon: "fa-user-secret",
color: "bg-gray-500"
}
];
// Handle experience selection
experienceOptions.forEach(option => {
option.addEventListener('click', function() {
const level = parseInt(this.getAttribute('data-level')) - 1;
const selectedExp = experiences[level];
// Set experience details
experienceTitle.textContent = selectedExp.title;
experienceDescription.textContent = selectedExp.description;
// Hide options and show selected experience
document.getElementById('experienceOptions').classList.add('hidden');
selectedExperienceContainer.classList.remove('hidden');
// Add pulse effect to the glow
const glow = document.querySelector('.glow');
glow.classList.add('animate-pulse');
});
});
// Change selection button
changeSelectionBtn.addEventListener('click', function() {
selectedExperienceContainer.classList.add('hidden');
document.getElementById('experienceOptions').classList.remove('hidden');
document.querySelector('.glow').classList.remove('animate-pulse');
});
});
</script>
<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>
</html>