File size: 27,370 Bytes
1fccac6 | 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 | <!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>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></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=Space+Grotesk:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Space Grotesk', sans-serif;
background-color: #0E0E0E;
color: white;
overflow-x: hidden;
}
.neon-text {
text-shadow: 0 0 10px rgba(246, 252, 121, 0.7), 0 0 20px rgba(246, 252, 121, 0.5);
}
.neon-border {
box-shadow: 0 0 15px rgba(246, 252, 121, 0.5);
border: 1px solid rgba(246, 252, 121, 0.3);
}
.neon-hover:hover {
text-shadow: 0 0 15px rgba(246, 252, 121, 0.9), 0 0 25px rgba(246, 252, 121, 0.7);
transition: all 0.3s ease;
}
.glass-card {
background: rgba(15, 15, 15, 0.7);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-radius: 10px;
}
.glow-on-hover {
transition: all 0.3s ease;
}
.glow-on-hover:hover {
box-shadow: 0 0 20px rgba(246, 252, 121, 0.5);
transform: translateY(-3px);
}
.counter {
font-variant-numeric: tabular-nums;
}
.team-avatar {
filter: drop-shadow(0 0 10px rgba(246, 252, 121, 0.5));
transition: all 0.3s ease;
}
.team-avatar:hover {
filter: drop-shadow(0 0 15px rgba(246, 252, 121, 0.8));
transform: translateY(-5px);
}
.particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.particle {
position: absolute;
background-color: rgba(246, 252, 121, 0.5);
border-radius: 50%;
pointer-events: none;
}
.tech-icon {
transition: all 0.3s ease;
}
.tech-icon:hover {
transform: scale(1.1) rotate(5deg);
filter: drop-shadow(0 0 10px rgba(246, 252, 121, 0.7));
}
.case-study-card {
transition: all 0.3s ease;
}
.case-study-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 25px rgba(246, 252, 121, 0.3);
}
.floating {
animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(246, 252, 121, 0.7); }
70% { box-shadow: 0 0 0 15px rgba(246, 252, 121, 0); }
100% { box-shadow: 0 0 0 0 rgba(246, 252, 121, 0); }
}
</style>
</head>
<body>
<!-- Particles Background -->
<div id="particles-js" class="particles"></div>
<!-- Hero Section -->
<section class="min-h-screen flex items-center justify-center relative overflow-hidden">
<div class="absolute inset-0 bg-black opacity-50 z-0"></div>
<div class="container mx-auto px-6 z-10">
<div class="flex flex-col items-center text-center">
<h1 class="text-6xl md:text-8xl font-bold mb-6 neon-text">TRAFFIC MONSTERS TEAM</h1>
<p class="text-xl md:text-2xl mb-12 text-gray-300">We don't run traffic. We dominate it.</p>
<div class="flex flex-col sm:flex-row gap-4">
<a href="#" class="px-8 py-4 bg-[#f6fc79] text-black font-bold rounded-full glow-on-hover flex items-center justify-center gap-2">
<i class="fab fa-telegram text-xl"></i> Join Telegram
</a>
<a href="#case-studies" class="px-8 py-4 glass-card font-bold rounded-full glow-on-hover flex items-center justify-center gap-2 neon-border">
<i class="fas fa-folder-open"></i> View Case Studies
</a>
</div>
</div>
</div>
</section>
<!-- About Us / Stats -->
<section class="py-20 relative">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4 neon-text">MONSTER STATS</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">70+ media buyers | $5M+ revenue | 15+ traffic sources | 100+ working offers</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div class="glass-card p-8 rounded-xl text-center glow-on-hover">
<div class="text-5xl font-bold mb-2 text-[#f6fc79] counter" data-target="70">0</div>
<p class="text-gray-300">Media Buyers</p>
</div>
<div class="glass-card p-8 rounded-xl text-center glow-on-hover">
<div class="text-5xl font-bold mb-2 text-[#f6fc79] counter" data-target="5">0</div>
<p class="text-gray-300">Million+ Revenue</p>
</div>
<div class="glass-card p-8 rounded-xl text-center glow-on-hover">
<div class="text-5xl font-bold mb-2 text-[#f6fc79] counter" data-target="15">0</div>
<p class="text-gray-300">Traffic Sources</p>
</div>
<div class="glass-card p-8 rounded-xl text-center glow-on-hover">
<div class="text-5xl font-bold mb-2 text-[#f6fc79] counter" data-target="100">0</div>
<p class="text-gray-300">Working Offers</p>
</div>
</div>
</div>
</section>
<!-- Why TMT -->
<section class="py-20 bg-gradient-to-b from-[#0E0E0E] to-[#1a1a1a]">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4 neon-text">WHY TMT?</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">Here's what makes us different from other media buying teams</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="glass-card p-8 rounded-xl glow-on-hover group">
<div class="text-4xl mb-4 text-[#f6fc79] group-hover:scale-110 transition-transform duration-300">
<i class="fas fa-bolt"></i>
</div>
<h3 class="text-2xl font-bold mb-2">Fast start for juniors</h3>
<p class="text-gray-300">We provide all the tools and knowledge to get you profitable in record time.</p>
</div>
<div class="glass-card p-8 rounded-xl glow-on-hover group">
<div class="text-4xl mb-4 text-[#f6fc79] group-hover:scale-110 transition-transform duration-300">
<i class="fas fa-crosshairs"></i>
</div>
<h3 class="text-2xl font-bold mb-2">Experts in every vertical</h3>
<p class="text-gray-300">No matter your niche, we have specialists who've already scaled it.</p>
</div>
<div class="glass-card p-8 rounded-xl glow-on-hover group">
<div class="text-4xl mb-4 text-[#f6fc79] group-hover:scale-110 transition-transform duration-300">
<i class="fas fa-layer-group"></i>
</div>
<h3 class="text-2xl font-bold mb-2">Full-stack solutions</h3>
<p class="text-gray-300">Creatives, landers, offers, bots - everything you need in one place.</p>
</div>
<div class="glass-card p-8 rounded-xl glow-on-hover group">
<div class="text-4xl mb-4 text-[#f6fc79] group-hover:scale-110 transition-transform duration-300">
<i class="fas fa-chart-line"></i>
</div>
<h3 class="text-2xl font-bold mb-2">Real ROI, real support</h3>
<p class="text-gray-300">No fluff, just proven strategies and 24/7 support from top performers.</p>
</div>
</div>
</div>
</section>
<!-- Case Studies -->
<section id="case-studies" class="py-20 relative">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4 neon-text">CASE STUDIES</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">Real campaigns from our media buyers</p>
<div class="flex justify-center mt-8 gap-4">
<button class="px-6 py-2 glass-card rounded-full glow-on-hover active">All</button>
<button class="px-6 py-2 glass-card rounded-full glow-on-hover">FB</button>
<button class="px-6 py-2 glass-card rounded-full glow-on-hover">TikTok</button>
<button class="px-6 py-2 glass-card rounded-full glow-on-hover">Google</button>
<button class="px-6 py-2 glass-card rounded-full glow-on-hover">Push</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="case-study-card glass-card p-6 rounded-xl">
<div class="mb-4">
<span class="px-3 py-1 bg-[#f6fc79] text-black rounded-full text-sm font-bold">Facebook</span>
</div>
<h3 class="text-2xl font-bold mb-2">CBD E-commerce</h3>
<div class="flex justify-between mb-4">
<div>
<p class="text-gray-400 text-sm">Spend</p>
<p class="font-bold">$87,420</p>
</div>
<div>
<p class="text-gray-400 text-sm">ROI</p>
<p class="font-bold text-[#f6fc79]">+217%</p>
</div>
</div>
<p class="text-gray-300 mb-4">Scaled from $200/day to $5k/day using custom creatives and lookalike stacking.</p>
<div class="h-40 bg-gray-800 rounded-lg mb-4 flex items-center justify-center">
<i class="fas fa-chart-bar text-4xl text-[#f6fc79]"></i>
</div>
</div>
<div class="case-study-card glass-card p-6 rounded-xl">
<div class="mb-4">
<span class="px-3 py-1 bg-[#f6fc79] text-black rounded-full text-sm font-bold">TikTok</span>
</div>
<h3 class="text-2xl font-bold mb-2">Dietary Supplement</h3>
<div class="flex justify-between mb-4">
<div>
<p class="text-gray-400 text-sm">Spend</p>
<p class="font-bold">$142,650</p>
</div>
<div>
<p class="text-gray-400 text-sm">ROI</p>
<p class="font-bold text-[#f6fc79]">+189%</p>
</div>
</div>
<p class="text-gray-300 mb-4">Vertical video strategy with UGC content generated 7-figures in 3 months.</p>
<div class="h-40 bg-gray-800 rounded-lg mb-4 flex items-center justify-center">
<i class="fas fa-chart-pie text-4xl text-[#f6fc79]"></i>
</div>
</div>
<div class="case-study-card glass-card p-6 rounded-xl">
<div class="mb-4">
<span class="px-3 py-1 bg-[#f6fc79] text-black rounded-full text-sm font-bold">Google Ads</span>
</div>
<h3 class="text-2xl font-bold mb-2">Insurance Lead Gen</h3>
<div class="flex justify-between mb-4">
<div>
<p class="text-gray-400 text-sm">Spend</p>
<p class="font-bold">$328,900</p>
</div>
<div>
<p class="text-gray-400 text-sm">ROI</p>
<p class="font-bold text-[#f6fc79]">+312%</p>
</div>
</div>
<p class="text-gray-300 mb-4">Custom landing page with chatbot integration increased conversions by 47%.</p>
<div class="h-40 bg-gray-800 rounded-lg mb-4 flex items-center justify-center">
<i class="fas fa-chart-line text-4xl text-[#f6fc79]"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Team Block -->
<section class="py-20 bg-gradient-to-b from-[#1a1a1a] to-[#0E0E0E]">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4 neon-text">THE MONSTERS</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">Meet some of our elite media buyers</p>
</div>
<div class="flex overflow-x-auto pb-8 gap-8 team-scroll">
<div class="flex-shrink-0 w-64 glass-card p-6 rounded-xl text-center">
<div class="w-24 h-24 rounded-full bg-gray-800 mx-auto mb-4 team-avatar flex items-center justify-center">
<i class="fas fa-user-secret text-3xl text-[#f6fc79]"></i>
</div>
<h3 class="text-xl font-bold mb-1">@roi_monster</h3>
<p class="text-sm text-gray-300">Scaling TikTok since 2020</p>
<div class="mt-4 text-[#f6fc79]">
<i class="fas fa-trophy mr-2"></i>
<i class="fas fa-fire mr-2"></i>
<i class="fas fa-chart-line"></i>
</div>
</div>
<div class="flex-shrink-0 w-64 glass-card p-6 rounded-xl text-center">
<div class="w-24 h-24 rounded-full bg-gray-800 mx-auto mb-4 team-avatar flex items-center justify-center">
<i class="fas fa-robot text-3xl text-[#f6fc79]"></i>
</div>
<h3 class="text-xl font-bold mb-1">@bm_hacker</h3>
<p class="text-sm text-gray-300">25+ business managers running</p>
<div class="mt-4 text-[#f6fc79]">
<i class="fab fa-facebook mr-2"></i>
<i class="fas fa-code mr-2"></i>
<i class="fas fa-shield-alt"></i>
</div>
</div>
<div class="flex-shrink-0 w-64 glass-card p-6 rounded-xl text-center">
<div class="w-24 h-24 rounded-full bg-gray-800 mx-auto mb-4 team-avatar flex items-center justify-center">
<i class="fas fa-hat-wizard text-3xl text-[#f6fc79]"></i>
</div>
<h3 class="text-xl font-bold mb-1">@creative_wizard</h3>
<p class="text-sm text-gray-300">UGC that converts at 5.8% CTR</p>
<div class="mt-4 text-[#f6fc79]">
<i class="fas fa-photo-video mr-2"></i>
<i class="fas fa-magic mr-2"></i>
<i class="fas fa-eye"></i>
</div>
</div>
<div class="flex-shrink-0 w-64 glass-card p-6 rounded-xl text-center">
<div class="w-24 h-24 rounded-full bg-gray-800 mx-auto mb-4 team-avatar flex items-center justify-center">
<i class="fas fa-ghost text-3xl text-[#f6fc79]"></i>
</div>
<h3 class="text-xl font-bold mb-1">@stealth_ghost</h3>
<p class="text-sm text-gray-300">Google Ads ninja</p>
<div class="mt-4 text-[#f6fc79]">
<i class="fab fa-google mr-2"></i>
<i class="fas fa-search-dollar mr-2"></i>
<i class="fas fa-user-ninja"></i>
</div>
</div>
<div class="flex-shrink-0 w-64 glass-card p-6 rounded-xl text-center">
<div class="w-24 h-24 rounded-full bg-gray-800 mx-auto mb-4 team-avatar flex items-center justify-center">
<i class="fas fa-dragon text-3xl text-[#f6fc79]"></i>
</div>
<h3 class="text-xl font-bold mb-1">@push_dragon</h3>
<p class="text-sm text-gray-300">Push traffic dominator</p>
<div class="mt-4 text-[#f6fc79]">
<i class="fas fa-mobile-alt mr-2"></i>
<i class="fas fa-bullhorn mr-2"></i>
<i class="fas fa-coins"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Founder Section -->
<section class="py-20">
<div class="container mx-auto px-6">
<div class="glass-card rounded-xl p-8 md:p-12 max-w-4xl mx-auto">
<div class="flex flex-col md:flex-row items-center gap-8">
<div class="w-full md:w-1/3 text-center">
<div class="w-48 h-48 rounded-full bg-gray-800 mx-auto mb-4 relative overflow-hidden team-avatar pulse">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Timur" class="w-full h-full object-cover">
</div>
<h3 class="text-2xl font-bold">Timur</h3>
<p class="text-[#f6fc79]">Founder & Lead Media Buyer</p>
</div>
<div class="w-full md:w-2/3">
<h2 class="text-3xl font-bold mb-6 neon-text">MEET THE FOUNDER</h2>
<p class="text-gray-300 mb-6">Timur is the mastermind behind TMT — a top-tier media buying leader and creator of the Traffic Master course. With over 7 years of experience scaling campaigns across all major platforms, he's built a team of elite media buyers who consistently dominate their verticals.</p>
<div class="flex flex-wrap gap-4">
<a href="#" class="px-6 py-3 glass-card rounded-full glow-on-hover flex items-center gap-2">
<i class="fab fa-instagram text-[#f6fc79]"></i> Instagram
</a>
<a href="#" class="px-6 py-3 glass-card rounded-full glow-on-hover flex items-center gap-2">
<i class="fab fa-youtube text-[#f6fc79]"></i> YouTube Interview
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Block -->
<section class="py-20 bg-gradient-to-b from-[#0E0E0E] to-[#1a1a1a]">
<div class="container mx-auto px-6 text-center">
<h2 class="text-4xl md:text-5xl font-bold mb-6 neon-text">READY TO MASTER TRAFFIC WITH THE BEST?</h2>
<p class="text-xl text-gray-300 mb-10 max-w-2xl mx-auto">No forms. No resumes. Just action.</p>
<a href="#" class="px-10 py-5 bg-[#f6fc79] text-black font-bold rounded-full glow-on-hover text-xl flex items-center justify-center gap-3 mx-auto max-w-xs">
<i class="fab fa-telegram text-2xl"></i> Contact via Telegram
</a>
</div>
</section>
<!-- Tech Stack -->
<section class="py-20">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold mb-4 neon-text">OUR TECH STACK</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">Tools and platforms we use to dominate traffic</p>
</div>
<div class="flex flex-wrap justify-center gap-8 md:gap-16">
<div class="tech-icon w-20 h-20 bg-gray-800 rounded-full flex items-center justify-center">
<i class="fas fa-server text-3xl text-[#f6fc79]"></i>
</div>
<div class="tech-icon w-20 h-20 bg-gray-800 rounded-full flex items-center justify-center">
<i class="fab fa-facebook text-3xl text-[#f6fc79]"></i>
</div>
<div class="tech-icon w-20 h-20 bg-gray-800 rounded-full flex items-center justify-center">
<i class="fab fa-tiktok text-3xl text-[#f6fc79]"></i>
</div>
<div class="tech-icon w-20 h-20 bg-gray-800 rounded-full flex items-center justify-center">
<i class="fab fa-google text-3xl text-[#f6fc79]"></i>
</div>
<div class="tech-icon w-20 h-20 bg-gray-800 rounded-full flex items-center justify-center">
<i class="fas fa-robot text-3xl text-[#f6fc79]"></i>
</div>
<div class="tech-icon w-20 h-20 bg-gray-800 rounded-full flex items-center justify-center">
<i class="fas fa-mobile-alt text-3xl text-[#f6fc79]"></i>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 border-t border-gray-800">
<div class="container mx-auto px-6">
<div class="flex flex-col items-center">
<div class="flex gap-6 mb-6">
<a href="#" class="text-2xl text-gray-400 hover:text-[#f6fc79] transition-colors">
<i class="fab fa-telegram"></i>
</a>
<a href="#" class="text-2xl text-gray-400 hover:text-[#f6fc79] transition-colors">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-2xl text-gray-400 hover:text-[#f6fc79] transition-colors">
<i class="fab fa-youtube"></i>
</a>
</div>
<p class="text-gray-400">© TMT – Built to scale.</p>
</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;
if(count < target) {
counter.innerText = Math.ceil(count + increment);
setTimeout(updateCounter, 1);
} else {
counter.innerText = target;
}
}
});
// Particles effect
document.addEventListener('DOMContentLoaded', function() {
const particlesContainer = document.getElementById('particles-js');
const particleCount = 30;
for(let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.classList.add('particle');
// Random size between 2px and 5px
const size = Math.random() * 3 + 2;
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
// Random position
particle.style.left = `${Math.random() * 100}%`;
particle.style.top = `${Math.random() * 100}%`;
// Random opacity
particle.style.opacity = Math.random() * 0.5 + 0.1;
// Add floating animation with random duration and delay
particle.style.animation = `floating ${Math.random() * 10 + 5}s ease-in-out infinite`;
particle.style.animationDelay = `${Math.random() * 5}s`;
particlesContainer.appendChild(particle);
}
// Mouse follow glow effect
const glow = document.createElement('div');
glow.classList.add('fixed', 'w-64', 'h-64', 'rounded-full', 'bg-[#f6fc79]', 'opacity-10', 'blur-3xl', '-z-10', 'pointer-events-none');
document.body.appendChild(glow);
document.addEventListener('mousemove', (e) => {
glow.style.left = `${e.clientX - 128}px`;
glow.style.top = `${e.clientY - 128}px`;
});
});
// Case study filter
const filterButtons = document.querySelectorAll('#case-studies button');
filterButtons.forEach(button => {
button.addEventListener('click', () => {
filterButtons.forEach(btn => btn.classList.remove('bg-[#f6fc79]', 'text-black'));
button.classList.add('bg-[#f6fc79]', 'text-black');
// Here you would filter the case studies in a real implementation
});
});
</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/tmt41" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |