|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Why Enter Traffic Arbitrage Now</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@400;500;700;900&display=swap'); |
|
|
|
|
|
body { |
|
|
font-family: 'Inter', sans-serif; |
|
|
background-color: #0a0a0a; |
|
|
color: #E1E1E1; |
|
|
overflow-x: hidden; |
|
|
} |
|
|
|
|
|
.glow-text { |
|
|
text-shadow: 0 0 10px rgba(246, 252, 121, 0.7); |
|
|
} |
|
|
|
|
|
.glow-box { |
|
|
box-shadow: 0 0 15px rgba(246, 252, 121, 0.5); |
|
|
} |
|
|
|
|
|
.glow-box:hover { |
|
|
box-shadow: 0 0 25px rgba(246, 252, 121, 0.8); |
|
|
} |
|
|
|
|
|
.border-glow { |
|
|
border-color: #f6fc79; |
|
|
box-shadow: 0 0 10px rgba(246, 252, 121, 0.3); |
|
|
} |
|
|
|
|
|
.border-glow:hover { |
|
|
box-shadow: 0 0 20px rgba(246, 252, 121, 0.5); |
|
|
} |
|
|
|
|
|
|
|
|
.section-why-now { |
|
|
min-height: 100vh; |
|
|
position: relative; |
|
|
overflow: hidden; |
|
|
background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%); |
|
|
} |
|
|
|
|
|
.title-slide { |
|
|
animation: titleEntrance 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards; |
|
|
opacity: 0; |
|
|
transform: translateY(30px) rotateX(15deg); |
|
|
transform-origin: bottom; |
|
|
} |
|
|
|
|
|
@keyframes titleEntrance { |
|
|
0% { transform: translateY(30px) rotateX(15deg); opacity: 0; } |
|
|
100% { transform: translateY(0) rotateX(0); opacity: 1; } |
|
|
} |
|
|
|
|
|
.card { |
|
|
transition: all 0.4s ease; |
|
|
transform: translateY(30px) scale(0.98); |
|
|
opacity: 0; |
|
|
animation: cardReveal 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; |
|
|
animation-delay: calc(var(--order) * 0.15s); |
|
|
perspective: 1000px; |
|
|
transform-style: preserve-3d; |
|
|
} |
|
|
|
|
|
@keyframes cardReveal { |
|
|
0% { transform: translateY(30px) scale(0.98) rotateY(10deg); opacity: 0; } |
|
|
100% { transform: translateY(0) scale(1) rotateY(0); opacity: 1; } |
|
|
} |
|
|
|
|
|
.card:hover { |
|
|
transform: translateY(-5px) rotateY(-5deg) scale(1.02) !important; |
|
|
z-index: 10; |
|
|
} |
|
|
|
|
|
.grid-bg { |
|
|
background-image: |
|
|
linear-gradient(rgba(246, 252, 121, 0.05) 1px, transparent 1px), |
|
|
linear-gradient(90deg, rgba(246, 252, 121, 0.05) 1px, transparent 1px); |
|
|
background-size: 40px 40px; |
|
|
} |
|
|
|
|
|
.quote-box { |
|
|
background: rgba(18, 18, 18, 0.8); |
|
|
border-left: 3px solid #f6fc79; |
|
|
transform: translateX(-20px); |
|
|
opacity: 0; |
|
|
animation: quoteSlide 1s ease-out 0.8s forwards; |
|
|
} |
|
|
|
|
|
@keyframes quoteSlide { |
|
|
0% { transform: translateX(-20px); opacity: 0; } |
|
|
100% { transform: translateX(0); opacity: 1; } |
|
|
} |
|
|
|
|
|
.icon-pulse { |
|
|
position: relative; |
|
|
} |
|
|
|
|
|
.icon-pulse::after { |
|
|
content: ''; |
|
|
position: absolute; |
|
|
top: -5px; |
|
|
left: -5px; |
|
|
right: -5px; |
|
|
bottom: -5px; |
|
|
border: 1px solid rgba(246, 252, 121, 0.3); |
|
|
border-radius: 50%; |
|
|
animation: pulseRing 2s infinite; |
|
|
opacity: 0; |
|
|
} |
|
|
|
|
|
@keyframes pulseRing { |
|
|
0% { transform: scale(0.8); opacity: 0.5; } |
|
|
70% { transform: scale(1.2); opacity: 0; } |
|
|
100% { opacity: 0; } |
|
|
} |
|
|
|
|
|
.data-stream { |
|
|
position: absolute; |
|
|
width: 2px; |
|
|
height: 100%; |
|
|
background: linear-gradient(to bottom, transparent, rgba(246, 252, 121, 0.3), transparent); |
|
|
animation: streamFlow 4s linear infinite; |
|
|
} |
|
|
|
|
|
@keyframes streamFlow { |
|
|
0% { top: -100%; } |
|
|
100% { top: 100%; } |
|
|
} |
|
|
|
|
|
@media (max-width: 1024px) { |
|
|
.card-container { |
|
|
grid-template-columns: repeat(2, 1fr); |
|
|
} |
|
|
} |
|
|
|
|
|
@media (max-width: 768px) { |
|
|
.card-container { |
|
|
grid-template-columns: 1fr; |
|
|
} |
|
|
|
|
|
.title-slide, .card { |
|
|
animation: fadeIn 1s ease-out forwards; |
|
|
} |
|
|
|
|
|
@keyframes fadeIn { |
|
|
0% { opacity: 0; } |
|
|
100% { opacity: 1; } |
|
|
} |
|
|
} |
|
|
</style> |
|
|
</head> |
|
|
<body> |
|
|
<section class="section-why-now py-20 px-4 sm:px-6 lg:px-8 grid-bg"> |
|
|
<div class="max-w-7xl mx-auto relative z-10"> |
|
|
<div class="flex flex-col lg:flex-row gap-12 items-center"> |
|
|
|
|
|
<div class="lg:w-1/2 space-y-8"> |
|
|
<h2 class="text-3xl sm:text-4xl md:text-5xl font-bold uppercase tracking-wide title-slide" style="color: #f6fc79; animation-delay: 0.2s;"> |
|
|
Почему стоит войти в арбитраж прямо сейчас |
|
|
</h2> |
|
|
|
|
|
<div class="space-y-6 text-lg opacity-85 title-slide" style="animation-delay: 0.4s;"> |
|
|
<p>Рынок арбитража трафика — только на старте. Входи сейчас, пока ниша свободна.</p> |
|
|
<p>Онлайн-реклама растёт с каждым годом. В 2025 году компании по всему миру тратят миллиарды долларов на привлечение клиентов, и им нужны специалисты, которые умеют грамотно управлять трафиком.</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="lg:w-1/2 relative"> |
|
|
|
|
|
<div class="data-stream" style="left: 10%; animation-delay: 0.5s;"></div> |
|
|
<div class="data-stream" style="left: 30%; animation-delay: 1.2s;"></div> |
|
|
<div class="data-stream" style="left: 70%; animation-delay: 0.8s;"></div> |
|
|
<div class="data-stream" style="left: 90%; animation-delay: 1.5s;"></div> |
|
|
|
|
|
<div class="card-container grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-6"> |
|
|
|
|
|
<div class="card bg-[#121212] p-6 rounded-lg glow-box border border-gray-800 hover:border-glow" style="--order: 1;"> |
|
|
<div class="flex items-start space-x-4"> |
|
|
<div class="text-2xl icon-pulse" style="color: #f6fc79;"> |
|
|
<i class="fas fa-dollar-sign"></i> |
|
|
</div> |
|
|
<div> |
|
|
<h3 class="text-white font-bold text-xl mb-2">Доход в долларах</h3> |
|
|
<p class="text-gray-300 opacity-85">Работа с международным трафиком и партнёрками, выплаты от $100 в день.</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="card bg-[#121212] p-6 rounded-lg glow-box border border-gray-800 hover:border-glow" style="--order: 2;"> |
|
|
<div class="flex items-start space-x-4"> |
|
|
<div class="text-2xl icon-pulse" style="color: #f6fc79;"> |
|
|
<i class="fas fa-user-tie"></i> |
|
|
</div> |
|
|
<div> |
|
|
<h3 class="text-white font-bold text-xl mb-2">Свобода от заказчиков</h3> |
|
|
<p class="text-gray-300 opacity-85">Ты сам решаешь, что лить, куда и сколько зарабатывать.</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="card bg-[#121212] p-6 rounded-lg glow-box border border-gray-800 hover:border-glow" style="--order: 3;"> |
|
|
<div class="flex items-start space-x-4"> |
|
|
<div class="text-2xl icon-pulse" style="color: #f6fc79;"> |
|
|
<i class="fas fa-laptop"></i> |
|
|
</div> |
|
|
<div> |
|
|
<h3 class="text-white font-bold text-xl mb-2">Удалённая работа</h3> |
|
|
<p class="text-gray-300 opacity-85">Всё, что нужно — ноутбук, интернет и знания. Место — не важно.</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="card bg-[#121212] p-6 rounded-lg glow-box border border-gray-800 hover:border-glow" style="--order: 4;"> |
|
|
<div class="flex items-start space-x-4"> |
|
|
<div class="text-2xl icon-pulse" style="color: #f6fc79;"> |
|
|
<i class="fas fa-chart-line"></i> |
|
|
</div> |
|
|
<div> |
|
|
<h3 class="text-white font-bold text-xl mb-2">Рост ниши</h3> |
|
|
<p class="text-gray-300 opacity-85">Спрос на специалистов с навыками арбитража только растёт — заходи пока рынок не перегрет.</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="mt-16 max-w-3xl mx-auto quote-box p-6 rounded-lg"> |
|
|
<p class="italic text-[#f6fc79] text-center"> |
|
|
«Ежедневно в арбитраже запускаются тысячи новых офферов — но 90% прибыли достаются тем, кто зашёл первым.» |
|
|
</p> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="absolute top-0 left-0 w-full h-full overflow-hidden pointer-events-none"> |
|
|
<div class="absolute top-1/4 right-10 w-40 h-40 rounded-full bg-[#f6fc79] opacity-10 blur-3xl"></div> |
|
|
<div class="absolute bottom-1/3 left-20 w-60 h-60 rounded-full bg-[#f6fc79] opacity-5 blur-3xl"></div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
<script> |
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function() { |
|
|
const container = document.querySelector('.section-why-now'); |
|
|
|
|
|
|
|
|
for (let i = 0; i < 8; i++) { |
|
|
const stream = document.createElement('div'); |
|
|
stream.classList.add('data-stream'); |
|
|
|
|
|
|
|
|
const left = Math.random() * 100; |
|
|
const duration = Math.random() * 3 + 2; |
|
|
const delay = Math.random() * 3; |
|
|
const height = Math.random() * 50 + 50; |
|
|
const opacity = Math.random() * 0.2 + 0.1; |
|
|
|
|
|
stream.style.left = `${left}%`; |
|
|
stream.style.animationDuration = `${duration}s`; |
|
|
stream.style.animationDelay = `${delay}s`; |
|
|
stream.style.height = `${height}px`; |
|
|
stream.style.opacity = opacity; |
|
|
|
|
|
container.appendChild(stream); |
|
|
} |
|
|
|
|
|
|
|
|
const icons = document.querySelectorAll('.card .fa-icon'); |
|
|
icons.forEach(icon => { |
|
|
icon.addEventListener('mouseenter', function() { |
|
|
this.classList.add('animate-pulse'); |
|
|
}); |
|
|
icon.addEventListener('mouseleave', function() { |
|
|
this.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=timoon811/block5tmt" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
|
</html> |