File size: 13,878 Bytes
e5049dc |
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 |
<!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);
}
/* Custom styles for this block */
.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">
<!-- Left Column - Text Content -->
<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>
<!-- Right Column - Cards -->
<div class="lg:w-1/2 relative">
<!-- Data stream animation elements -->
<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">
<!-- Card 1 -->
<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>
<!-- Card 2 -->
<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>
<!-- Card 3 -->
<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>
<!-- Card 4 -->
<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>
<!-- Quote at the bottom -->
<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>
<!-- Background elements -->
<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>
// Create dynamic data streams
document.addEventListener('DOMContentLoaded', function() {
const container = document.querySelector('.section-why-now');
// Create multiple data streams
for (let i = 0; i < 8; i++) {
const stream = document.createElement('div');
stream.classList.add('data-stream');
// Random properties
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);
}
// Add pulsing effect to card icons on hover
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> |