Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Operation Glitterbomb - Creative Anti-Surveillance</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> | |
.rainbow-bg { | |
background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb, #a6c1ee, #a1c4fd, #c2e9fb); | |
background-size: 400% 400%; | |
animation: rainbow 8s ease infinite; | |
} | |
@keyframes rainbow { | |
0% {background-position: 0% 50%;} | |
50% {background-position: 100% 50%;} | |
100% {background-position: 0% 50%;} | |
} | |
.typewriter { | |
overflow: hidden; | |
border-right: .15em solid #4ade80; | |
white-space: nowrap; | |
margin: 0 auto; | |
letter-spacing: .15em; | |
animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite; | |
} | |
@keyframes typing { | |
from { width: 0 } | |
to { width: 100% } | |
} | |
@keyframes blink-caret { | |
from, to { border-color: transparent } | |
50% { border-color: #4ade80; } | |
} | |
.pulse { | |
animation: pulse 2s infinite; | |
} | |
@keyframes pulse { | |
0% { transform: scale(1); } | |
50% { transform: scale(1.05); } | |
100% { transform: scale(1); } | |
} | |
.card-hover { | |
transition: all 0.3s ease; | |
} | |
.card-hover:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 10px 25px rgba(0,0,0,0.1); | |
} | |
</style> | |
</head> | |
<body class="bg-gray-50 text-gray-800 font-sans"> | |
<!-- Rainbow Header --> | |
<header class="rainbow-bg py-12 px-4 text-center"> | |
<div class="max-w-4xl mx-auto"> | |
<h1 class="text-5xl md:text-7xl font-bold mb-4 text-white drop-shadow-lg">OPERATION GLITTERBOMB</h1> | |
<p class="text-xl md:text-2xl font-bold text-white">Creative anti-surveillance for the modern age</p> | |
</div> | |
</header> | |
<!-- Main Content --> | |
<main class="max-w-4xl mx-auto px-4 py-10"> | |
<!-- Tagline --> | |
<div class="mb-16 text-center bg-white p-8 rounded-xl shadow-lg"> | |
<h2 class="typewriter text-3xl md:text-4xl font-bold mb-6 text-green-500">PROTECT YOUR COMMUNITY FROM SURVEILLANCE</h2> | |
<p class="text-xl md:text-2xl mb-8">Mislabeled USB drives that create confusion and waste surveillance resources</p> | |
<div class="flex justify-center"> | |
<div class="border-2 border-green-500 p-4 max-w-lg bg-white rounded-lg"> | |
<p class="text-lg italic">"The best defense against bad data is useless data."</p> | |
<p class="text-right text-gray-600">- Digital security expert</p> | |
</div> | |
</div> | |
</div> | |
<!-- The Problem --> | |
<section class="mb-16 bg-white p-8 rounded-xl shadow-lg border-l-8 border-blue-500"> | |
<h2 class="text-3xl font-bold mb-4 text-blue-600">THE CURRENT SITUATION</h2> | |
<p class="mb-4 text-lg">Law enforcement frequently seizes USB drives from suspected cannabis dealers, hoping to find contact lists, transaction records, or other incriminating data.</p> | |
<p class="text-lg">We propose a <span class="text-blue-600 font-bold">creative solution</span> to protect privacy and waste surveillance resources.</p> | |
</section> | |
<!-- The Solution --> | |
<section class="mb-16"> | |
<h2 class="text-3xl font-bold mb-6 text-center text-purple-600">THE GLITTERBOMB APPROACH</h2> | |
<div class="grid md:grid-cols-3 gap-6"> | |
<div class="bg-white p-6 rounded-xl shadow-md border-t-4 border-yellow-400 card-hover"> | |
<div class="text-center mb-4"> | |
<i class="fas fa-usb text-4xl text-yellow-500"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-2 text-center text-yellow-600">1. Misleading USB Drives</h3> | |
<p>Custom drives that appear legitimate but contain:</p> | |
<ul class="list-disc pl-5 mt-2 space-y-1"> | |
<li>Fake contact lists</li> | |
<li>Corrupted transaction logs</li> | |
<li>Random encrypted files</li> | |
<li>Harmless but confusing content</li> | |
</ul> | |
</div> | |
<div class="bg-white p-6 rounded-xl shadow-md border-t-4 border-green-400 card-hover"> | |
<div class="text-center mb-4"> | |
<i class="fas fa-tags text-4xl text-green-500"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-2 text-center text-green-600">2. Strategic Labeling</h3> | |
<p>Drives labeled to attract attention:</p> | |
<ul class="list-disc pl-5 mt-2 space-y-1"> | |
<li>"Customer List 2023"</li> | |
<li>"Payment Records"</li> | |
<li>"Supplier Contacts"</li> | |
<li>"Delivery Schedule"</li> | |
</ul> | |
</div> | |
<div class="bg-white p-6 rounded-xl shadow-md border-t-4 border-blue-400 card-hover"> | |
<div class="text-center mb-4"> | |
<i class="fas fa-map-marker-alt text-4xl text-blue-500"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-2 text-center text-blue-600">3. Smart Placement</h3> | |
<p>Distributed in areas where:</p> | |
<ul class="list-disc pl-5 mt-2 space-y-1"> | |
<li>Surveillance is known</li> | |
<li>They're likely to be found</li> | |
<li>They'll create maximum confusion</li> | |
</ul> | |
</div> | |
</div> | |
</section> | |
<!-- How It Helps --> | |
<section class="mb-16 bg-blue-50 p-8 rounded-xl border-l-8 border-purple-500"> | |
<h2 class="text-3xl font-bold mb-4 text-purple-600">HOW THIS HELPS</h2> | |
<div class="grid md:grid-cols-2 gap-6"> | |
<div> | |
<h3 class="text-xl font-bold mb-2 text-blue-600">For Cannabis Providers:</h3> | |
<ul class="space-y-2"> | |
<li class="flex items-start"><i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> <span>Creates noise in surveillance data</span></li> | |
<li class="flex items-start"><i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> <span>Wastes law enforcement resources</span></li> | |
<li class="flex items-start"><i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> <span>Provides plausible deniability</span></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-xl font-bold mb-2 text-blue-600">For Everyone:</h3> | |
<ul class="space-y-2"> | |
<li class="flex items-start"><i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> <span>Highlights surveillance overreach</span></li> | |
<li class="flex items-start"><i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> <span>Promotes digital privacy awareness</span></li> | |
<li class="flex items-start"><i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> <span>Creates safer communities</span></li> | |
</ul> | |
</div> | |
</div> | |
</section> | |
<!-- Get Involved --> | |
<section class="mb-16 bg-white p-8 rounded-xl shadow-lg"> | |
<h2 class="text-3xl font-bold mb-6 text-center text-pink-600">GET INVOLVED</h2> | |
<div class="grid md:grid-cols-2 gap-6"> | |
<div class="border-2 border-green-500 p-6 rounded-lg bg-white card-hover"> | |
<h3 class="text-2xl font-bold mb-4 text-center text-green-600">BASIC PACKAGE - $25</h3> | |
<ul class="space-y-3"> | |
<li class="flex items-start"><i class="fas fa-seedling text-green-500 mt-1 mr-2"></i> <span>1 pre-loaded USB drive</span></li> | |
<li class="flex items-start"><i class="fas fa-tag text-green-500 mt-1 mr-2"></i> <span>Custom misleading label</span></li> | |
<li class="flex items-start"><i class="fas fa-book text-green-500 mt-1 mr-2"></i> <span>Digital privacy guide</span></li> | |
</ul> | |
<button class="w-full mt-6 bg-green-600 hover:bg-green-700 text-white font-bold py-3 px-4 rounded-lg transition duration-300"> | |
GET STARTED | |
</button> | |
</div> | |
<div class="border-2 border-purple-500 p-6 rounded-lg bg-white card-hover"> | |
<h3 class="text-2xl font-bold mb-4 text-center text-purple-600">COMMUNITY PACKAGE - $100</h3> | |
<ul class="space-y-3"> | |
<li class="flex items-start"><i class="fas fa-box-open text-purple-500 mt-1 mr-2"></i> <span>5 pre-loaded USB drives</span></li> | |
<li class="flex items-start"><i class="fas fa-map-marked-alt text-purple-500 mt-1 mr-2"></i> <span>Placement guide for your area</span></li> | |
<li class="flex items-start"><i class="fas fa-shield-alt text-purple-500 mt-1 mr-2"></i> <span>Advanced privacy resources</span></li> | |
<li class="flex items-start"><i class="fas fa-hands-helping text-purple-500 mt-1 mr-2"></i> <span>Community support</span></li> | |
</ul> | |
<button class="w-full mt-6 bg-purple-600 hover:bg-purple-700 text-white font-bold py-3 px-4 rounded-lg transition duration-300"> | |
PROTECT YOUR AREA | |
</button> | |
</div> | |
</div> | |
</section> | |
<!-- FAQ --> | |
<section class="mb-16 bg-white p-8 rounded-xl shadow-lg"> | |
<h2 class="text-3xl font-bold mb-6 text-center text-blue-600">COMMON QUESTIONS</h2> | |
<div class="space-y-6"> | |
<div class="border-b border-gray-200 pb-4"> | |
<h3 class="text-xl font-bold text-green-600">Is this legal?</h3> | |
<p class="mt-2 text-gray-700">The USB drives contain no illegal content. They simply provide misleading or useless information. We recommend consulting local laws regarding digital devices.</p> | |
</div> | |
<div class="border-b border-gray-200 pb-4"> | |
<h3 class="text-xl font-bold text-green-600">How does this help?</h3> | |
<p class="mt-2 text-gray-700">By flooding surveillance systems with useless data, we make it harder to find real information, protecting privacy and wasting resources that could be better spent elsewhere.</p> | |
</div> | |
<div class="pb-4"> | |
<h3 class="text-xl font-bold text-green-600">Can I customize the content?</h3> | |
<p class="mt-2 text-gray-700">Yes! Higher tiers allow you to suggest content that would be particularly misleading in your local context while remaining legal and harmless.</p> | |
</div> | |
</div> | |
</section> | |
<!-- Call to Action --> | |
<section class="text-center py-12 bg-gradient-to-r from-blue-500 to-purple-600 text-white rounded-xl shadow-lg"> | |
<h2 class="text-4xl font-bold mb-6">READY TO MAKE A DIFFERENCE?</h2> | |
<p class="text-xl mb-8">Join the movement to protect privacy and challenge unnecessary surveillance.</p> | |
<button class="bg-white hover:bg-gray-100 text-blue-600 font-bold py-4 px-8 rounded-full text-xl transition duration-300 shadow-lg"> | |
GET STARTED TODAY | |
</button> | |
<p class="mt-4 text-sm text-blue-100">100% legal privacy protection</p> | |
</section> | |
</main> | |
<!-- Footer --> | |
<footer class="bg-gray-800 text-white py-8 px-4 text-center"> | |
<div class="max-w-4xl mx-auto"> | |
<div class="flex justify-center space-x-6 mb-6"> | |
<a href="#" class="text-white hover:text-blue-300 text-2xl transition duration-300"><i class="fab fa-twitter"></i></a> | |
<a href="#" class="text-white hover:text-pink-300 text-2xl transition duration-300"><i class="fab fa-instagram"></i></a> | |
<a href="#" class="text-white hover:text-green-300 text-2xl transition duration-300"><i class="fab fa-telegram"></i></a> | |
</div> | |
<p class="text-gray-300">Operation Glitterbomb is a digital privacy initiative.</p> | |
<p class="text-gray-500 text-sm mt-2">All content is legal and intended for educational purposes only.</p> | |
</div> | |
</footer> | |
<script> | |
// Animate buttons on hover | |
document.querySelectorAll('button').forEach(button => { | |
button.addEventListener('mouseover', function() { | |
this.classList.add('shadow-md'); | |
}); | |
button.addEventListener('mouseout', function() { | |
this.classList.remove('shadow-md'); | |
}); | |
}); | |
// Counter for "drives deployed" | |
const counter = document.createElement('div'); | |
counter.className = 'fixed bottom-4 right-4 bg-green-600 text-white px-4 py-2 rounded-full shadow-lg z-50 flex items-center'; | |
counter.innerHTML = ` | |
<i class="fas fa-usb mr-2"></i> | |
<span class="font-bold">${Math.floor(Math.random() * 1000) + 500}</span> drives deployed | |
`; | |
document.body.appendChild(counter); | |
setInterval(() => { | |
const current = parseInt(counter.querySelector('span').textContent); | |
counter.querySelector('span').textContent = current + Math.floor(Math.random() * 5) + 1; | |
}, 8000); | |
</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=igardner/positive-outlook" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |