Spaces:
Running
Running
File size: 19,169 Bytes
d83a86f b31babd d83a86f b31babd d83a86f d0f35b2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StreamSnatch Bot</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
500: '#6366f1',
},
secondary: {
500: '#f59e0b',
}
}
}
}
}
</script>
<style>
.vanta-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.15;
}
.download-btn {
transition: all 0.3s ease;
}
.download-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body class="bg-gray-50 dark:bg-gray-900 min-h-screen transition-colors duration-200">
<div id="vanta-bg" class="vanta-bg"></div>
<!-- Header -->
<header class="bg-gradient-to-r from-primary-500 to-purple-600 text-white py-6 px-4 shadow-lg">
<div class="container mx-auto flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-4 md:mb-0">
<i data-feather="download" class="w-8 h-8 mr-3"></i>
<h1 class="text-2xl md:text-3xl font-bold">StreamSnatch Bot</h1>
</div>
<div class="flex items-center space-x-4">
<button id="theme-toggle" class="p-2 rounded-full bg-white/20 hover:bg-white/30 transition">
<i data-feather="moon" class="w-5 h-5 hidden dark:block"></i>
<i data-feather="sun" class="w-5 h-5 block dark:hidden"></i>
</button>
<a href="https://t.me/StreamSnatchBot" class="bg-white text-primary-500 px-4 py-2 rounded-lg font-medium hover:bg-gray-100 transition flex items-center">
<i data-feather="send" class="w-4 h-4 mr-2"></i>
Launch Bot
</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="py-16 px-4">
<div class="container mx-auto text-center max-w-4xl">
<h2 class="text-3xl md:text-5xl font-bold text-gray-800 dark:text-white mb-6">
Download from <span class="text-primary-500">30+ OTT Platforms</span> in One Click
</h2>
<p class="text-lg md:text-xl text-gray-600 dark:text-gray-300 mb-10">
Your ultimate tool for downloading movies, TV shows, and web series from all major streaming platforms directly to your device.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="https://t.me/StreamSnatchBot" class="bg-primary-500 hover:bg-primary-600 text-white px-8 py-4 rounded-xl font-bold text-lg download-btn flex items-center justify-center">
<i data-feather="play" class="w-5 h-5 mr-2"></i>
Start Downloading
</a>
<a href="#features" class="bg-white dark:bg-gray-800 hover:bg-gray-100 dark:hover:bg-gray-700 border border-gray-200 dark:border-gray-700 text-gray-800 dark:text-white px-8 py-4 rounded-xl font-bold text-lg download-btn flex items-center justify-center">
<i data-feather="info" class="w-5 h-5 mr-2"></i>
Learn More
</a>
</div>
</div>
</section>
<!-- Supported Platforms -->
<section class="py-12 px-4 bg-white dark:bg-gray-800">
<div class="container mx-auto">
<h2 class="text-2xl md:text-3xl font-bold text-center text-gray-800 dark:text-white mb-12">
Supported Platforms
</h2>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-6">
<div class="bg-gray-50 dark:bg-gray-700 p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow flex flex-col items-center">
<img src="http://static.photos/technology/200x200/1" alt="Hotstar" class="w-16 h-16 rounded-lg mb-3 object-cover">
<span class="font-medium text-gray-800 dark:text-white">Disney+ Hotstar</span>
</div>
<div class="bg-gray-50 dark:bg-gray-700 p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow flex flex-col items-center">
<img src="http://static.photos/technology/200x200/2" alt="Zee5" class="w-16 h-16 rounded-lg mb-3 object-cover">
<span class="font-medium text-gray-800 dark:text-white">ZEE5</span>
</div>
<div class="bg-gray-50 dark:bg-gray-700 p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow flex flex-col items-center">
<img src="http://static.photos/technology/200x200/3" alt="JioCinema" class="w-16 h-16 rounded-lg mb-3 object-cover">
<span class="font-medium text-gray-800 dark:text-white">JioCinema</span>
</div>
<div class="bg-gray-50 dark:bg-gray-700 p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow flex flex-col items-center">
<img src="http://static.photos/technology/200x200/4" alt="MX Player" class="w-16 h-16 rounded-lg mb-3 object-cover">
<span class="font-medium text-gray-800 dark:text-white">MX Player</span>
</div>
<div class="bg-gray-50 dark:bg-gray-700 p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow flex flex-col items-center">
<img src="http://static.photos/technology/200x200/5" alt="Amazon Prime" class="w-16 h-16 rounded-lg mb-3 object-cover">
<span class="font-medium text-gray-800 dark:text-white">Prime Video</span>
</div>
<div class="bg-gray-50 dark:bg-gray-700 p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow flex flex-col items-center">
<img src="http://static.photos/technology/200x200/6" alt="Netflix" class="w-16 h-16 rounded-lg mb-3 object-cover">
<span class="font-medium text-gray-800 dark:text-white">Netflix</span>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 px-4 bg-gray-50 dark:bg-gray-900">
<div class="container mx-auto">
<h2 class="text-2xl md:text-3xl font-bold text-center text-gray-800 dark:text-white mb-12">
Powerful Features
</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow">
<div class="w-12 h-12 bg-primary-100 dark:bg-primary-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="download" class="text-primary-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-2">Multi-Quality Downloads</h3>
<p class="text-gray-600 dark:text-gray-300">
Choose from 360p, 720p, or 1080p quality options based on your needs and device compatibility.
</p>
</div>
<!-- Feature 2 -->
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow">
<div class="w-12 h-12 bg-secondary-100 dark:bg-secondary-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="list" class="text-secondary-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-2">Batch Downloads</h3>
<p class="text-gray-600 dark:text-gray-300">
Download entire seasons or multiple movies at once with our batch download feature.
</p>
</div>
<!-- Feature 3 -->
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow">
<div class="w-12 h-12 bg-primary-100 dark:bg-primary-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="search" class="text-primary-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-2">Smart Search</h3>
<p class="text-gray-600 dark:text-gray-300">
Find content quickly with our intelligent search that suggests results as you type.
</p>
</div>
<!-- Feature 4 -->
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow">
<div class="w-12 h-12 bg-secondary-100 dark:bg-secondary-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="clock" class="text-secondary-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-2">Download Queue</h3>
<p class="text-gray-600 dark:text-gray-300">
Queue multiple downloads and track progress with real-time updates.
</p>
</div>
<!-- Feature 5 -->
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow">
<div class="w-12 h-12 bg-primary-100 dark:bg-primary-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="shield" class="text-primary-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-2">Regular Updates</h3>
<p class="text-gray-600 dark:text-gray-300">
We constantly update our bot to bypass platform restrictions and add new features.
</p>
</div>
<!-- Feature 6 -->
<div class="bg-white dark:bg-gray-800 p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow">
<div class="w-12 h-12 bg-secondary-100 dark:bg-secondary-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="smartphone" class="text-secondary-500 w-6 h-6"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-2">Mobile Friendly</h3>
<p class="text-gray-600 dark:text-gray-300">
Works perfectly on both mobile and desktop Telegram clients with responsive design.
</p>
</div>
</div>
</div>
</section>
<!-- How It Works -->
<section class="py-16 px-4 bg-white dark:bg-gray-800">
<div class="container mx-auto">
<h2 class="text-2xl md:text-3xl font-bold text-center text-gray-800 dark:text-white mb-12">
How It Works
</h2>
<div class="grid md:grid-cols-3 gap-8">
<!-- Step 1 -->
<div class="flex flex-col items-center text-center">
<div class="w-16 h-16 bg-primary-500 text-white rounded-full flex items-center justify-center text-2xl font-bold mb-4">1</div>
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-2">Start the Bot</h3>
<p class="text-gray-600 dark:text-gray-300">
Open Telegram and search for @StreamSnatchBot or click the Launch button above.
</p>
</div>
<!-- Step 2 -->
<div class="flex flex-col items-center text-center">
<div class="w-16 h-16 bg-primary-500 text-white rounded-full flex items-center justify-center text-2xl font-bold mb-4">2</div>
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-2">Paste the Link</h3>
<p class="text-gray-600 dark:text-gray-300">
Copy the URL of the content you want to download from any supported platform.
</p>
</div>
<!-- Step 3 -->
<div class="flex flex-col items-center text-center">
<div class="w-16 h-16 bg-primary-500 text-white rounded-full flex items-center justify-center text-2xl font-bold mb-4">3</div>
<h3 class="text-xl font-bold text-gray-800 dark:text-white mb-2">Download & Enjoy</h3>
<p class="text-gray-600 dark:text-gray-300">
Select your preferred quality and let the bot handle the rest. Your file will be ready in minutes!
</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 px-4 bg-gradient-to-r from-primary-500 to-purple-600 text-white">
<div class="container mx-auto text-center max-w-3xl">
<h2 class="text-2xl md:text-4xl font-bold mb-6">Ready to Download Your Favorite Shows?</h2>
<p class="text-lg md:text-xl mb-8 opacity-90">
Join thousands of happy users who download content daily with StreamSnatch Bot.
</p>
<a href="https://t.me/StreamSnatchBot" class="bg-white text-primary-500 px-8 py-4 rounded-xl font-bold text-lg inline-block hover:bg-gray-100 transition download-btn">
<i data-feather="send" class="w-5 h-5 mr-2 inline"></i>
Start Downloading Now
</a>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-gray-300 py-12 px-4">
<div class="container mx-auto">
<div class="grid md:grid-cols-4 gap-8">
<div>
<h3 class="text-white text-lg font-bold mb-4 flex items-center">
<i data-feather="download" class="w-5 h-5 mr-2"></i>
StreamSnatch Bot
</h3>
<p class="mb-4">
Your ultimate OTT content downloader for Telegram.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="github" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="mail" class="w-5 h-5"></i>
</a>
</div>
</div>
<div>
<h3 class="text-white text-lg font-bold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition">Home</a></li>
<li><a href="#features" class="hover:text-white transition">Features</a></li>
<li><a href="#" class="hover:text-white transition">Supported Platforms</a></li>
<li><a href="downloader.html" class="hover:text-white transition">Downloader Script</a></li>
<li><a href="#" class="hover:text-white transition">FAQ</a></li>
</ul>
</div>
<div>
<h3 class="text-white text-lg font-bold mb-4">Legal</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition">Terms of Service</a></li>
<li><a href="#" class="hover:text-white transition">Privacy Policy</a></li>
<li><a href="#" class="hover:text-white transition">DMCA</a></li>
</ul>
</div>
<div>
<h3 class="text-white text-lg font-bold mb-4">Support</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition">Contact Us</a></li>
<li><a href="#" class="hover:text-white transition">Report Issue</a></li>
<li><a href="#" class="hover:text-white transition">Request Platform</a></li>
<li><a href="downloader.html" class="hover:text-white transition">Downloader Script</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-sm">
<p>© 2023 StreamSnatch Bot. All rights reserved.</p>
<p class="mt-2">This service is not affiliated with any streaming platform.</p>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<script>
// Initialize Vanta.js background
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x6366f1,
backgroundColor: 0x0,
size: 0.8
});
// Theme toggle functionality
const themeToggle = document.getElementById('theme-toggle');
const html = document.documentElement;
// Check for saved user preference or use system preference
if (localStorage.getItem('theme') === 'dark' || (!localStorage.getItem('theme') && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
html.classList.add('dark');
} else {
html.classList.remove('dark');
}
// Toggle theme on button click
themeToggle.addEventListener('click', () => {
html.classList.toggle('dark');
localStorage.setItem('theme', html.classList.contains('dark') ? 'dark' : 'light');
});
// Initialize feather icons
feather.replace();
</script>
</body>
</html>
|