File size: 31,177 Bytes
0f10d0b |
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 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TMT - Traffic Monsters Team</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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#f6fc79',
dark: '#0E0E0E',
light: '#FFFFFF',
gray: '#A1A1A1',
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite',
'neon-glow': 'neonGlow 1.5s ease-in-out infinite alternate',
'neon-flicker': 'neonFlicker 3s linear infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-20px)' },
},
neonGlow: {
'0%': { 'text-shadow': '0 0 5px #fff, 0 0 10px #fff, 0 0 15px #f6fc79, 0 0 20px #f6fc79, 0 0 25px #f6fc79, 0 0 30px #f6fc79, 0 0 35px #f6fc79' },
'100%': { 'text-shadow': '0 0 10px #fff, 0 0 20px #fff, 0 0 30px #f6fc79, 0 0 40px #f6fc79, 0 0 50px #f6fc79, 0 0 60px #f6fc79, 0 0 70px #f6fc79' },
},
neonFlicker: {
'0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100%': { opacity: '1' },
'20%, 21.999%, 63%, 63.999%, 65%, 69.999%': { opacity: '0.5' },
}
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&display=swap');
body {
font-family: 'Roboto', sans-serif;
background-color: #0E0E0E;
color: white;
overflow-x: hidden;
}
.font-orbitron {
font-family: 'Orbitron', sans-serif;
}
.hero-gradient {
background: radial-gradient(circle at center, rgba(246, 252, 121, 0.15) 0%, rgba(14, 14, 14, 0) 50%);
}
.neon-ring {
position: relative;
}
.neon-ring::before {
content: '';
position: absolute;
top: -10px;
left: -10px;
right: -10px;
bottom: -10px;
border: 3px solid #f6fc79;
border-radius: 50%;
animation: pulse-slow 4s infinite;
box-shadow: 0 0 15px #f6fc79;
}
.neon-card {
transition: all 0.3s ease;
border: 1px solid rgba(246, 252, 121, 0.3);
}
.neon-card:hover {
border-color: #f6fc79;
box-shadow: 0 0 20px rgba(246, 252, 121, 0.5);
transform: translateY(-5px);
}
.neon-btn {
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}
.neon-btn:hover {
box-shadow: 0 0 15px #f6fc79;
}
.neon-btn::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(to bottom right, rgba(246, 252, 121, 0.3), transparent);
transform: rotate(45deg);
transition: all 0.3s ease;
}
.neon-btn:hover::before {
left: 100%;
top: 100%;
}
.counter {
font-variant-numeric: tabular-nums;
}
.video-placeholder {
position: relative;
background: linear-gradient(135deg, rgba(14, 14, 14, 0.8), rgba(14, 14, 14, 0.5));
overflow: hidden;
}
.video-placeholder::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, transparent 48%, #f6fc79 49%, #f6fc79 51%, transparent 52%),
linear-gradient(-45deg, transparent 48%, #f6fc79 49%, #f6fc79 51%, transparent 52%);
background-size: 20px 20px;
opacity: 0.1;
}
.play-btn {
transition: all 0.3s ease;
}
.play-btn:hover {
transform: scale(1.1);
box-shadow: 0 0 30px rgba(246, 252, 121, 0.7);
}
.form-input {
background-color: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(246, 252, 121, 0.3);
transition: all 0.3s ease;
}
.form-input:focus {
outline: none;
border-color: #f6fc79;
box-shadow: 0 0 10px rgba(246, 252, 121, 0.5);
background-color: rgba(255, 255, 255, 0.2);
}
.case-study {
transition: all 0.3s ease;
background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
}
.case-study:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(246, 252, 121, 0.3);
}
.case-study-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(14, 14, 14, 0.8);
opacity: 0;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
justify-content: center;
padding: 1.5rem;
}
.case-study:hover .case-study-overlay {
opacity: 1;
}
.parallax {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
@keyframes neonGlow {
0% { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #f6fc79, 0 0 20px #f6fc79, 0 0 25px #f6fc79, 0 0 30px #f6fc79, 0 0 35px #f6fc79; }
100% { text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #f6fc79, 0 0 40px #f6fc79, 0 0 50px #f6fc79, 0 0 60px #f6fc79, 0 0 70px #f6fc79; }
}
@keyframes pulse-slow {
0%, 100% { opacity: 0.7; }
50% { opacity: 1; }
}
@keyframes neonFlicker {
0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% { opacity: 1; }
20%, 21.999%, 63%, 63.999%, 65%, 69.999% { opacity: 0.5; }
}
.glow-text {
animation: neonGlow 1.5s ease-in-out infinite alternate;
}
.flicker-text {
animation: neonFlicker 3s linear infinite;
}
.data-tornado {
position: absolute;
width: 100%;
height: 100%;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="none" stroke="%23f6fc79" stroke-width="0.5" d="M20,20 Q30,10 40,20 T60,20 T80,20" opacity="0.3"/></svg>') repeat;
background-size: 200px 200px;
animation: tornadoMove 30s linear infinite;
}
@keyframes tornadoMove {
0% { background-position: 0 0; }
100% { background-position: 100% 100%; }
}
</style>
</head>
<body class="antialiased">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-black bg-opacity-90 backdrop-blur-sm border-b border-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16 items-center">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<div class="neon-ring rounded-full w-10 h-10 flex items-center justify-center">
<span class="text-primary font-bold text-xl font-orbitron">TMT</span>
</div>
<span class="ml-3 text-primary font-orbitron text-xl">TRAFFIC MONSTERS</span>
</div>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-center space-x-4">
<a href="#home" class="text-white hover:text-primary px-3 py-2 rounded-md text-sm font-medium transition duration-300">Home</a>
<a href="#about" class="text-gray-300 hover:text-primary px-3 py-2 rounded-md text-sm font-medium transition duration-300">About</a>
<a href="#results" class="text-gray-300 hover:text-primary px-3 py-2 rounded-md text-sm font-medium transition duration-300">Results</a>
<a href="#benefits" class="text-gray-300 hover:text-primary px-3 py-2 rounded-md text-sm font-medium transition duration-300">Benefits</a>
<a href="#join" class="text-gray-300 hover:text-primary px-3 py-2 rounded-md text-sm font-medium transition duration-300">Join</a>
</div>
</div>
<div class="md:hidden">
<button class="text-gray-300 hover:text-white focus:outline-none">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="relative h-screen flex items-center justify-center overflow-hidden hero-gradient">
<div class="data-tornado"></div>
<div class="absolute inset-0 bg-gradient-to-b from-transparent to-black opacity-70"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10 text-center">
<div class="mb-8">
<div class="inline-block neon-ring rounded-full w-32 h-32 flex items-center justify-center mb-8">
<span class="text-primary font-bold text-4xl font-orbitron">TMT</span>
</div>
</div>
<h1 class="text-5xl md:text-7xl font-bold mb-6 font-orbitron glow-text">
<span class="text-transparent bg-clip-text bg-gradient-to-r from-primary to-white">TRAFFIC MASTERS</span>
<span class="block text-transparent bg-clip-text bg-gradient-to-r from-white to-primary">OF THE DIGITAL JUNGLE</span>
</h1>
<p class="text-xl md:text-2xl text-gray-300 mb-10 max-w-3xl mx-auto flicker-text">
TMT — команда топовых арбитражников. Мы не ливаем трафик, мы его приручаем.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#join" class="neon-btn bg-primary text-black font-bold py-3 px-8 rounded-full text-lg font-orbitron transition duration-300 transform hover:scale-105">
JOIN THE TEAM
</a>
<a href="#results" class="neon-btn border-2 border-primary text-white font-bold py-3 px-8 rounded-full text-lg font-orbitron transition duration-300 transform hover:scale-105">
SEE OUR RESULTS
</a>
</div>
</div>
<div class="absolute bottom-10 left-0 right-0 flex justify-center">
<a href="#about" class="text-gray-400 hover:text-primary animate-bounce">
<svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3"></path>
</svg>
</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 parallax" style="background-image: url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100\" height=\"100\" viewBox=\"0 0 100 100\"><rect width=\"10\" height=\"10\" x=\"0\" y=\"0\" fill=\"%23f6fc79\" opacity=\"0.1\"/></svg>')">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4 font-orbitron glow-text">WHO WE ARE</h2>
<div class="w-20 h-1 bg-primary mx-auto mb-6"></div>
<p class="text-xl text-gray-300 max-w-4xl mx-auto">
Мы — Traffic Monsters Team. 70+ арбитражников, $5M+ оборота, 15+ источников трафика, десятки топовых ПП. Мы не просто льём — мы строим экосистему вокруг арбитража.
</p>
</div>
<!-- Stats Section -->
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mt-16">
<div class="neon-card bg-black bg-opacity-50 p-8 rounded-xl text-center">
<div class="text-5xl font-bold text-primary font-orbitron mb-2 counter" data-target="70">0</div>
<div class="text-gray-300 uppercase text-sm tracking-wider">Человек в команде</div>
</div>
<div class="neon-card bg-black bg-opacity-50 p-8 rounded-xl text-center">
<div class="text-5xl font-bold text-primary font-orbitron mb-2 counter" data-target="5">0</div>
<div class="text-gray-300 uppercase text-sm tracking-wider">Млн $ валовый доход</div>
</div>
<div class="neon-card bg-black bg-opacity-50 p-8 rounded-xl text-center">
<div class="text-5xl font-bold text-primary font-orbitron mb-2 counter" data-target="15">0</div>
<div class="text-gray-300 uppercase text-sm tracking-wider">Источников трафика</div>
</div>
<div class="neon-card bg-black bg-opacity-50 p-8 rounded-xl text-center">
<div class="text-5xl font-bold text-primary font-orbitron mb-2 counter" data-target="90">0</div>
<div class="text-gray-300 uppercase text-sm tracking-wider">% в ROI за 2 недели</div>
</div>
</div>
</div>
</section>
<!-- Benefits Section -->
<section id="benefits" class="py-20 bg-gradient-to-b from-black to-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4 font-orbitron glow-text">WHAT WE OFFER</h2>
<div class="w-20 h-1 bg-primary mx-auto mb-6"></div>
<p class="text-xl text-gray-300 max-w-4xl mx-auto">
Мы даем новичкам все необходимое для быстрого старта и выхода на прибыль
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="neon-card p-8 rounded-xl bg-gray-900 hover:bg-black transition duration-300 group">
<div class="w-16 h-16 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-6 group-hover:bg-opacity-20 transition duration-300">
<i class="fas fa-graduation-cap text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-white">Обучение от профи</h3>
<p class="text-gray-300">Пошаговое обучение от практиков с доходом $10k+/мес</p>
</div>
<div class="neon-card p-8 rounded-xl bg-gray-900 hover:bg-black transition duration-300 group">
<div class="w-16 h-16 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-6 group-hover:bg-opacity-20 transition duration-300">
<i class="fas fa-link text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-white">Связки + офферы</h3>
<p class="text-gray-300">Проверенные связки и горячие офферы с высоким EPC</p>
</div>
<div class="neon-card p-8 rounded-xl bg-gray-900 hover:bg-black transition duration-300 group">
<div class="w-16 h-16 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-6 group-hover:bg-opacity-20 transition duration-300">
<i class="fas fa-briefcase text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-white">Работа через кейсы</h3>
<p class="text-gray-300">Разбор реальных кейсов и работа над ошибками</p>
</div>
<div class="neon-card p-8 rounded-xl bg-gray-900 hover:bg-black transition duration-300 group">
<div class="w-16 h-16 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-6 group-hover:bg-opacity-20 transition duration-300">
<i class="fas fa-user-tie text-primary text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-white">Индивидуальное менторство</h3>
<p class="text-gray-300">Персональный наставник на всех этапах работы</p>
</div>
</div>
</div>
</section>
<!-- Case Studies Section -->
<section id="results" class="py-20 bg-black">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4 font-orbitron glow-text">OUR CASE STUDIES</h2>
<div class="w-20 h-1 bg-primary mx-auto mb-6"></div>
<p class="text-xl text-gray-300 max-w-4xl mx-auto">
Реальные результаты наших арбитражных кампаний
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Case Study 1 -->
<div class="case-study rounded-xl overflow-hidden relative">
<img src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'><rect width='400' height='300' fill='%23101010'/><text x='200' y='150' font-family='Arial' font-size='20' fill='%23f6fc79' text-anchor='middle'>CASE STUDY PREVIEW</text></svg>" alt="Case Study" class="w-full h-full object-cover">
<div class="case-study-overlay">
<h3 class="text-xl font-bold mb-2 text-primary font-orbitron">Nutra + TikTok</h3>
<p class="text-gray-300 mb-4">Доход: <span class="text-primary">$24,500</span></p>
<p class="text-gray-300 mb-1">CTR: <span class="text-primary">3.8%</span></p>
<p class="text-gray-300 mb-1">CR: <span class="text-primary">1.2%</span></p>
<p class="text-gray-300">ROI: <span class="text-primary">287%</span></p>
</div>
</div>
<!-- Case Study 2 -->
<div class="case-study rounded-xl overflow-hidden relative">
<img src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'><rect width='400' height='300' fill='%23101010'/><text x='200' y='150' font-family='Arial' font-size='20' fill='%23f6fc79' text-anchor='middle'>CASE STUDY PREVIEW</text></svg>" alt="Case Study" class="w-full h-full object-cover">
<div class="case-study-overlay">
<h3 class="text-xl font-bold mb-2 text-primary font-orbitron">Gambling + FB Ads</h3>
<p class="text-gray-300 mb-4">Доход: <span class="text-primary">$18,300</span></p>
<p class="text-gray-300 mb-1">CTR: <span class="text-primary">2.1%</span></p>
<p class="text-gray-300 mb-1">CR: <span class="text-primary">0.8%</span></p>
<p class="text-gray-300">ROI: <span class="text-primary">195%</span></p>
</div>
</div>
<!-- Case Study 3 -->
<div class="case-study rounded-xl overflow-hidden relative">
<img src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'><rect width='400' height='300' fill='%23101010'/><text x='200' y='150' font-family='Arial' font-size='20' fill='%23f6fc79' text-anchor='middle'>CASE STUDY PREVIEW</text></svg>" alt="Case Study" class="w-full h-full object-cover">
<div class="case-study-overlay">
<h3 class="text-xl font-bold mb-2 text-primary font-orbitron">E-commerce + Google</h3>
<p class="text-gray-300 mb-4">Доход: <span class="text-primary">$32,700</span></p>
<p class="text-gray-300 mb-1">CTR: <span class="text-primary">4.5%</span></p>
<p class="text-gray-300 mb-1">CR: <span class="text-primary">1.5%</span></p>
<p class="text-gray-300">ROI: <span class="text-primary">320%</span></p>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#join" class="inline-block neon-btn bg-primary text-black font-bold py-3 px-8 rounded-full text-lg font-orbitron transition duration-300 transform hover:scale-105">
GET ACCESS TO MORE CASES
</a>
</div>
</div>
</section>
<!-- Video Section -->
<section class="py-20 bg-gradient-to-b from-gray-900 to-black">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4 font-orbitron glow-text">TMT IN ACTION</h2>
<div class="w-20 h-1 bg-primary mx-auto mb-6"></div>
<p class="text-xl text-gray-300 max-w-4xl mx-auto">
Посмотрите, как работает наша команда изнутри
</p>
</div>
<div class="video-placeholder rounded-xl overflow-hidden relative h-96 flex items-center justify-center">
<button class="play-btn w-20 h-20 bg-primary rounded-full flex items-center justify-center">
<i class="fas fa-play text-black text-2xl"></i>
</button>
</div>
</div>
</section>
<!-- CTA Section -->
<section id="join" class="py-20 bg-black">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4 font-orbitron glow-text">ГОТОВ РАСТИ ВМЕСТЕ С ЛУЧШИМИ?</h2>
<div class="w-20 h-1 bg-primary mx-auto mb-6"></div>
<p class="text-xl text-gray-300 max-w-4xl mx-auto">
Оставь заявку — и начни путь в арбитраж с монстрами трафика.
</p>
</div>
<div class="max-w-2xl mx-auto bg-gray-900 rounded-xl p-8 neon-card">
<form class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-300 mb-1">Ваше имя</label>
<input type="text" id="name" class="form-input w-full px-4 py-3 rounded-lg focus:ring-2 focus:ring-primary">
</div>
<div>
<label for="telegram" class="block text-sm font-medium text-gray-300 mb-1">Ваш Telegram</label>
<input type="text" id="telegram" class="form-input w-full px-4 py-3 rounded-lg focus:ring-2 focus:ring-primary">
</div>
<div>
<label for="experience" class="block text-sm font-medium text-gray-300 mb-1">Опыт в арбитраже</label>
<select id="experience" class="form-input w-full px-4 py-3 rounded-lg focus:ring-2 focus:ring-primary">
<option value="none">Новичок (нет опыта)</option>
<option value="beginner">Начинающий (до 3 месяцев)</option>
<option value="intermediate">Средний уровень (3-12 месяцев)</option>
<option value="advanced">Опытный (более года)</option>
</select>
</div>
<div>
<button type="submit" class="w-full neon-btn bg-primary text-black font-bold py-3 px-4 rounded-lg text-lg font-orbitron transition duration-300 hover:bg-opacity-90">
ОТПРАВИТЬ ЗАЯВКУ
</button>
</div>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 py-12 border-t border-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-6 md:mb-0">
<div class="neon-ring rounded-full w-10 h-10 flex items-center justify-center">
<span class="text-primary font-bold text-xl font-orbitron">TMT</span>
</div>
<span class="ml-3 text-primary font-orbitron text-xl">TRAFFIC MONSTERS</span>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-primary">
<i class="fab fa-telegram text-2xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-primary">
<i class="fab fa-instagram text-2xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-primary">
<i class="fab fa-youtube text-2xl"></i>
</a>
</div>
</div>
<div class="mt-8 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 Traffic Monsters Team. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-primary text-sm">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-primary text-sm">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-primary text-sm">Contact Us</a>
</div>
</div>
</div>
</footer>
<script>
// Counter animation
const counters = document.querySelectorAll('.counter');
const speed = 200;
counters.forEach(counter => {
const target = +counter.getAttribute('data-target');
const count = +counter.innerText;
const increment = target / speed;
if(count < target) {
counter.innerText = Math.ceil(count + increment);
setTimeout(updateCounter, 1);
} else {
counter.innerText = target + '+';
}
function updateCounter() {
const count = +counter.innerText;
const increment = target / speed;
if(count < target) {
counter.innerText = Math.ceil(count + increment);
setTimeout(updateCounter, 1);
} else {
counter.innerText = target + '+';
}
}
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Play button click handler
document.querySelector('.play-btn').addEventListener('click', function() {
alert('Video playback would start here in a real implementation');
});
// Form submission handler
const form = document.querySelector('form');
if(form) {
form.addEventListener('submit', function(e) {
e.preventDefault();
alert('Form submitted! In a real implementation, this would send data to a server.');
});
}
</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/tmt21" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |