Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>PassionPlay | Premium Adult Entertainment</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> | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); | |
| } | |
| .video-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
| } | |
| .blur-overlay { | |
| backdrop-filter: blur(10px); | |
| background-color: rgba(255, 255, 255, 0.5); | |
| } | |
| .toggle-checkbox:checked { | |
| right: 0; | |
| background-color: #ec4899; | |
| } | |
| .toggle-checkbox:checked + .toggle-label { | |
| background-color: #fbcfe8; | |
| } | |
| </style> | |
| </head> | |
| <body class="gradient-bg min-h-screen font-sans"> | |
| <!-- Age Verification Modal --> | |
| <div id="ageModal" class="fixed inset-0 z-50 flex items-center justify-center p-4 bg-black bg-opacity-70"> | |
| <div class="bg-white rounded-xl max-w-md w-full p-8 shadow-2xl"> | |
| <div class="text-center mb-6"> | |
| <i class="fas fa-exclamation-circle text-5xl text-pink-500 mb-4"></i> | |
| <h2 class="text-2xl font-bold text-gray-800">Age Verification</h2> | |
| </div> | |
| <p class="text-gray-600 mb-6 text-center"> | |
| This website contains adult content and is only for viewers 18 years or older. | |
| By entering, you confirm that you are at least 18 years of age. | |
| </p> | |
| <div class="flex flex-col space-y-3"> | |
| <button onclick="verifyAge(true)" class="bg-pink-500 hover:bg-pink-600 text-white font-medium py-3 px-4 rounded-lg transition"> | |
| I'm 18 or Older - Enter | |
| </button> | |
| <button onclick="verifyAge(false)" class="border border-gray-300 hover:bg-gray-100 text-gray-700 font-medium py-3 px-4 rounded-lg transition"> | |
| I'm Under 18 - Exit | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Main Content (hidden until age verification) --> | |
| <div id="mainContent" class="hidden"> | |
| <!-- Header --> | |
| <header class="blur-overlay sticky top-0 z-40 border-b border-gray-200"> | |
| <div class="container mx-auto px-4 py-3 flex items-center justify-between"> | |
| <div class="flex items-center space-x-2"> | |
| <i class="fas fa-fire text-2xl text-pink-500"></i> | |
| <span class="text-xl font-bold text-gray-800">PassionPlay</span> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-6"> | |
| <a href="#" class="text-gray-700 hover:text-pink-500 font-medium">Explore</a> | |
| <a href="#" class="text-gray-700 hover:text-pink-500 font-medium">Live</a> | |
| <a href="#" class="text-gray-700 hover:text-pink-500 font-medium">Community</a> | |
| <a href="#" class="text-gray-700 hover:text-pink-500 font-medium">Upload</a> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <div class="relative"> | |
| <input type="text" placeholder="Search..." class="pl-10 pr-4 py-2 rounded-full border border-gray-300 focus:outline-none focus:ring-2 focus:ring-pink-300 focus:border-transparent"> | |
| <i class="fas fa-search absolute left-3 top-1/2 transform -translate-y-1/2 text-gray-400"></i> | |
| </div> | |
| <button class="bg-pink-500 hover:bg-pink-600 text-white px-4 py-2 rounded-full font-medium flex items-center space-x-2"> | |
| <i class="fas fa-user-plus"></i> | |
| <span class="hidden md:inline">Sign In</span> | |
| </button> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section class="relative h-96 overflow-hidden"> | |
| <div class="absolute inset-0 bg-gradient-to-r from-pink-500 to-purple-600 opacity-90"></div> | |
| <div class="absolute inset-0 flex items-center justify-center"> | |
| <div class="text-center px-4 z-10 max-w-4xl"> | |
| <h1 class="text-4xl md:text-5xl font-bold text-white mb-4">Share Your Passion</h1> | |
| <p class="text-xl text-white mb-8 opacity-90"> | |
| Connect with like-minded adults in a safe, consensual environment. | |
| Watch, record, and share your most intimate moments. | |
| </p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> | |
| <button class="bg-white text-pink-600 hover:bg-gray-100 font-bold py-3 px-6 rounded-full transition flex items-center justify-center space-x-2"> | |
| <i class="fas fa-play"></i> | |
| <span>Start Watching</span> | |
| </button> | |
| <button class="bg-transparent border-2 border-white text-white hover:bg-white hover:bg-opacity-20 font-bold py-3 px-6 rounded-full transition flex items-center justify-center space-x-2"> | |
| <i class="fas fa-video"></i> | |
| <span>Go Live Now</span> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Content Tabs --> | |
| <div class="container mx-auto px-4 mt-8"> | |
| <div class="flex border-b border-gray-200"> | |
| <button class="tab-button active py-4 px-6 font-medium text-pink-500 border-b-2 border-pink-500">Featured</button> | |
| <button class="tab-button py-4 px-6 font-medium text-gray-500 hover:text-pink-500">Trending</button> | |
| <button class="tab-button py-4 px-6 font-medium text-gray-500 hover:text-pink-500">New Uploads</button> | |
| <button class="tab-button py-4 px-6 font-medium text-gray-500 hover:text-pink-500">Couples</button> | |
| <button class="tab-button py-4 px-6 font-medium text-gray-500 hover:text-pink-500">Solo</button> | |
| </div> | |
| </div> | |
| <!-- Video Grid --> | |
| <section class="container mx-auto px-4 py-8"> | |
| <h2 class="text-2xl font-bold text-gray-800 mb-6">Featured Content</h2> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6"> | |
| <!-- Video Card 1 --> | |
| <div class="video-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300 cursor-pointer"> | |
| <div class="relative"> | |
| <img src="https://source.unsplash.com/random/400x225/?couple,romantic" alt="Video thumbnail" class="w-full h-48 object-cover"> | |
| <div class="absolute bottom-2 right-2 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
| 12:34 | |
| </div> | |
| <div class="absolute top-2 left-2 bg-pink-500 text-white text-xs px-2 py-1 rounded"> | |
| LIVE | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex items-start space-x-3"> | |
| <img src="https://source.unsplash.com/random/40x40/?portrait" alt="Creator" class="w-10 h-10 rounded-full"> | |
| <div> | |
| <h3 class="font-medium text-gray-800 line-clamp-2">Romantic evening with passionate couple</h3> | |
| <p class="text-gray-500 text-sm">HotCouple22 • 15.4K views</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Video Card 2 --> | |
| <div class="video-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300 cursor-pointer"> | |
| <div class="relative"> | |
| <img src="https://source.unsplash.com/random/400x225/?woman,lingerie" alt="Video thumbnail" class="w-full h-48 object-cover"> | |
| <div class="absolute bottom-2 right-2 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
| 8:45 | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex items-start space-x-3"> | |
| <img src="https://source.unsplash.com/random/40x40/?woman" alt="Creator" class="w-10 h-10 rounded-full"> | |
| <div> | |
| <h3 class="font-medium text-gray-800 line-clamp-2">Sensual solo performance</h3> | |
| <p class="text-gray-500 text-sm">LoneStarGirl • 8.2K views</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Video Card 3 --> | |
| <div class="video-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300 cursor-pointer"> | |
| <div class="relative"> | |
| <img src="https://source.unsplash.com/random/400x225/?hotel,romantic" alt="Video thumbnail" class="w-full h-48 object-cover"> | |
| <div class="absolute bottom-2 right-2 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
| 22:18 | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex items-start space-x-3"> | |
| <img src="https://source.unsplash.com/random/40x40/?man" alt="Creator" class="w-10 h-10 rounded-full"> | |
| <div> | |
| <h3 class="font-medium text-gray-800 line-clamp-2">Weekend getaway with amazing chemistry</h3> | |
| <p class="text-gray-500 text-sm">TravelLovers • 24.7K views</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Video Card 4 --> | |
| <div class="video-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300 cursor-pointer"> | |
| <div class="relative"> | |
| <img src="https://source.unsplash.com/random/400x225/?bathroom,mirror" alt="Video thumbnail" class="w-full h-48 object-cover"> | |
| <div class="absolute bottom-2 right-2 bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
| 6:52 | |
| </div> | |
| <div class="absolute top-2 left-2 bg-pink-500 text-white text-xs px-2 py-1 rounded"> | |
| NEW | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex items-start space-x-3"> | |
| <img src="https://source.unsplash.com/random/40x40/?woman,blonde" alt="Creator" class="w-10 h-10 rounded-full"> | |
| <div> | |
| <h3 class="font-medium text-gray-800 line-clamp-2">Morning shower fantasy</h3> | |
| <p class="text-gray-500 text-sm">BubbleQueen • 3.1K views</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Live Section --> | |
| <section class="bg-gray-50 py-8"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex items-center justify-between mb-6"> | |
| <h2 class="text-2xl font-bold text-gray-800">Live Now</h2> | |
| <a href="#" class="text-pink-500 hover:text-pink-600 font-medium flex items-center"> | |
| View All <i class="fas fa-chevron-right ml-2 text-sm"></i> | |
| </a> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <!-- Live Card 1 --> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-md"> | |
| <div class="relative"> | |
| <img src="https://source.unsplash.com/random/600x338/?bedroom" alt="Live thumbnail" class="w-full h-48 object-cover"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-50"></div> | |
| <div class="absolute bottom-3 left-3 right-3"> | |
| <div class="flex items-center justify-between"> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-2 h-2 rounded-full bg-red-500 animate-pulse"></div> | |
| <span class="text-white text-sm font-medium">LIVE</span> | |
| </div> | |
| <div class="bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
| 1.2K watching | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex items-start space-x-3"> | |
| <img src="https://source.unsplash.com/random/40x40/?woman,brunette" alt="Creator" class="w-10 h-10 rounded-full border-2 border-pink-500"> | |
| <div> | |
| <h3 class="font-medium text-gray-800">Late night fun with Jess</h3> | |
| <p class="text-gray-500 text-sm">SweetJess • 4.8K followers</p> | |
| </div> | |
| </div> | |
| <button class="mt-3 w-full bg-pink-500 hover:bg-pink-600 text-white font-medium py-2 px-4 rounded-lg transition"> | |
| Join Stream | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Live Card 2 --> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-md"> | |
| <div class="relative"> | |
| <img src="https://source.unsplash.com/random/600x338/?hotel" alt="Live thumbnail" class="w-full h-48 object-cover"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-50"></div> | |
| <div class="absolute bottom-3 left-3 right-3"> | |
| <div class="flex items-center justify-between"> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-2 h-2 rounded-full bg-red-500 animate-pulse"></div> | |
| <span class="text-white text-sm font-medium">LIVE</span> | |
| </div> | |
| <div class="bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
| 856 watching | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex items-start space-x-3"> | |
| <img src="https://source.unsplash.com/random/40x40/?couple" alt="Creator" class="w-10 h-10 rounded-full border-2 border-pink-500"> | |
| <div> | |
| <h3 class="font-medium text-gray-800">Our anniversary celebration</h3> | |
| <p class="text-gray-500 text-sm">CoupleGoals • 12.3K followers</p> | |
| </div> | |
| </div> | |
| <button class="mt-3 w-full bg-pink-500 hover:bg-pink-600 text-white font-medium py-2 px-4 rounded-lg transition"> | |
| Join Stream | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Live Card 3 --> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-md"> | |
| <div class="relative"> | |
| <img src="https://source.unsplash.com/random/600x338/?kitchen" alt="Live thumbnail" class="w-full h-48 object-cover"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-50"></div> | |
| <div class="absolute bottom-3 left-3 right-3"> | |
| <div class="flex items-center justify-between"> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-2 h-2 rounded-full bg-red-500 animate-pulse"></div> | |
| <span class="text-white text-sm font-medium">LIVE</span> | |
| </div> | |
| <div class="bg-black bg-opacity-70 text-white text-xs px-2 py-1 rounded"> | |
| 2.4K watching | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex items-start space-x-3"> | |
| <img src="https://source.unsplash.com/random/40x40/?man,beard" alt="Creator" class="w-10 h-10 rounded-full border-2 border-pink-500"> | |
| <div> | |
| <h3 class="font-medium text-gray-800">Solo male performance</h3> | |
| <p class="text-gray-500 text-sm">LoneWolf • 8.7K followers</p> | |
| </div> | |
| </div> | |
| <button class="mt-3 w-full bg-pink-500 hover:bg-pink-600 text-white font-medium py-2 px-4 rounded-lg transition"> | |
| Join Stream | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Upload Section --> | |
| <section class="container mx-auto px-4 py-12"> | |
| <div class="bg-gradient-to-r from-pink-500 to-purple-600 rounded-2xl p-8 md:p-12 text-white"> | |
| <div class="max-w-3xl mx-auto text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Ready to Share Your Passion?</h2> | |
| <p class="text-lg mb-8 opacity-90"> | |
| Join our community of open-minded adults and share your intimate moments. | |
| Whether you're a couple or flying solo, we welcome all expressions of passion. | |
| </p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> | |
| <button class="bg-white text-pink-600 hover:bg-gray-100 font-bold py-3 px-6 rounded-full transition flex items-center justify-center space-x-2"> | |
| <i class="fas fa-cloud-upload-alt"></i> | |
| <span>Upload Video</span> | |
| </button> | |
| <button class="bg-transparent border-2 border-white hover:bg-white hover:bg-opacity-20 font-bold py-3 px-6 rounded-full transition flex items-center justify-center space-x-2"> | |
| <i class="fas fa-broadcast-tower"></i> | |
| <span>Start Streaming</span> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Community Guidelines --> | |
| <section class="bg-gray-50 py-12"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-2xl font-bold text-center text-gray-800 mb-8">Our Community Guidelines</h2> | |
| <div class="grid md:grid-cols-3 gap-8 max-w-6xl mx-auto"> | |
| <div class="bg-white p-6 rounded-xl shadow-sm"> | |
| <div class="w-12 h-12 bg-pink-100 rounded-full flex items-center justify-center text-pink-500 mb-4"> | |
| <i class="fas fa-handshake text-xl"></i> | |
| </div> | |
| <h3 class="font-bold text-lg text-gray-800 mb-2">Consent is Mandatory</h3> | |
| <p class="text-gray-600"> | |
| All content must be consensual. We have zero tolerance for non-consensual sharing or any form of exploitation. | |
| </p> | |
| </div> | |
| <div class="bg-white p-6 rounded-xl shadow-sm"> | |
| <div class="w-12 h-12 bg-pink-100 rounded-full flex items-center justify-center text-pink-500 mb-4"> | |
| <i class="fas fa-user-shield text-xl"></i> | |
| </div> | |
| <h3 class="font-bold text-lg text-gray-800 mb-2">Age Verification</h3> | |
| <p class="text-gray-600"> | |
| Strict 18+ policy for all users and content. We use advanced verification systems to ensure compliance. | |
| </p> | |
| </div> | |
| <div class="bg-white p-6 rounded-xl shadow-sm"> | |
| <div class="w-12 h-12 bg-pink-100 rounded-full flex items-center justify-center text-pink-500 mb-4"> | |
| <i class="fas fa-heart text-xl"></i> | |
| </div> | |
| <h3 class="font-bold text-lg text-gray-800 mb-2">Respect & Positivity</h3> | |
| <p class="text-gray-600"> | |
| Our community thrives on mutual respect. Harassment, hate speech, or bullying will not be tolerated. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Privacy Settings --> | |
| <section class="container mx-auto px-4 py-12"> | |
| <div class="max-w-4xl mx-auto bg-white rounded-xl shadow-sm overflow-hidden"> | |
| <div class="md:flex"> | |
| <div class="md:w-1/3 bg-pink-50 p-8 flex items-center justify-center"> | |
| <div class="text-center"> | |
| <i class="fas fa-lock text-5xl text-pink-500 mb-4"></i> | |
| <h3 class="text-xl font-bold text-gray-800">Privacy Controls</h3> | |
| </div> | |
| </div> | |
| <div class="md:w-2/3 p-8"> | |
| <h2 class="text-2xl font-bold text-gray-800 mb-6">Your Privacy Matters</h2> | |
| <div class="space-y-6"> | |
| <div class="flex items-center justify-between"> | |
| <div> | |
| <h4 class="font-medium text-gray-800">Profile Visibility</h4> | |
| <p class="text-sm text-gray-500">Choose who can see your profile and content</p> | |
| </div> | |
| <select class="border border-gray-300 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-pink-300"> | |
| <option>Public</option> | |
| <option>Followers Only</option> | |
| <option>Private</option> | |
| </select> | |
| </div> | |
| <div class="flex items-center justify-between"> | |
| <div> | |
| <h4 class="font-medium text-gray-800">Location Sharing</h4> | |
| <p class="text-sm text-gray-500">Hide your approximate location from others</p> | |
| </div> | |
| <div class="relative inline-block w-10 mr-2 align-middle select-none"> | |
| <input type="checkbox" id="location-toggle" class="toggle-checkbox absolute block w-6 h-6 rounded-full bg-white border-4 appearance-none cursor-pointer"/> | |
| <label for="location-toggle" class="toggle-label block overflow-hidden h-6 rounded-full bg-gray-300 cursor-pointer"></label> | |
| </div> | |
| </div> | |
| <div class="flex items-center justify-between"> | |
| <div> | |
| <h4 class="font-medium text-gray-800">Download Protection</h4> | |
| <p class="text-sm text-gray-500">Prevent others from downloading your content</p> | |
| </div> | |
| <div class="relative inline-block w-10 mr-2 align-middle select-none"> | |
| <input type="checkbox" id="download-toggle" checked class="toggle-checkbox absolute block w-6 h-6 rounded-full bg-white border-4 appearance-none cursor-pointer"/> | |
| <label for="download-toggle" class="toggle-label block overflow-hidden h-6 rounded-full bg-pink-200 cursor-pointer"></label> | |
| </div> | |
| </div> | |
| <div class="pt-4"> | |
| <button class="bg-pink-500 hover:bg-pink-600 text-white font-medium py-2 px-6 rounded-lg transition"> | |
| Save Privacy Settings | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-800 text-white pt-12 pb-6"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8"> | |
| <div> | |
| <div class="flex items-center space-x-2 mb-4"> | |
| <i class="fas fa-fire text-2xl text-pink-400"></i> | |
| <span class="text-xl font-bold">PassionPlay</span> | |
| </div> | |
| <p class="text-gray-400 mb-4"> | |
| A premium platform for adults to explore and share their passion in a safe, consensual environment. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-pink-400"><i class="fab fa-twitter"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-pink-400"><i class="fab fa-instagram"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-pink-400"><i class="fab fa-reddit-alien"></i></a> | |
| </div> | |
| </div> | |
| <div> | |
| <h4 class="font-bold text-lg mb-4">Explore</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-pink-400">Categories</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-pink-400">Live Streams</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-pink-400">Popular Creators</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-pink-400">New Releases</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-bold text-lg mb-4">Community</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-pink-400">Guidelines</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-pink-400">Forums</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-pink-400">Creator Program</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-pink-400">Safety Center</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-bold text-lg mb-4">Legal</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-pink-400">Terms of Service</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-pink-400">Privacy Policy</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-pink-400">DMCA</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-pink-400">2257 Statement</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="pt-6 border-t border-gray-700 text-center text-gray-400 text-sm"> | |
| <p>© 2023 PassionPlay. All rights reserved. All models are 18+ years of age.</p> | |
| <p class="mt-2">This website is for adults only. By entering, you confirm you are at least 18 years old.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| </div> | |
| <script> | |
| // Age verification | |
| function verifyAge(isAdult) { | |
| const ageModal = document.getElementById('ageModal'); | |
| const mainContent = document.getElementById('mainContent'); | |
| if (isAdult) { | |
| ageModal.classList.add('hidden'); | |
| mainContent.classList.remove('hidden'); | |
| document.cookie = "ageVerified=true; path=/; max-age=86400"; // 24 hours | |
| } else { | |
| window.location.href = "https://www.google.com"; | |
| } | |
| } | |
| // Check if already verified | |
| function checkAgeCookie() { | |
| const cookies = document.cookie.split(';'); | |
| for (let cookie of cookies) { | |
| const [name, value] = cookie.trim().split('='); | |
| if (name === 'ageVerified' && value === 'true') { | |
| document.getElementById('ageModal').classList.add('hidden'); | |
| document.getElementById('mainContent').classList.remove('hidden'); | |
| return; | |
| } | |
| } | |
| } | |
| // Tab functionality | |
| const tabButtons = document.querySelectorAll('.tab-button'); | |
| tabButtons.forEach(button => { | |
| button.addEventListener('click', () => { | |
| tabButtons.forEach(btn => btn.classList.remove('active', 'text-pink-500', 'border-pink-500')); | |
| tabButtons.forEach(btn => btn.classList.add('text-gray-500')); | |
| button.classList.add('active', 'text-pink-500', 'border-pink-500'); | |
| button.classList.remove('text-gray-500'); | |
| }); | |
| }); | |
| // Initialize | |
| document.addEventListener('DOMContentLoaded', () => { | |
| checkAgeCookie(); | |
| }); | |
| </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/wont-view-leet" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |