timoon811 commited on
Commit
988ed2b
·
verified ·
1 Parent(s): 77f337d

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +179 -685
  2. prompts.txt +2 -1
index.html CHANGED
@@ -3,11 +3,9 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>TMT — Traffic Monsters Team</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
- <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap">
9
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap">
10
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
11
  <style>
12
  @font-face {
13
  font-family: 'Monument Extended';
@@ -17,21 +15,16 @@
17
  }
18
 
19
  body {
20
- font-family: 'Inter', sans-serif;
21
  background-color: #000;
22
  color: #00FF00;
23
  overflow-x: hidden;
24
- scroll-behavior: smooth;
25
  }
26
 
27
  .monument {
28
  font-family: 'Monument Extended', sans-serif;
29
  }
30
 
31
- .mono {
32
- font-family: 'JetBrains Mono', monospace;
33
- }
34
-
35
  .matrix-bg {
36
  position: fixed;
37
  top: 0;
@@ -39,7 +32,7 @@
39
  width: 100%;
40
  height: 100%;
41
  z-index: -1;
42
- opacity: 0.3;
43
  background: #000;
44
  overflow: hidden;
45
  }
@@ -71,6 +64,45 @@
71
  }
72
  }
73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  .glitch {
75
  position: relative;
76
  }
@@ -126,709 +158,171 @@
126
  100% { clip: rect(68px, 9999px, 109px, 0); }
127
  }
128
 
129
- .crt::after {
130
- content: " ";
131
- display: block;
132
- position: absolute;
133
- top: 0;
134
- left: 0;
135
- bottom: 0;
136
- right: 0;
137
- background: rgba(0, 255, 0, 0.03);
138
- pointer-events: none;
139
- z-index: 2;
140
- }
141
-
142
- .crt::before {
143
- content: " ";
144
- display: block;
145
- position: absolute;
146
- top: 0;
147
- left: 0;
148
- bottom: 0;
149
- right: 0;
150
- background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
151
- z-index: 2;
152
- background-size: 100% 2px, 3px 100%;
153
- pointer-events: none;
154
- }
155
-
156
- .typing {
157
- border-right: 2px solid #00FF00;
158
- animation: blink 0.75s step-end infinite;
159
  }
160
 
161
- @keyframes blink {
162
- from, to { border-color: transparent; }
163
- 50% { border-color: #00FF00; }
164
- }
165
-
166
- .pill-btn {
167
- transition: all 0.3s ease;
168
- position: relative;
169
- overflow: hidden;
170
- }
171
-
172
- .pill-btn::before {
173
- content: '';
174
- position: absolute;
175
- top: 0;
176
- left: -100%;
177
- width: 100%;
178
- height: 100%;
179
- background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.4), transparent);
180
- transition: all 0.5s ease;
181
  }
182
 
183
- .pill-btn:hover::before {
184
- left: 100%;
185
  }
186
 
187
- .red-pill {
188
- background: linear-gradient(135deg, rgba(255,0,0,0.2) 0%, rgba(139,0,0,0.5) 100%);
189
- border: 1px solid rgba(255, 0, 0, 0.5);
190
- box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
191
- position: relative;
192
- }
193
-
194
- .red-pill:hover {
195
- animation: vibrate 0.3s linear infinite;
196
- box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
197
- }
198
-
199
- .blue-pill {
200
- background: linear-gradient(135deg, rgba(0,0,255,0.2) 0%, rgba(0,0,139,0.5) 100%);
201
- border: 1px solid rgba(0, 0, 255, 0.5);
202
- box-shadow: 0 0 15px rgba(0, 0, 255, 0.3);
203
- position: relative;
204
- }
205
-
206
- .blue-pill:hover {
207
- opacity: 0.5;
208
- box-shadow: 0 0 25px rgba(0, 0, 255, 0.5);
209
- }
210
-
211
- @keyframes vibrate {
212
- 0% { transform: translateX(0); }
213
- 25% { transform: translateX(-2px); }
214
- 50% { transform: translateX(0); }
215
- 75% { transform: translateX(2px); }
216
- 100% { transform: translateX(0); }
217
- }
218
-
219
- .case-card {
220
- transition: all 0.3s ease;
221
- box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
222
- }
223
-
224
- .case-card:hover {
225
- transform: translateY(-5px);
226
- box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
227
- }
228
-
229
- .flicker {
230
- animation: flicker 5s infinite alternate;
231
- }
232
-
233
- @keyframes flicker {
234
- 0%, 18%, 22%, 25%, 53%, 57%, 100% {
235
- opacity: 1;
236
- }
237
- 20%, 24%, 55% {
238
- opacity: 0.5;
239
- }
240
- }
241
-
242
- .scroll-top {
243
- animation: pulse 2s infinite;
244
- }
245
-
246
- @keyframes pulse {
247
- 0% {
248
- box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
249
- }
250
- 70% {
251
- box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
252
- }
253
- 100% {
254
- box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
255
- }
256
- }
257
-
258
- .team-member {
259
- position: relative;
260
- overflow: hidden;
261
- transition: all 0.3s ease;
262
- }
263
-
264
- .team-member::before {
265
- content: '';
266
- position: absolute;
267
- top: 0;
268
- left: 0;
269
- width: 100%;
270
- height: 100%;
271
- background: linear-gradient(135deg, rgba(0,255,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
272
- z-index: 1;
273
- }
274
-
275
- .team-member:hover {
276
- transform: translateY(-5px);
277
- box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
278
- }
279
-
280
- .team-member:hover::before {
281
- background: linear-gradient(135deg, rgba(0,255,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
282
- }
283
-
284
- .team-member img {
285
- transition: all 0.5s ease;
286
- }
287
-
288
- .team-member:hover img {
289
- transform: scale(1.05);
290
- }
291
-
292
- .team-info {
293
- position: relative;
294
- z-index: 2;
295
- }
296
-
297
- .pill-container {
298
- perspective: 1000px;
299
- }
300
-
301
- .pill {
302
- transform-style: preserve-3d;
303
- transition: all 0.5s ease;
304
- }
305
-
306
- .red-pill-3d {
307
- transform: rotateY(0deg);
308
- }
309
-
310
- .blue-pill-3d {
311
- transform: rotateY(0deg);
312
- }
313
-
314
- .red-pill-3d:hover {
315
- transform: rotateY(20deg);
316
- }
317
-
318
- .blue-pill-3d:hover {
319
- transform: rotateY(-20deg);
320
  }
321
-
322
  </style>
323
  </head>
324
- <body class="crt">
325
  <!-- Matrix Code Background -->
326
  <div class="matrix-bg" id="matrixBg"></div>
327
 
328
- <!-- Hero Section -->
329
- <section class="min-h-screen flex flex-col justify-center items-center relative px-4">
330
- <div class="text-center max-w-4xl mx-auto">
331
- <h1 class="monument text-4xl md:text-6xl lg:text-7xl mb-6 glitch" data-text="TMT — TRAFFIC MONSTERS TEAM">
332
- <span id="titleText"></span>
333
- </h1>
334
- <p class="mono text-xl md:text-2xl mb-10">
335
- <span id="subtitleText" class="typing"></span>
336
- </p>
337
- <div class="flex flex-col sm:flex-row justify-center gap-4">
338
- <a href="#" class="pill-btn border border-green-500 text-green-500 px-8 py-3 rounded-sm hover:bg-green-500 hover:text-black transition-all duration-300 flex items-center justify-center gap-2">
339
- <i class="fas fa-play"></i> Enter the Network
340
- </a>
341
- <a href="#cases" class="pill-btn border border-green-500 text-green-500 px-8 py-3 rounded-sm hover:bg-green-500 hover:text-black transition-all duration-300 flex items-center justify-center gap-2">
342
- <i class="fas fa-film"></i> Watch Completed Missions
343
- </a>
344
- </div>
345
- </div>
346
- <div class="absolute bottom-10 left-0 right-0 flex justify-center">
347
- <a href="#origin" class="animate-bounce">
348
- <i class="fas fa-chevron-down text-green-500 text-2xl"></i>
349
- </a>
350
- </div>
351
- </section>
352
-
353
- <!-- The Origin Code -->
354
- <section id="origin" class="py-20 px-4 max-w-4xl mx-auto">
355
- <h2 class="monument text-3xl md:text-4xl mb-4 text-center flicker">THE ORIGIN CODE</h2>
356
- <p class="mono text-green-500 text-center mb-10">"Before control... there was chaos."</p>
357
- <div class="border border-green-500 p-6 md:p-8 relative">
358
- <div class="absolute top-0 left-0 w-4 h-4 border-t border-l border-green-500"></div>
359
- <div class="absolute top-0 right-0 w-4 h-4 border-t border-r border-green-500"></div>
360
- <div class="absolute bottom-0 left-0 w-4 h-4 border-b border-l border-green-500"></div>
361
- <div class="absolute bottom-0 right-0 w-4 h-4 border-b border-r border-green-500"></div>
362
- <p class="mono text-lg leading-relaxed">
363
- Once, the digital realms were wild — endless, uncontrolled, unpredictable. In 2022, a group of architects emerged. They did not seek to follow the flow — they sought to command it. Thus, the Traffic Monsters Team was born. Forged in the heart of the Data Wars, molded by broken funnels and lost offers, they built their own Matrix — a system where traffic obeys and strategies evolve. For three years, TMT has not survived the system. They have rewritten its rules.
364
- </p>
365
- </div>
366
- </section>
367
-
368
- <!-- The Team -->
369
- <section class="py-20 px-4 bg-black bg-opacity-50">
370
- <div class="max-w-6xl mx-auto">
371
- <h2 class="monument text-3xl md:text-4xl mb-16 text-center flicker">THE OPERATORS</h2>
372
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
373
- <!-- Team Member 1 -->
374
- <div class="team-member border border-green-500 p-1 relative">
375
- <img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Operator 1" class="w-full h-64 object-cover">
376
- <div class="team-info p-4">
377
- <h3 class="monument text-xl mb-1">Agent Smith</h3>
378
- <p class="mono text-green-500 text-sm mb-2">Traffic Architect</p>
379
- <p class="mono text-gray-300 text-sm">Specializes in funnel optimization and behavioral pattern analysis.</p>
380
- </div>
381
- <div class="absolute top-0 left-0 w-4 h-4 border-t border-l border-green-500"></div>
382
- <div class="absolute top-0 right-0 w-4 h-4 border-t border-r border-green-500"></div>
383
- <div class="absolute bottom-0 left-0 w-4 h-4 border-b border-l border-green-500"></div>
384
- <div class="absolute bottom-0 right-0 w-4 h-4 border-b border-r border-green-500"></div>
385
- </div>
386
-
387
- <!-- Team Member 2 -->
388
- <div class="team-member border border-green-500 p-1 relative">
389
- <img src="https://images.unsplash.com/photo-1531427186611-ecfd6d936c79?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Operator 2" class="w-full h-64 object-cover">
390
- <div class="team-info p-4">
391
- <h3 class="monument text-xl mb-1">Agent Jones</h3>
392
- <p class="mono text-green-500 text-sm mb-2">Creative Director</p>
393
- <p class="mono text-gray-300 text-sm">Masters UGC production and deepfake content manufacturing.</p>
394
- </div>
395
- <div class="absolute top-0 left-0 w-4 h-4 border-t border-l border-green-500"></div>
396
- <div class="absolute top-0 right-0 w-4 h-4 border-t border-r border-green-500"></div>
397
- <div class="absolute bottom-0 left-0 w-4 h-4 border-b border-l border-green-500"></div>
398
- <div class="absolute bottom-0 right-0 w-4 h-4 border-b border-r border-green-500"></div>
399
- </div>
400
-
401
- <!-- Team Member 3 -->
402
- <div class="team-member border border-green-500 p-1 relative">
403
- <img src="https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Operator 3" class="w-full h-64 object-cover">
404
- <div class="team-info p-4">
405
- <h3 class="monument text-xl mb-1">Agent Brown</h3>
406
- <p class="mono text-green-500 text-sm mb-2">Data Scientist</p>
407
- <p class="mono text-gray-300 text-sm">Develops predictive models and AI-driven optimization algorithms.</p>
408
- </div>
409
- <div class="absolute top-0 left-0 w-4 h-4 border-t border-l border-green-500"></div>
410
- <div class="absolute top-0 right-0 w-4 h-4 border-t border-r border-green-500"></div>
411
- <div class="absolute bottom-0 left-0 w-4 h-4 border-b border-l border-green-500"></div>
412
- <div class="absolute bottom-0 right-0 w-4 h-4 border-b border-r border-green-500"></div>
413
- </div>
414
-
415
- <!-- Team Member 4 -->
416
- <div class="team-member border border-green-500 p-1 relative">
417
- <img src="https://images.unsplash.com/photo-1580489944761-15a19d654956?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=761&q=80" alt="Operator 4" class="w-full h-64 object-cover">
418
- <div class="team-info p-4">
419
- <h3 class="monument text-xl mb-1">Agent Johnson</h3>
420
- <p class="mono text-green-500 text-sm mb-2">Media Buyer</p>
421
- <p class="mono text-gray-300 text-sm">Controls 15+ traffic sources with precision targeting and arbitrage.</p>
422
- </div>
423
- <div class="absolute top-0 left-0 w-4 h-4 border-t border-l border-green-500"></div>
424
- <div class="absolute top-0 right-0 w-4 h-4 border-t border-r border-green-500"></div>
425
- <div class="absolute bottom-0 left-0 w-4 h-4 border-b border-l border-green-500"></div>
426
- <div class="absolute bottom-0 right-0 w-4 h-4 border-b border-r border-green-500"></div>
427
- </div>
428
- </div>
429
- </div>
430
- </section>
431
-
432
- <!-- Capabilities Block -->
433
- <section class="py-20 px-4 max-w-6xl mx-auto">
434
- <h2 class="monument text-3xl md:text-4xl mb-16 text-center flicker">MASTERING THE SYSTEMS</h2>
435
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
436
- <!-- Offer Mapping -->
437
- <div class="border border-green-500 p-6 hover:bg-black hover:bg-opacity-30 transition-all duration-300">
438
- <div class="flex items-center gap-4 mb-4">
439
- <div class="text-green-500 text-2xl">
440
- <i class="fas fa-map-marked-alt"></i>
441
- </div>
442
- <h3 class="monument text-xl">Offer Mapping</h3>
443
- </div>
444
- <p class="mono text-gray-300">Precision targeting of high-converting offers across global markets with real-time optimization.</p>
445
- </div>
446
-
447
- <!-- Multi-channel Traffic Execution -->
448
- <div class="border border-green-500 p-6 hover:bg-black hover:bg-opacity-30 transition-all duration-300">
449
- <div class="flex items-center gap-4 mb-4">
450
- <div class="text-green-500 text-2xl">
451
- <i class="fas fa-project-diagram"></i>
452
- </div>
453
- <h3 class="monument text-xl">Multi-channel Traffic Execution</h3>
454
- </div>
455
- <p class="mono text-gray-300">Omnichannel distribution across paid, organic, and arbitrage networks for maximum reach.</p>
456
- </div>
457
-
458
- <!-- Keitaro Tracking & API Control -->
459
- <div class="border border-green-500 p-6 hover:bg-black hover:bg-opacity-30 transition-all duration-300">
460
- <div class="flex items-center gap-4 mb-4">
461
- <div class="text-green-500 text-2xl">
462
- <i class="fas fa-chart-line"></i>
463
- </div>
464
- <h3 class="monument text-xl">Keitaro Tracking & API Control</h3>
465
- </div>
466
- <p class="mono text-gray-300">Advanced tracking infrastructure with full API integration for real-time data sovereignty.</p>
467
- </div>
468
-
469
- <!-- Creative Manufacturing -->
470
- <div class="border border-green-500 p-6 hover:bg-black hover:bg-opacity-30 transition-all duration-300">
471
- <div class="flex items-center gap-4 mb-4">
472
- <div class="text-green-500 text-2xl">
473
- <i class="fas fa-vr-cardboard"></i>
474
- </div>
475
- <h3 class="monument text-xl">Creative Manufacturing</h3>
476
- </div>
477
- <p class="mono text-gray-300">UGC, deepfake, and hyper-personalized content production at industrial scale.</p>
478
- </div>
479
-
480
- <!-- Funnel and App Monetization -->
481
- <div class="border border-green-500 p-6 hover:bg-black hover:bg-opacity-30 transition-all duration-300">
482
- <div class="flex items-center gap-4 mb-4">
483
- <div class="text-green-500 text-2xl">
484
- <i class="fas fa-funnel-dollar"></i>
485
- </div>
486
- <h3 class="monument text-xl">Funnel and App Monetization</h3>
487
- </div>
488
- <p class="mono text-gray-300">Full-stack monetization architectures from top-of-funnel to retention optimization.</p>
489
- </div>
490
-
491
- <!-- Additional capability -->
492
- <div class="border border-green-500 p-6 hover:bg-black hover:bg-opacity-30 transition-all duration-300">
493
- <div class="flex items-center gap-4 mb-4">
494
- <div class="text-green-500 text-2xl">
495
- <i class="fas fa-brain"></i>
496
- </div>
497
- <h3 class="monument text-xl">Predictive Analytics</h3>
498
- </div>
499
- <p class="mono text-gray-300">AI-driven forecasting models that anticipate market shifts before they occur.</p>
500
- </div>
501
- </div>
502
- </section>
503
-
504
- <!-- Metrics Block -->
505
- <section class="py-20 px-4 bg-black bg-opacity-50">
506
- <div class="max-w-6xl mx-auto">
507
- <h2 class="monument text-3xl md:text-4xl mb-16 text-center flicker">DATA SOVEREIGNTY</h2>
508
- <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8 text-center">
509
- <div class="border border-green-500 p-6">
510
- <div class="monument text-4xl mb-2" id="trafficCounter">0</div>
511
- <p class="mono uppercase text-sm">Traffic Processed</p>
512
- </div>
513
- <div class="border border-green-500 p-6">
514
- <div class="monument text-4xl mb-2" id="operatorsCounter">0</div>
515
- <p class="mono uppercase text-sm">Media Operators</p>
516
  </div>
517
- <div class="border border-green-500 p-6">
518
- <div class="monument text-4xl mb-2" id="offersCounter">0</div>
519
- <p class="mono uppercase text-sm">Offers Deployed</p>
520
- </div>
521
- <div class="border border-green-500 p-6">
522
- <div class="monument text-4xl mb-2" id="sourcesCounter">0</div>
523
- <p class="mono uppercase text-sm">Traffic Sources Controlled</p>
524
- </div>
525
- </div>
526
- </div>
527
- </section>
528
-
529
- <!-- Case Studies -->
530
- <section id="cases" class="py-20 px-4 max-w-6xl mx-auto">
531
- <h2 class="monument text-3xl md:text-4xl mb-16 text-center flicker">COMPLETED MISSIONS</h2>
532
- <div class="relative">
533
- <div class="overflow-x-auto pb-8">
534
- <div class="flex space-x-6 w-max">
535
- <!-- Case 1 -->
536
- <div class="case-card w-64 flex-shrink-0 border border-green-500 p-6 bg-black bg-opacity-50">
537
- <div class="mb-4">
538
- <span class="mono text-xs text-green-500">CLASSIFIED</span>
539
- <h3 class="monument text-xl mt-1">Operation Green Gambit</h3>
540
- </div>
541
- <div class="mono text-sm space-y-2">
542
- <p><span class="text-gray-400">Source:</span> Paid Social</p>
543
- <p><span class="text-gray-400">Vertical:</span> Gambling</p>
544
- <p><span class="text-gray-400">CTR:</span> 4.8%</p>
545
- <p><span class="text-gray-400">ROI:</span> 320%</p>
546
- <p><span class="text-gray-400">CR:</span> 9.2%</p>
547
- </div>
548
- </div>
549
-
550
- <!-- Case 2 -->
551
- <div class="case-card w-64 flex-shrink-0 border border-green-500 p-6 bg-black bg-opacity-50">
552
- <div class="mb-4">
553
- <span class="mono text-xs text-green-500">CLASSIFIED</span>
554
- <h3 class="monument text-xl mt-1">Project Nutra Nexus</h3>
555
- </div>
556
- <div class="mono text-sm space-y-2">
557
- <p><span class="text-gray-400">Source:</span> Native Ads</p>
558
- <p><span class="text-gray-400">Vertical:</span> Nutra</p>
559
- <p><span class="text-gray-400">CTR:</span> 3.5%</p>
560
- <p><span class="text-gray-400">ROI:</span> 280%</p>
561
- <p><span class="text-gray-400">CR:</span> 7.8%</p>
562
- </div>
563
- </div>
564
-
565
- <!-- Case 3 -->
566
- <div class="case-card w-64 flex-shrink-0 border border-green-500 p-6 bg-black bg-opacity-50">
567
- <div class="mb-4">
568
- <span class="mono text-xs text-green-500">CLASSIFIED</span>
569
- <h3 class="monument text-xl mt-1">Black Finance Protocol</h3>
570
- </div>
571
- <div class="mono text-sm space-y-2">
572
- <p><span class="text-gray-400">Source:</span> Push Notifications</p>
573
- <p><span class="text-gray-400">Vertical:</span> Finance</p>
574
- <p><span class="text-gray-400">CTR:</span> 5.2%</p>
575
- <p><span class="text-gray-400">ROI:</span> 410%</p>
576
- <p><span class="text-gray-400">CR:</span> 11.3%</p>
577
- </div>
578
- </div>
579
-
580
- <!-- Case 4 -->
581
- <div class="case-card w-64 flex-shrink-0 border border-green-500 p-6 bg-black bg-opacity-50">
582
- <div class="mb-4">
583
- <span class="mono text-xs text-green-500">CLASSIFIED</span>
584
- <h3 class="monument text-xl mt-1">SaaS Dominance</h3>
585
- </div>
586
- <div class="mono text-sm space-y-2">
587
- <p><span class="text-gray-400">Source:</span> Google Ads</p>
588
- <p><span class="text-gray-400">Vertical:</span> SaaS</p>
589
- <p><span class="text-gray-400">CTR:</span> 6.1%</p>
590
- <p><span class="text-gray-400">ROI:</span> 380%</p>
591
- <p><span class="text-gray-400">CR:</span> 8.9%</p>
592
- </div>
593
- </div>
594
- </div>
595
- </div>
596
- </div>
597
- <div class="text-center mt-10">
598
- <a href="#" class="pill-btn border border-green-500 text-green-500 px-8 py-3 rounded-sm hover:bg-green-500 hover:text-black transition-all duration-300 inline-flex items-center gap-2">
599
- <i class="fas fa-lock-open"></i> Request Full Mission Reports
600
- </a>
601
- </div>
602
- </section>
603
-
604
- <!-- The Architect -->
605
- <section class="py-20 px-4 max-w-6xl mx-auto">
606
- <h2 class="monument text-3xl md:text-4xl mb-16 text-center flicker">THE ARCHITECT</h2>
607
- <div class="flex flex-col lg:flex-row items-center gap-10">
608
- <div class="relative lg:w-1/2">
609
- <div class="border border-green-500 p-1 relative">
610
- <img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Timur" class="w-full h-auto">
611
- <div class="absolute inset-0 bg-green-500 opacity-10 pointer-events-none"></div>
612
- </div>
613
- <div class="absolute -top-4 -left-4 w-20 h-20 border-t border-l border-green-500"></div>
614
- <div class="absolute -top-4 -right-4 w-20 h-20 border-t border-r border-green-500"></div>
615
- <div class="absolute -bottom-4 -left-4 w-20 h-20 border-b border-l border-green-500"></div>
616
- <div class="absolute -bottom-4 -right-4 w-20 h-20 border-b border-r border-green-500"></div>
617
- </div>
618
- <div class="lg:w-1/2">
619
- <h3 class="monument text-2xl mb-4">Timur: Architect of Controlled Chaos</h3>
620
- <p class="mono text-lg mb-6 leading-relaxed">
621
- Creator of TMT. Reprogrammer of the Traffic Universe. With a background in dark funnel optimization and behavioral psychology, Timur engineered the TMT system to predict and manipulate digital flows at scale. His architecture has processed over $5M in traffic across 70+ operators and 15+ sources.
622
- </p>
623
- <div class="flex gap-4">
624
- <a href="#" class="border border-green-500 text-green-500 w-10 h-10 flex items-center justify-center hover:bg-green-500 hover:text-black transition-all duration-300">
625
- <i class="fab fa-instagram"></i>
626
- </a>
627
- <a href="#" class="border border-green-500 text-green-500 w-10 h-10 flex items-center justify-center hover:bg-green-500 hover:text-black transition-all duration-300">
628
- <i class="fab fa-youtube"></i>
629
- </a>
630
- <a href="#" class="border border-green-500 text-green-500 w-10 h-10 flex items-center justify-center hover:bg-green-500 hover:text-black transition-all duration-300">
631
- <i class="fab fa-telegram"></i>
632
- </a>
633
  </div>
634
- </div>
635
- </div>
636
- </section>
637
-
638
- <!-- Partners and Verticals -->
639
- <section class="py-20 px-4 bg-black bg-opacity-50">
640
- <div class="max-w-6xl mx-auto">
641
- <h2 class="monument text-3xl md:text-4xl mb-16 text-center flicker">ALLIES NETWORK</h2>
642
- <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-5 gap-8">
643
- <div class="flex items-center justify-center grayscale hover:grayscale-0 transition-all duration-300">
644
- <div class="text-4xl font-bold mono">VERTICAL 1</div>
645
- </div>
646
- <div class="flex items-center justify-center grayscale hover:grayscale-0 transition-all duration-300">
647
- <div class="text-4xl font-bold mono">VERTICAL 2</div>
648
  </div>
649
- <div class="flex items-center justify-center grayscale hover:grayscale-0 transition-all duration-300">
650
- <div class="text-4xl font-bold mono">VERTICAL 3</div>
 
651
  </div>
652
- <div class="flex items-center justify-center grayscale hover:grayscale-0 transition-all duration-300">
653
- <div class="text-4xl font-bold mono">VERTICAL 4</div>
654
- </div>
655
- <div class="flex items-center justify-center grayscale hover:grayscale-0 transition-all duration-300">
656
- <div class="text-4xl font-bold mono">VERTICAL 5</div>
657
- </div>
658
- </div>
659
- <div class="mt-16">
660
- <h3 class="monument text-xl mb-6 text-center">DOMINANT VERTICALS</h3>
661
- <div class="flex flex-wrap justify-center gap-4">
662
- <span class="mono border border-green-500 px-4 py-2">GAMBLING</span>
663
- <span class="mono border border-green-500 px-4 py-2">NUTRA</span>
664
- <span class="mono border border-green-500 px-4 py-2">BETTING</span>
665
- <span class="mono border border-green-500 px-4 py-2">FINANCE</span>
666
- <span class="mono border border-green-500 px-4 py-2">SAAS</span>
667
- </div>
668
- </div>
669
- </div>
670
- </section>
671
-
672
- <!-- Final Choice -->
673
- <section class="min-h-screen flex flex-col justify-center items-center px-4 relative">
674
- <div class="text-center max-w-2xl mx-auto">
675
- <p class="mono text-xl mb-10">"You are now at the crossroads. Choose wisely."</p>
676
- <div class="pill-container flex flex-col sm:flex-row justify-center gap-8">
677
- <a href="#" class="red-pill-3d red-pill pill-btn px-12 py-6 rounded-full flex flex-col items-center justify-center gap-2">
678
- <div class="w-8 h-8 bg-red-500 rounded-full mb-2"></div>
679
- <span class="monument">RED PILL</span>
680
- <span class="mono text-sm">Enter the Network</span>
681
- </a>
682
- <a href="#" class="blue-pill-3d blue-pill pill-btn px-12 py-6 rounded-full flex flex-col items-center justify-center gap-2">
683
- <div class="w-8 h-8 bg-blue-500 rounded-full mb-2"></div>
684
- <span class="monument">BLUE PILL</span>
685
- <span class="mono text-sm">Stay in the Illusion</span>
686
- </a>
687
- </div>
688
- </div>
689
- </section>
690
-
691
- <!-- Footer -->
692
- <footer class="py-10 px-4 border-t border-green-500 border-opacity-30">
693
- <div class="max-w-6xl mx-auto flex flex-col md:flex-row justify-between items-center">
694
- <div class="mono text-sm mb-4 md:mb-0">
695
- © 2025 TMT — Reprogramming the Digital World.
696
- </div>
697
- <div class="flex gap-4 mb-4 md:mb-0">
698
- <a href="#" class="text-green-500 hover:text-white transition-all duration-300">
699
- <i class="fab fa-telegram fa-lg"></i>
700
- </a>
701
- <a href="#" class="text-green-500 hover:text-white transition-all duration-300">
702
- <i class="fab fa-instagram fa-lg"></i>
703
- </a>
704
- <a href="#" class="text-green-500 hover:text-white transition-all duration-300">
705
- <i class="fab fa-youtube fa-lg"></i>
706
- </a>
707
  </div>
708
- <a href="#" class="scroll-top border border-green-500 text-green-500 w-12 h-12 rounded-full flex items-center justify-center hover:bg-green-500 hover:text-black transition-all duration-300">
709
- <i class="fas fa-power-off"></i>
710
- </a>
711
  </div>
712
- </footer>
713
 
714
- <script>
715
- // Matrix code background
716
- function createMatrixEffect() {
717
- const matrixBg = document.getElementById('matrixBg');
718
- const chars = "01アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヲン";
719
-
720
- for (let i = 0; i < 30; i++) {
721
- const column = document.createElement('div');
722
- column.className = 'code-column';
723
- column.style.left = `${Math.random() * 100}%`;
724
- column.style.animationDuration = `${5 + Math.random() * 10}s`;
725
- column.style.animationDelay = `${Math.random() * 5}s`;
726
 
727
- for (let j = 0; j < 30; j++) {
728
- const char = document.createElement('span');
729
- char.textContent = chars.charAt(Math.floor(Math.random() * chars.length));
730
- char.style.opacity = Math.random();
731
- char.style.animation = `flicker ${3 + Math.random() * 5}s infinite alternate`;
732
- char.style.animationDelay = `${Math.random() * 5}s`;
733
- column.appendChild(char);
 
 
 
 
 
 
 
 
734
  }
735
-
736
- matrixBg.appendChild(column);
737
  }
738
- }
739
-
740
- // Typing effect for title
741
- function typeTitle() {
742
- const title = "TMT — TRAFFIC MONSTERS TEAM";
743
- const subtitle = "Decoding the chaos. Mastering the flow.";
744
- const titleElement = document.getElementById('titleText');
745
- const subtitleElement = document.getElementById('subtitleText');
746
-
747
- let i = 0;
748
- const typing = setInterval(() => {
749
- if (i < title.length) {
750
- titleElement.textContent += title.charAt(i);
751
- i++;
752
- } else {
753
- clearInterval(typing);
754
- typeSubtitle();
755
- }
756
- }, 100);
757
 
758
- function typeSubtitle() {
759
- let j = 0;
760
- const subtitleTyping = setInterval(() => {
761
- if (j < subtitle.length) {
762
- subtitleElement.textContent += subtitle.charAt(j);
763
- j++;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
764
  } else {
765
- clearInterval(subtitleTyping);
766
- subtitleElement.classList.remove('typing');
767
  }
768
- }, 50);
 
 
 
769
  }
770
- }
771
-
772
- // Animated counters
773
- function animateCounters() {
774
- const counters = [
775
- { element: 'trafficCounter', target: 5, suffix: 'M+' },
776
- { element: 'operatorsCounter', target: 70, suffix: '+' },
777
- { element: 'offersCounter', target: 200, suffix: '+' },
778
- { element: 'sourcesCounter', target: 15, suffix: '+' }
779
- ];
780
-
781
- const duration = 2000; // ms
782
- const steps = 20;
783
- const stepTime = duration / steps;
784
 
785
- counters.forEach(counter => {
786
- let current = 0;
787
- const increment = counter.target / steps;
788
- const element = document.getElementById(counter.element);
789
 
790
- const timer = setInterval(() => {
791
- current += increment;
792
- if (current >= counter.target) {
793
- clearInterval(timer);
794
- current = counter.target;
795
- }
796
- element.textContent = Math.floor(current) + counter.suffix;
797
- }, stepTime);
 
 
 
 
798
  });
799
- }
800
-
801
- // Initialize everything when DOM is loaded
802
- document.addEventListener('DOMContentLoaded', () => {
803
- createMatrixEffect();
804
- typeTitle();
805
-
806
- // Intersection Observer for counters
807
- const observer = new IntersectionObserver((entries) => {
808
- entries.forEach(entry => {
809
- if (entry.isIntersecting) {
810
- animateCounters();
811
- observer.unobserve(entry.target);
812
- }
813
- });
814
- }, { threshold: 0.5 });
815
-
816
- const metricsSection = document.querySelector('#trafficCounter').parentElement.parentElement.parentElement;
817
- observer.observe(metricsSection);
818
-
819
- // Random glitch effect
820
- setInterval(() => {
821
- const elements = document.querySelectorAll('.glitch');
822
- elements.forEach(el => {
823
- if (Math.random() > 0.9) {
824
- el.classList.add('glitch-active');
825
- setTimeout(() => {
826
- el.classList.remove('glitch-active');
827
- }, 200);
828
- }
829
- });
830
- }, 5000);
831
- });
832
- </script>
833
  <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/tmtmatrix0019" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
834
  </html>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>TMT History</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
 
8
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap">
 
9
  <style>
10
  @font-face {
11
  font-family: 'Monument Extended';
 
15
  }
16
 
17
  body {
18
+ font-family: 'JetBrains Mono', monospace;
19
  background-color: #000;
20
  color: #00FF00;
21
  overflow-x: hidden;
 
22
  }
23
 
24
  .monument {
25
  font-family: 'Monument Extended', sans-serif;
26
  }
27
 
 
 
 
 
28
  .matrix-bg {
29
  position: fixed;
30
  top: 0;
 
32
  width: 100%;
33
  height: 100%;
34
  z-index: -1;
35
+ opacity: 0.2;
36
  background: #000;
37
  overflow: hidden;
38
  }
 
64
  }
65
  }
66
 
67
+ .typing {
68
+ border-right: 2px solid #00FF00;
69
+ animation: blink 0.75s step-end infinite;
70
+ }
71
+
72
+ @keyframes blink {
73
+ from, to { border-color: transparent; }
74
+ 50% { border-color: #00FF00; }
75
+ }
76
+
77
+ .terminal {
78
+ background-color: rgba(0, 0, 0, 0.7);
79
+ border: 1px solid #00FF00;
80
+ box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
81
+ }
82
+
83
+ .terminal-header {
84
+ border-bottom: 1px solid #00FF00;
85
+ background-color: rgba(0, 20, 0, 0.5);
86
+ }
87
+
88
+ .terminal-body {
89
+ height: 60vh;
90
+ overflow-y: auto;
91
+ scrollbar-width: none;
92
+ }
93
+
94
+ .terminal-body::-webkit-scrollbar {
95
+ display: none;
96
+ }
97
+
98
+ .prompt {
99
+ color: #00FF00;
100
+ }
101
+
102
+ .cursor {
103
+ animation: blink 1s step-end infinite;
104
+ }
105
+
106
  .glitch {
107
  position: relative;
108
  }
 
158
  100% { clip: rect(68px, 9999px, 109px, 0); }
159
  }
160
 
161
+ .command {
162
+ color: #00FFFF;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  }
164
 
165
+ .file {
166
+ color: #FFFF00;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  }
168
 
169
+ .year {
170
+ color: #FF00FF;
171
  }
172
 
173
+ .value {
174
+ color: #00FF00;
175
+ font-weight: bold;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
176
  }
 
177
  </style>
178
  </head>
179
+ <body class="bg-black text-green-500">
180
  <!-- Matrix Code Background -->
181
  <div class="matrix-bg" id="matrixBg"></div>
182
 
183
+ <div class="container mx-auto px-4 py-12 max-w-4xl">
184
+ <div class="terminal relative">
185
+ <div class="terminal-header p-3 flex items-center">
186
+ <div class="flex space-x-2 mr-4">
187
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
188
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
189
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
  </div>
191
+ <div class="text-sm">TMT_HISTORY.TXT</div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
  </div>
193
+ <div class="terminal-body p-4" id="terminalOutput">
194
+ <!-- Content will be added here by JavaScript -->
 
 
 
 
 
 
 
 
 
 
 
 
195
  </div>
196
+ <div class="terminal-footer p-4 border-t border-green-500 flex items-center">
197
+ <span class="prompt mr-2">root@tmt:~$</span>
198
+ <span id="typingCursor" class="cursor">_</span>
199
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
200
  </div>
 
 
 
201
  </div>
 
202
 
203
+ <script>
204
+ // Matrix code background
205
+ function createMatrixEffect() {
206
+ const matrixBg = document.getElementById('matrixBg');
207
+ const chars = "01アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヲン";
 
 
 
 
 
 
 
208
 
209
+ for (let i = 0; i < 20; i++) {
210
+ const column = document.createElement('div');
211
+ column.className = 'code-column';
212
+ column.style.left = `${Math.random() * 100}%`;
213
+ column.style.animationDuration = `${5 + Math.random() * 10}s`;
214
+ column.style.animationDelay = `${Math.random() * 5}s`;
215
+
216
+ for (let j = 0; j < 30; j++) {
217
+ const char = document.createElement('span');
218
+ char.textContent = chars.charAt(Math.floor(Math.random() * chars.length));
219
+ char.style.opacity = Math.random();
220
+ column.appendChild(char);
221
+ }
222
+
223
+ matrixBg.appendChild(column);
224
  }
 
 
225
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
226
 
227
+ // Typewriter effect for the history
228
+ function typeHistory() {
229
+ const history = [
230
+ {text: "TMT_HISTORY.TXT", class: "file glitch", delay: 1000, dataText: "TMT_HISTORY.TXT"},
231
+ {text: "INITIALIZING TMT CORE PROTOCOLS...", class: "command", delay: 500},
232
+ {text: "", delay: 1000},
233
+ {text: "<span class='year'>YEAR 2018:</span> First traces of TMT detected in the digital ecosystem. A small group of performance hackers begins rewriting traffic acquisition algorithms.", delay: 50},
234
+ {text: "", delay: 500},
235
+ {text: "<span class='year'>YEAR 2020:</span> The collective evolves into a decentralized network. First major breakthrough - cracking the Facebook ad algorithm during pandemic market shifts.", delay: 50},
236
+ {text: "", delay: 500},
237
+ {text: "<span class='year'>YEAR 2022:</span> Full operational capacity achieved. TMT now controls traffic flows across <span class='value'>15+</span> ecosystems. <span class='value'>$1M/month</span> in managed spend becomes standard.", delay: 50},
238
+ {text: "", delay: 1000},
239
+ {text: "<span class='command'>CORE VALUES:</span>", delay: 500},
240
+ {text: "> <span class='value'>PERFORMANCE IS TRUTH:</span> Data over opinions. We follow the numbers wherever they lead.", delay: 30},
241
+ {text: "> <span class='value'>ADAPT OR DIE:</span> Market conditions change hourly. Our systems evolve in real-time.", delay: 30},
242
+ {text: "> <span class='value'>CONTROL THE FLOW:</span> Traffic is the lifeblood of digital. We don't just buy it - we engineer it.", delay: 30},
243
+ {text: "", delay: 1000},
244
+ {text: "<span class='command'>MISSION STATEMENT:</span>", delay: 500},
245
+ {text: "To dominate performance marketing through algorithmic precision, infrastructure hacking, and relentless optimization. We exist to push the boundaries of what's possible in traffic acquisition.", delay: 30},
246
+ {text: "", delay: 1000},
247
+ {text: "<span class='command'>END OF FILE</span>", delay: 1000}
248
+ ];
249
+
250
+ const terminalOutput = document.getElementById('terminalOutput');
251
+ let i = 0;
252
+
253
+ function typeNextLine() {
254
+ if (i < history.length) {
255
+ const line = history[i];
256
+
257
+ if (line.text === "") {
258
+ const br = document.createElement('div');
259
+ terminalOutput.appendChild(br);
260
+ i++;
261
+ setTimeout(typeNextLine, line.delay);
262
+ return;
263
+ }
264
+
265
+ const lineElement = document.createElement('div');
266
+ lineElement.className = line.class || '';
267
+ lineElement.innerHTML = line.text;
268
+
269
+ // Add typing effect for non-empty lines
270
+ if (line.text) {
271
+ lineElement.style.display = 'inline-block';
272
+ lineElement.style.overflow = 'hidden';
273
+ lineElement.style.whiteSpace = 'nowrap';
274
+ lineElement.style.width = '0';
275
+
276
+ terminalOutput.appendChild(lineElement);
277
+
278
+ const textWidth = lineElement.scrollWidth;
279
+ let currentWidth = 0;
280
+ const typingSpeed = 5; // characters per 50ms
281
+
282
+ const typingInterval = setInterval(() => {
283
+ currentWidth += typingSpeed;
284
+ lineElement.style.width = `${currentWidth}px`;
285
+
286
+ if (currentWidth >= textWidth) {
287
+ clearInterval(typingInterval);
288
+ terminalOutput.appendChild(document.createElement('br'));
289
+ i++;
290
+ setTimeout(typeNextLine, line.delay);
291
+ }
292
+ }, 50);
293
+ } else {
294
+ terminalOutput.appendChild(lineElement);
295
+ i++;
296
+ setTimeout(typeNextLine, line.delay);
297
+ }
298
  } else {
299
+ // Animation complete
300
+ document.getElementById('typingCursor').style.visibility = 'hidden';
301
  }
302
+ }
303
+
304
+ // Start typing after a short delay
305
+ setTimeout(typeNextLine, 1000);
306
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
307
 
308
+ // Initialize everything when DOM is loaded
309
+ document.addEventListener('DOMContentLoaded', () => {
310
+ createMatrixEffect();
311
+ typeHistory();
312
 
313
+ // Random glitch effect
314
+ setInterval(() => {
315
+ const glitchElements = document.querySelectorAll('.glitch');
316
+ glitchElements.forEach(el => {
317
+ if (Math.random() > 0.7) {
318
+ el.classList.add('glitch-active');
319
+ setTimeout(() => {
320
+ el.classList.remove('glitch-active');
321
+ }, 200);
322
+ }
323
+ });
324
+ }, 5000);
325
  });
326
+ </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
327
  <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/tmtmatrix0019" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
328
  </html>
prompts.txt CHANGED
@@ -1,2 +1,3 @@
1
  ✅ PROMPT: TMT — Traffic Monsters Team в стиле “The Matrix” Create a one-page cinematic landing page for Traffic Monsters Team (TMT), styled in the aesthetic of The Matrix (1999). • Tone: dark, encrypted, controlled, cybernetic. • No mentions of students, learning, or education. • Target: partner networks, advertisers, media buying professionals, competitors. ⸻ 🧱 SITE STRUCTURE 1. Hero Section — Operation: Control the Flow • Animated flowing green code as background (vertical streams, random symbol glitches, old CRT screen flicker). • Central Title (appearing letter-by-letter): TMT — TRAFFIC MONSTERS TEAM • Subtitle (typed terminal effect): Decoding the chaos. Mastering the flow. • Two Buttons (glowing frame): • ▶️ Enter the Network (Telegram) • 🎞️ Watch Completed Missions (Cases) 2. The Origin Code — Story of TMT • Title: THE ORIGIN CODE • Subtitle: "Before control... there was chaos." • Story Text (cinematic myth style): Once, the digital realms were wild — endless, uncontrolled, unpredictable. In 2022, a group of architects emerged. They did not seek to follow the flow — they sought to command it. Thus, the Traffic Monsters Team was born. Forged in the heart of the Data Wars, molded by broken funnels and lost offers, they built their own Matrix — a system where traffic obeys and strategies evolve. For three years, TMT has not survived the system. They have rewritten its rules. 3. Capabilities Block — Mastering the Systems • Grid layout of capabilities: • Offer Mapping • Multi-channel Traffic Execution • Keitaro Tracking & API Control • Creative Manufacturing (UGC, Deepfakes) • Funnel and App Monetization • Each service visualized with terminal-style icons. 4. Metrics Block — Data Sovereignty • Animated counters with terminal typing effect: • $5M+ Traffic Processed • 70+ Media Operators • 200+ Offers Deployed • 15+ Traffic Sources Controlled 5. Case Studies — Completed Missions • Horizontal carousel of case studies: • Mission Name • Traffic Source • Offer Category • Metrics (CTR, ROI, CR) • Each case framed as a “declassified mission report”. 6. The Architect — Founder Timur • Cinematic portrait of Timur with Matrix-style green glow. • Short bio: Timur: Architect of Controlled Chaos. Creator of TMT. Reprogrammer of the Traffic Universe. • Links: • Instagram • YouTube Interview 7. Partners and Verticals — Allies Network • Black-and-white distorted logos (optional static effect). • Mentioned Verticals: • Gambling • Nutra • Betting • Finance • SaaS 8. Final Choice — Red Pill or Blue Pill (CTA) • Dark background with dripping code. • Text: “You are now at the crossroads. Choose wisely.” • Two Buttons (pill style): • 🔴 Red Pill → Enter the Network (Telegram) • 🔵 Blue Pill → Stay in the Illusion (Return to Top) • Hover Effects: • Red Pill vibrates lightly. • Blue Pill fades away. 9. Footer — System Root Signature • Minimal footer: • Telegram, Instagram, YouTube icons (green glow on hover). • Text: © 2025 TMT — Reprogramming the Digital World. • Scroll-to-top button: "Wake Up" ⸻ 🎨 VISUAL DETAILS • Background: deep black (#000000) • Main Color: neon green (#00FF00) • Secondary Color: silver metallic (#B0B0B0) • Fonts: • Headlines: Monument Extended • Body: Inter • Numbers and code: JetBrains Mono • Effects: • Slow-moving matrix code • Terminal typing animation • Flickering text reveals • Glitch effects on buttons and transitions
2
- Все круто - только куда делся блок с операторами(командой) - добавь его - тоже в стиле матрицы! И еще кнопки снизу - красная и синяя - сделай похожими на таблетки - как в матрице!
 
 
1
  ✅ PROMPT: TMT — Traffic Monsters Team в стиле “The Matrix” Create a one-page cinematic landing page for Traffic Monsters Team (TMT), styled in the aesthetic of The Matrix (1999). • Tone: dark, encrypted, controlled, cybernetic. • No mentions of students, learning, or education. • Target: partner networks, advertisers, media buying professionals, competitors. ⸻ 🧱 SITE STRUCTURE 1. Hero Section — Operation: Control the Flow • Animated flowing green code as background (vertical streams, random symbol glitches, old CRT screen flicker). • Central Title (appearing letter-by-letter): TMT — TRAFFIC MONSTERS TEAM • Subtitle (typed terminal effect): Decoding the chaos. Mastering the flow. • Two Buttons (glowing frame): • ▶️ Enter the Network (Telegram) • 🎞️ Watch Completed Missions (Cases) 2. The Origin Code — Story of TMT • Title: THE ORIGIN CODE • Subtitle: "Before control... there was chaos." • Story Text (cinematic myth style): Once, the digital realms were wild — endless, uncontrolled, unpredictable. In 2022, a group of architects emerged. They did not seek to follow the flow — they sought to command it. Thus, the Traffic Monsters Team was born. Forged in the heart of the Data Wars, molded by broken funnels and lost offers, they built their own Matrix — a system where traffic obeys and strategies evolve. For three years, TMT has not survived the system. They have rewritten its rules. 3. Capabilities Block — Mastering the Systems • Grid layout of capabilities: • Offer Mapping • Multi-channel Traffic Execution • Keitaro Tracking & API Control • Creative Manufacturing (UGC, Deepfakes) • Funnel and App Monetization • Each service visualized with terminal-style icons. 4. Metrics Block — Data Sovereignty • Animated counters with terminal typing effect: • $5M+ Traffic Processed • 70+ Media Operators • 200+ Offers Deployed • 15+ Traffic Sources Controlled 5. Case Studies — Completed Missions • Horizontal carousel of case studies: • Mission Name • Traffic Source • Offer Category • Metrics (CTR, ROI, CR) • Each case framed as a “declassified mission report”. 6. The Architect — Founder Timur • Cinematic portrait of Timur with Matrix-style green glow. • Short bio: Timur: Architect of Controlled Chaos. Creator of TMT. Reprogrammer of the Traffic Universe. • Links: • Instagram • YouTube Interview 7. Partners and Verticals — Allies Network • Black-and-white distorted logos (optional static effect). • Mentioned Verticals: • Gambling • Nutra • Betting • Finance • SaaS 8. Final Choice — Red Pill or Blue Pill (CTA) • Dark background with dripping code. • Text: “You are now at the crossroads. Choose wisely.” • Two Buttons (pill style): • 🔴 Red Pill → Enter the Network (Telegram) • 🔵 Blue Pill → Stay in the Illusion (Return to Top) • Hover Effects: • Red Pill vibrates lightly. • Blue Pill fades away. 9. Footer — System Root Signature • Minimal footer: • Telegram, Instagram, YouTube icons (green glow on hover). • Text: © 2025 TMT — Reprogramming the Digital World. • Scroll-to-top button: "Wake Up" ⸻ 🎨 VISUAL DETAILS • Background: deep black (#000000) • Main Color: neon green (#00FF00) • Secondary Color: silver metallic (#B0B0B0) • Fonts: • Headlines: Monument Extended • Body: Inter • Numbers and code: JetBrains Mono • Effects: • Slow-moving matrix code • Terminal typing animation • Flickering text reveals • Glitch effects on buttons and transitions
2
+ Все круто - только куда делся блок с операторами(командой) - добавь его - тоже в стиле матрицы! И еще кнопки снизу - красная и синяя - сделай похожими на таблетки - как в матрице!
3
+ Сделай историю вот вот с таким текстом! и чтобы был эффект написания истории! TMT_HISTORY.TXT INITIALIZING TMT CORE PROTOCOLS... YEAR 2018: First traces of TMT detected in the digital ecosystem. A small group of performance hackers begins rewriting traffic acquisition algorithms. YEAR 2020: The collective evolves into a decentralized network. First major breakthrough - cracking the Facebook ad algorithm during pandemic market shifts. YEAR 2022: Full operational capacity achieved. TMT now controls traffic flows across 15+ ecosystems. $1M/month in managed spend becomes standard. CORE VALUES: > PERFORMANCE IS TRUTH: Data over opinions. We follow the numbers wherever they lead. > ADAPT OR DIE: Market conditions change hourly. Our systems evolve in real-time. > CONTROL THE FLOW: Traffic is the lifeblood of digital. We don't just buy it - we engineer it. MISSION STATEMENT: To dominate performance marketing through algorithmic precision, infrastructure hacking, and relentless optimization. We exist to push the boundaries of what's possible in traffic acquisition. END OF FILE