Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Платёжки для арбитража трафика</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> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@700;900&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| background-color: #000; | |
| overflow: hidden; | |
| } | |
| .neon-text { | |
| text-shadow: 0 0 10px rgba(0, 255, 170, 0.7), | |
| 0 0 20px rgba(0, 255, 170, 0.5); | |
| } | |
| .neon-border { | |
| box-shadow: 0 0 10px rgba(0, 255, 170, 0.7), | |
| inset 0 0 10px rgba(0, 255, 170, 0.3); | |
| border: 1px solid rgba(0, 255, 170, 0.3); | |
| } | |
| .payment-path { | |
| position: relative; | |
| } | |
| .payment-path::after { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 50%; | |
| width: 2px; | |
| height: 100%; | |
| background: linear-gradient(to bottom, | |
| transparent, | |
| rgba(0, 255, 170, 0.7), | |
| transparent); | |
| transform: translateX(-50%); | |
| } | |
| .card-animation { | |
| animation: float 3s ease-in-out infinite; | |
| } | |
| .shield-animation { | |
| animation: pulse 2s ease-in-out infinite; | |
| } | |
| @keyframes float { | |
| 0%, 100% { transform: translateY(0); } | |
| 50% { transform: translateY(-10px); } | |
| } | |
| @keyframes pulse { | |
| 0%, 100% { opacity: 1; } | |
| 50% { opacity: 0.7; } | |
| } | |
| .transaction-line { | |
| position: absolute; | |
| background: linear-gradient(90deg, transparent, rgba(0, 255, 170, 0.5), transparent); | |
| height: 1px; | |
| transform-origin: left; | |
| } | |
| .declined { | |
| animation: shake 0.5s ease-in-out; | |
| } | |
| @keyframes shake { | |
| 0%, 100% { transform: translateX(0); } | |
| 25% { transform: translateX(-5px); } | |
| 75% { transform: translateX(5px); } | |
| } | |
| .qr-code { | |
| position: absolute; | |
| width: 16px; | |
| height: 16px; | |
| background: black; | |
| box-shadow: 0 0 0 1px white; | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen flex items-center justify-center p-4"> | |
| <div class="absolute inset-0 overflow-hidden"> | |
| <!-- Background elements --> | |
| <div class="absolute top-0 left-0 w-full h-full opacity-20"> | |
| <!-- Grid pattern --> | |
| <div class="absolute inset-0" style="background: | |
| linear-gradient(rgba(0, 255, 170, 0.1) 1px, transparent 1px), | |
| linear-gradient(90deg, rgba(0, 255, 170, 0.1) 1px, transparent 1px); | |
| background-size: 40px 40px;"></div> | |
| <!-- Floating UI elements --> | |
| <div class="absolute top-1/4 left-1/4 w-32 h-20 bg-black neon-border rounded-lg opacity-70 transform rotate-12"></div> | |
| <div class="absolute top-1/3 right-1/4 w-40 h-24 bg-black neon-border rounded-lg opacity-70 transform -rotate-6"></div> | |
| <div class="absolute bottom-1/4 left-1/3 w-36 h-28 bg-black neon-border rounded-lg opacity-70 transform rotate-3"></div> | |
| <!-- Transaction lines --> | |
| <div class="transaction-line" style="top: 20%; left: 10%; width: 30%; transform: rotate(15deg);"></div> | |
| <div class="transaction-line" style="top: 40%; left: 60%; width: 25%; transform: rotate(-10deg);"></div> | |
| <div class="transaction-line" style="top: 70%; left: 20%; width: 35%; transform: rotate(5deg);"></div> | |
| <!-- Floating currency symbols --> | |
| <div class="absolute top-1/5 right-1/5 text-emerald-400 opacity-50 text-2xl">$</div> | |
| <div class="absolute bottom-1/3 left-1/5 text-emerald-400 opacity-50 text-2xl">€</div> | |
| <div class="absolute top-2/3 right-1/6 text-emerald-400 opacity-50 text-2xl">₿</div> | |
| </div> | |
| </div> | |
| <div class="relative z-10 w-full max-w-6xl mx-auto flex flex-col md:flex-row items-center justify-between p-8"> | |
| <!-- Left content --> | |
| <div class="w-full md:w-1/2 mb-10 md:mb-0"> | |
| <h1 class="text-5xl md:text-6xl lg:text-7xl font-black text-white neon-text leading-tight mb-6"> | |
| Платёжки для<br>арбитража трафика | |
| </h1> | |
| <div class="flex flex-wrap gap-4 mt-10"> | |
| <div class="px-4 py-2 bg-black neon-border rounded-full flex items-center"> | |
| <i class="fas fa-shield-alt text-emerald-400 mr-2 shield-animation"></i> | |
| <span class="text-white text-sm font-bold">Анонимность</span> | |
| </div> | |
| <div class="px-4 py-2 bg-black neon-border rounded-full flex items-center"> | |
| <i class="fas fa-bolt text-emerald-400 mr-2"></i> | |
| <span class="text-white text-sm font-bold">Скорость</span> | |
| </div> | |
| <div class="px-4 py-2 bg-black neon-border rounded-full flex items-center"> | |
| <i class="fas fa-expand text-emerald-400 mr-2"></i> | |
| <span class="text-white text-sm font-bold">Масштабируемость</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Right content - Payment path --> | |
| <div class="w-full md:w-1/2 relative payment-path pl-10"> | |
| <!-- Payment flow visualization --> | |
| <div class="relative h-96"> | |
| <!-- Step 1: Advertiser --> | |
| <div class="absolute top-0 left-0 w-40"> | |
| <div class="bg-gray-800 p-4 rounded-lg shadow-lg"> | |
| <div class="flex items-center mb-2"> | |
| <div class="w-8 h-8 bg-gray-600 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-ad text-white"></i> | |
| </div> | |
| <span class="ml-2 text-white font-bold text-sm">Рекламодатель</span> | |
| </div> | |
| <div class="h-1 bg-gray-600 my-2"></div> | |
| <div class="text-gray-400 text-xs">Ограниченные платежи</div> | |
| </div> | |
| <div class="h-6 w-px bg-emerald-400 ml-5"></div> | |
| </div> | |
| <!-- Step 2: Proxy accounts --> | |
| <div class="absolute top-24 left-20 w-40"> | |
| <div class="bg-gray-900 p-4 rounded-lg shadow-lg"> | |
| <div class="flex items-center mb-2"> | |
| <div class="w-8 h-8 bg-emerald-500 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-user-shield text-white"></i> | |
| </div> | |
| <span class="ml-2 text-white font-bold text-sm">Прокси-аккаунты</span> | |
| </div> | |
| <div class="h-1 bg-emerald-500 my-2"></div> | |
| <div class="text-emerald-300 text-xs">Мультиаккаунтинг</div> | |
| </div> | |
| <div class="h-6 w-px bg-emerald-400 ml-5"></div> | |
| </div> | |
| <!-- Step 3: Payment systems --> | |
| <div class="absolute top-48 left-40 w-44"> | |
| <div class="bg-black neon-border p-4 rounded-lg shadow-lg relative"> | |
| <div class="flex items-center mb-2"> | |
| <div class="w-8 h-8 bg-purple-500 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-money-bill-wave text-white"></i> | |
| </div> | |
| <span class="ml-2 text-white font-bold text-sm">Платёжные системы</span> | |
| </div> | |
| <div class="h-1 bg-gradient-to-r from-emerald-400 to-purple-500 my-2"></div> | |
| <div class="text-emerald-300 text-xs">Обход блокировок</div> | |
| <!-- Payment status indicators --> | |
| <div class="absolute -right-4 -top-4 w-8 h-8 bg-red-500 rounded-full flex items-center justify-center declined"> | |
| <i class="fas fa-times text-white"></i> | |
| </div> | |
| <div class="absolute -right-4 top-8 w-8 h-8 bg-yellow-500 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-pause text-white"></i> | |
| </div> | |
| <div class="absolute -right-4 top-20 w-8 h-8 bg-emerald-500 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-check text-white"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Floating payment cards --> | |
| <div class="absolute top-10 right-10 w-24 h-16 bg-gradient-to-br from-gray-800 to-gray-900 rounded-lg shadow-lg card-animation transform rotate-6"> | |
| <div class="absolute top-2 left-2 w-6 h-1 bg-gray-600"></div> | |
| <div class="absolute top-4 left-2 w-10 h-1 bg-gray-600"></div> | |
| <div class="absolute bottom-2 right-2 text-xs text-gray-400">•••• 1234</div> | |
| </div> | |
| <div class="absolute top-32 right-0 w-24 h-16 bg-gradient-to-br from-emerald-900 to-emerald-700 rounded-lg shadow-lg card-animation transform -rotate-6" style="animation-delay: 0.5s;"> | |
| <div class="absolute top-2 left-2 w-6 h-1 bg-emerald-400"></div> | |
| <div class="absolute top-4 left-2 w-10 h-1 bg-emerald-400"></div> | |
| <div class="absolute bottom-2 right-2 text-xs text-emerald-200">•••• 5678</div> | |
| </div> | |
| <!-- Crypto wallet - moved to not overlap with payment systems --> | |
| <div class="absolute bottom-10 right-20 w-20 h-20 bg-black neon-border rounded-full flex items-center justify-center"> | |
| <i class="fab fa-bitcoin text-yellow-500 text-2xl"></i> | |
| </div> | |
| <!-- Small QR code icon - moved and made smaller --> | |
| <div class="absolute bottom-24 right-5 w-8 h-8 bg-white p-1 flex items-center justify-center"> | |
| <div class="w-full h-full grid grid-cols-4 gap-px"> | |
| <div class="bg-black"></div><div class="bg-black"></div><div class="bg-black"></div><div class="bg-black"></div> | |
| <div class="bg-black"></div><div class="bg-white"></div><div class="bg-white"></div><div class="bg-black"></div> | |
| <div class="bg-black"></div><div class="bg-white"></div><div class="bg-black"></div><div class="bg-black"></div> | |
| <div class="bg-black"></div><div class="bg-black"></div><div class="bg-white"></div><div class="bg-black"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <script> | |
| // Create additional floating elements | |
| document.addEventListener('DOMContentLoaded', function() { | |
| const background = document.querySelector('.absolute.inset-0'); | |
| // Create more transaction lines | |
| for (let i = 0; i < 5; i++) { | |
| const line = document.createElement('div'); | |
| line.className = 'transaction-line'; | |
| const top = Math.random() * 100; | |
| const left = Math.random() * 100; | |
| const width = 20 + Math.random() * 30; | |
| const angle = -15 + Math.random() * 30; | |
| line.style.top = `${top}%`; | |
| line.style.left = `${left}%`; | |
| line.style.width = `${width}%`; | |
| line.style.transform = `rotate(${angle}deg)`; | |
| background.appendChild(line); | |
| } | |
| // Create floating currency symbols | |
| for (let i = 0; i < 8; i++) { | |
| const symbol = document.createElement('div'); | |
| symbol.className = 'absolute text-emerald-400 opacity-30 text-xl'; | |
| const symbols = ['$', '€', '£', '₿', '₽', '¥', '₮', '₴']; | |
| const randomSymbol = symbols[Math.floor(Math.random() * symbols.length)]; | |
| symbol.textContent = randomSymbol; | |
| symbol.style.top = `${Math.random() * 100}%`; | |
| symbol.style.left = `${Math.random() * 100}%`; | |
| background.appendChild(symbol); | |
| } | |
| // Animate declined transaction | |
| setInterval(() => { | |
| const declined = document.querySelector('.declined'); | |
| declined.classList.remove('declined'); | |
| setTimeout(() => { | |
| declined.classList.add('declined'); | |
| }, 10); | |
| }, 3000); | |
| }); | |
| </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=timoon811/paythema3412" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |