| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>SECRET TMT BASE :: ACCESS REQUIRED</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <style> |
| @import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap'); |
| |
| body { |
| font-family: 'Share Tech Mono', monospace; |
| background-color: #000; |
| color: #0f0; |
| overflow-x: hidden; |
| } |
| |
| .terminal-text { |
| white-space: pre; |
| overflow: hidden; |
| border-right: 0.15em solid #0f0; |
| animation: blink-caret 0.75s step-end infinite; |
| } |
| |
| @keyframes blink-caret { |
| from, to { border-color: transparent } |
| 50% { border-color: #0f0; } |
| } |
| |
| .glitch { |
| position: relative; |
| } |
| |
| .glitch::before, .glitch::after { |
| content: attr(data-text); |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| } |
| |
| .glitch::before { |
| left: 2px; |
| text-shadow: -2px 0 #f00; |
| clip: rect(44px, 450px, 56px, 0); |
| animation: glitch-anim 5s infinite linear alternate-reverse; |
| } |
| |
| .glitch::after { |
| left: -2px; |
| text-shadow: -2px 0 #00f; |
| clip: rect(44px, 450px, 56px, 0); |
| animation: glitch-anim2 5s infinite linear alternate-reverse; |
| } |
| |
| @keyframes glitch-anim { |
| 0% { clip: rect(31px, 9999px, 94px, 0); } |
| 10% { clip: rect(112px, 9999px, 76px, 0); } |
| 20% { clip: rect(85px, 9999px, 77px, 0); } |
| 30% { clip: rect(27px, 9999px, 97px, 0); } |
| 40% { clip: rect(64px, 9999px, 98px, 0); } |
| 50% { clip: rect(61px, 9999px, 85px, 0); } |
| 60% { clip: rect(99px, 9999px, 114px, 0); } |
| 70% { clip: rect(34px, 9999px, 115px, 0); } |
| 80% { clip: rect(98px, 9999px, 129px, 0); } |
| 90% { clip: rect(43px, 9999px, 96px, 0); } |
| 100% { clip: rect(82px, 9999px, 64px, 0); } |
| } |
| |
| @keyframes glitch-anim2 { |
| 0% { clip: rect(65px, 9999px, 119px, 0); } |
| 10% { clip: rect(66px, 9999px, 101px, 0); } |
| 20% { clip: rect(47px, 9999px, 113px, 0); } |
| 30% { clip: rect(107px, 9999px, 114px, 0); } |
| 40% { clip: rect(73px, 9999px, 141px, 0); } |
| 50% { clip: rect(105px, 9999px, 69px, 0); } |
| 60% { clip: rect(122px, 9999px, 44px, 0); } |
| 70% { clip: rect(141px, 9999px, 72px, 0); } |
| 80% { clip: rect(60px, 9999px, 61px, 0); } |
| 90% { clip: rect(132px, 9999px, 103px, 0); } |
| 100% { clip: rect(64px, 9999px, 119px, 0); } |
| } |
| |
| .file:hover { |
| transform: translateX(10px); |
| text-shadow: 0 0 10px #0f0; |
| } |
| |
| .dossier:hover { |
| background-color: rgba(15, 15, 15, 0.8); |
| border-left: 3px solid #0f0; |
| } |
| |
| .tool:hover { |
| transform: scale(1.1); |
| box-shadow: 0 0 15px rgba(0, 255, 0, 0.5); |
| } |
| |
| .access-level:hover { |
| animation: pulse 1s infinite; |
| } |
| |
| @keyframes pulse { |
| 0% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); } |
| 70% { box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); } |
| 100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); } |
| } |
| |
| .typewriter { |
| overflow: hidden; |
| border-right: 0.15em solid #0f0; |
| white-space: nowrap; |
| margin: 0 auto; |
| letter-spacing: 0.15em; |
| animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite; |
| } |
| |
| @keyframes typing { |
| from { width: 0 } |
| to { width: 100% } |
| } |
| |
| .hidden-section { |
| display: none; |
| } |
| |
| .flicker { |
| animation: flicker 3s linear infinite; |
| } |
| |
| @keyframes flicker { |
| 0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% { |
| opacity: 1; |
| } |
| 20%, 21.999%, 63%, 63.999%, 65%, 69.999% { |
| opacity: 0.4; |
| } |
| } |
| </style> |
| </head> |
| <body class="min-h-screen bg-black text-green-500"> |
| |
| <div id="access-screen" class="fixed inset-0 flex items-center justify-center bg-black z-50"> |
| <div class="text-center p-8"> |
| <div id="terminal-text" class="terminal-text text-2xl mb-8">>> IDENTIFICATION REQUIRED</div> |
| <input id="agent-name" type="text" class="bg-black border-b border-green-500 text-green-500 px-4 py-2 mb-4 w-64 focus:outline-none focus:border-green-300" placeholder="ENTER AGENT NAME"> |
| <button id="access-btn" class="bg-black text-green-500 border border-green-500 px-6 py-2 opacity-0 cursor-not-allowed" disabled>ACCESS DENIED</button> |
| </div> |
| </div> |
|
|
| |
| <div id="main-content" class="hidden"> |
| |
| <header class="border-b border-green-900 py-4 px-6 flex justify-between items-center"> |
| <div class="flex items-center"> |
| <div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div> |
| <div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div> |
| <div class="w-3 h-3 rounded-full bg-green-500"></div> |
| </div> |
| <div class="text-sm"> |
| <span id="current-agent" class="mr-4"></span> |
| <span class="text-green-700">STATUS: <span class="text-green-400">ACTIVE</span></span> |
| </div> |
| </header> |
|
|
| |
| <section id="system-intro" class="p-8 border-b border-green-900 hidden-section"> |
| <div class="max-w-4xl mx-auto"> |
| <h2 class="text-xl mb-6 glitch" data-text="> SYSTEM: TRAFFIC MASTER INITIATED">> SYSTEM: TRAFFIC MASTER INITIATED</h2> |
| <div class="mb-4"> |
| <p class="mb-2">> MODULES: <span class="text-green-300">40+</span></p> |
| <p class="mb-2">> ACCESS LEVEL: <span class="text-green-300">CLASSIFIED</span></p> |
| <p class="mb-2">> LAST UPDATE: <span class="text-green-300">24.06.2023</span></p> |
| </div> |
| <button id="show-schema" class="bg-black text-green-500 border border-green-500 px-6 py-2 mt-4 hover:bg-green-900 hover:text-white transition"> |
| OPEN MODULAR SCHEMA |
| </button> |
| </div> |
| </section> |
|
|
| |
| <section id="course-program" class="p-8 border-b border-green-900 hidden-section"> |
| <div class="max-w-4xl mx-auto"> |
| <h2 class="text-xl mb-6">> FILE: <span class="text-green-300">intel.dbr</span></h2> |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-4"> |
| <div class="file cursor-pointer transition"> |
| <p class="text-green-400">📁 base_arbitrage</p> |
| <p class="text-sm text-green-700 ml-6">> Core protocols for traffic acquisition</p> |
| </div> |
| <div class="file cursor-pointer transition"> |
| <p class="text-green-400">📁 vertical_ops</p> |
| <p class="text-sm text-green-700 ml-6">> Specialized operations by niche</p> |
| </div> |
| <div class="file cursor-pointer transition"> |
| <p class="text-green-400">📁 cpa_tactics</p> |
| <p class="text-sm text-green-700 ml-6">> Cost-per-action optimization</p> |
| </div> |
| <div class="file cursor-pointer transition"> |
| <p class="text-green-400">📁 cloaking_tech</p> |
| <p class="text-sm text-green-700 ml-6">> Advanced detection avoidance</p> |
| </div> |
| <div class="file cursor-pointer transition"> |
| <p class="text-green-400">📁 geo_strategies</p> |
| <p class="text-sm text-green-700 ml-6">> Regional deployment blueprints</p> |
| </div> |
| <div class="file cursor-pointer transition opacity-50"> |
| <p class="text-green-400">🔒 scaling_protocols.exe</p> |
| <p class="text-sm text-green-700 ml-6">> Requires LEVEL 3 clearance</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="agent-reports" class="p-8 border-b border-green-900 hidden-section"> |
| <div class="max-w-4xl mx-auto"> |
| <h2 class="text-xl mb-6">> AGENT DOSSIERS: <span class="text-green-300">OPERATION SUCCESS</span></h2> |
| <div class="overflow-x-auto"> |
| <table class="w-full"> |
| <thead> |
| <tr class="border-b border-green-900"> |
| <th class="py-2 text-left">AGENT</th> |
| <th class="py-2 text-left">MISSION</th> |
| <th class="py-2 text-left">GEO</th> |
| <th class="py-2 text-left">DURATION</th> |
| <th class="py-2 text-left">RESULT</th> |
| </tr> |
| </thead> |
| <tbody> |
| <tr class="dossier border-b border-green-900 hover:bg-gray-900 transition cursor-pointer"> |
| <td class="py-3">@linkalpha</td> |
| <td>Gambling</td> |
| <td>IN</td> |
| <td>9 days</td> |
| <td class="text-green-300">ROI +190%, $1 730</td> |
| </tr> |
| <tr class="dossier border-b border-green-900 hover:bg-gray-900 transition cursor-pointer"> |
| <td class="py-3">@darktraffic</td> |
| <td>Nutra</td> |
| <td>US</td> |
| <td>14 days</td> |
| <td class="text-green-300">ROI +320%, $4 210</td> |
| </tr> |
| <tr class="dossier border-b border-green-900 hover:bg-gray-900 transition cursor-pointer"> |
| <td class="py-3">@phantom</td> |
| <td>Forex</td> |
| <td>BR</td> |
| <td>7 days</td> |
| <td class="text-green-300">ROI +150%, $2 850</td> |
| </tr> |
| <tr class="dossier border-b border-green-900 hover:bg-gray-900 transition cursor-pointer"> |
| <td class="py-3">@stealth</td> |
| <td>Binary</td> |
| <td>TH</td> |
| <td>12 days</td> |
| <td class="text-green-300">ROI +270%, $3 400</td> |
| </tr> |
| <tr class="dossier hover:bg-gray-900 transition cursor-pointer"> |
| <td class="py-3">@ghost</td> |
| <td>Crypto</td> |
| <td>NG</td> |
| <td>5 days</td> |
| <td class="text-green-300">ROI +410%, $5 120</td> |
| </tr> |
| </tbody> |
| </table> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="equipment-panel" class="p-8 border-b border-green-900 hidden-section"> |
| <div class="max-w-4xl mx-auto"> |
| <h2 class="text-xl mb-6">> EQUIPMENT: <span class="text-green-300">OPERATIONAL TOOLS</span></h2> |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-6"> |
| <div class="tool bg-gray-900 p-4 rounded border border-green-900 text-center transition cursor-pointer"> |
| <div class="text-3xl mb-2"><i class="fas fa-chart-network"></i></div> |
| <h3 class="text-green-300 mb-1">TRACKER</h3> |
| <p class="text-xs text-green-700">Keitaro</p> |
| </div> |
| <div class="tool bg-gray-900 p-4 rounded border border-green-900 text-center transition cursor-pointer"> |
| <div class="text-3xl mb-2"><i class="fas fa-bullseye"></i></div> |
| <h3 class="text-green-300 mb-1">PRIMARY CHANNEL</h3> |
| <p class="text-xs text-green-700">FB Ads</p> |
| </div> |
| <div class="tool bg-gray-900 p-4 rounded border border-green-900 text-center transition cursor-pointer"> |
| <div class="text-3xl mb-2"><i class="fas fa-comments"></i></div> |
| <h3 class="text-green-300 mb-1">COMMUNICATION</h3> |
| <p class="text-xs text-green-700">Telegram</p> |
| </div> |
| <div class="tool bg-gray-900 p-4 rounded border border-green-900 text-center transition cursor-pointer"> |
| <div class="text-3xl mb-2"><i class="fas fa-user-secret"></i></div> |
| <h3 class="text-green-300 mb-1">STEALTH</h3> |
| <p class="text-xs text-green-700">Proxy/Antidetect</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="access-levels" class="p-8 border-b border-green-900 hidden-section"> |
| <div class="max-w-4xl mx-auto"> |
| <h2 class="text-xl mb-6">> CLEARANCE: <span class="text-green-300">ACCESS LEVELS</span></h2> |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-6"> |
| <div class="access-level bg-gray-900 p-6 rounded border border-green-900 transition cursor-pointer"> |
| <div class="flex items-center mb-4"> |
| <div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div> |
| <h3 class="text-lg">LEVEL 1</h3> |
| </div> |
| <p class="text-green-300 mb-2">OBSERVER</p> |
| <ul class="text-sm mb-4 text-green-700"> |
| <li class="mb-1">> Basic protocol access</li> |
| <li class="mb-1">> Core modules</li> |
| <li class="mb-1">> Standard support</li> |
| </ul> |
| <button class="w-full bg-black text-green-500 border border-green-500 py-2 hover:bg-green-900 transition"> |
| REQUEST ACCESS |
| </button> |
| </div> |
| <div class="access-level bg-gray-900 p-6 rounded border border-green-900 transition cursor-pointer"> |
| <div class="flex items-center mb-4"> |
| <div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div> |
| <h3 class="text-lg">LEVEL 2</h3> |
| </div> |
| <p class="text-green-300 mb-2">OPERATIVE</p> |
| <ul class="text-sm mb-4 text-green-700"> |
| <li class="mb-1">> Advanced protocols</li> |
| <li class="mb-1">> Vertical operations</li> |
| <li class="mb-1">> Priority support</li> |
| </ul> |
| <button class="w-full bg-black text-green-500 border border-green-500 py-2 hover:bg-green-900 transition"> |
| REQUEST ACCESS |
| </button> |
| </div> |
| <div class="access-level bg-gray-900 p-6 rounded border border-green-900 transition cursor-pointer"> |
| <div class="flex items-center mb-4"> |
| <div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div> |
| <h3 class="text-lg">LEVEL 3</h3> |
| </div> |
| <p class="text-green-300 mb-2">COMMANDER</p> |
| <ul class="text-sm mb-4 text-green-700"> |
| <li class="mb-1">> Full system access</li> |
| <li class="mb-1">> Scaling protocols</li> |
| <li class="mb-1">> 24/7 direct support</li> |
| </ul> |
| <button class="w-full bg-black text-green-500 border border-green-500 py-2 hover:bg-green-900 transition"> |
| REQUEST ACCESS |
| </button> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="final-challenge" class="p-8 hidden-section"> |
| <div class="max-w-4xl mx-auto text-center"> |
| <h2 class="text-xl mb-6 flicker">> FINAL WARNING: <span class="text-green-300">ONE ATTEMPT REMAINING</span></h2> |
| <p class="mb-8"><span id="agent-name-final" class="text-green-300"></span>, YOU HAVE 1 ATTEMPT. EITHER SYSTEM ENTRY OR TERMINATION.</p> |
| <button id="activate-access" class="bg-black text-green-500 border border-green-500 px-8 py-3 hover:bg-green-900 hover:text-white transition"> |
| REQUEST ACCESS ACTIVATION |
| </button> |
| </div> |
| </section> |
|
|
| |
| <footer class="border-t border-green-900 py-4 px-6 text-center text-sm text-green-700"> |
| <p>> SYSTEM STATUS: <span class="text-green-400">SECURE</span> | ENCRYPTION: <span class="text-green-400">ACTIVE</span></p> |
| <p class="mt-1">© TMT BASE OPERATIONS | ALL RIGHTS RESERVED | UNAUTHORIZED ACCESS PROHIBITED</p> |
| </footer> |
| </div> |
|
|
| <script> |
| |
| document.addEventListener('DOMContentLoaded', function() { |
| const terminalText = document.getElementById('terminal-text'); |
| const agentNameInput = document.getElementById('agent-name'); |
| const accessBtn = document.getElementById('access-btn'); |
| const mainContent = document.getElementById('main-content'); |
| const currentAgent = document.getElementById('current-agent'); |
| const agentNameFinal = document.getElementById('agent-name-final'); |
| |
| |
| setTimeout(() => { |
| terminalText.classList.remove('terminal-text'); |
| terminalText.classList.add('typewriter'); |
| }, 1000); |
| |
| |
| agentNameInput.addEventListener('input', function() { |
| if (this.value.length > 0) { |
| accessBtn.textContent = 'ACCESS GRANTED'; |
| accessBtn.classList.remove('cursor-not-allowed', 'opacity-0'); |
| accessBtn.classList.add('cursor-pointer', 'opacity-100', 'hover:bg-green-900', 'hover:text-white'); |
| accessBtn.disabled = false; |
| } else { |
| accessBtn.textContent = 'ACCESS DENIED'; |
| accessBtn.classList.add('cursor-not-allowed', 'opacity-0'); |
| accessBtn.classList.remove('cursor-pointer', 'opacity-100', 'hover:bg-green-900', 'hover:text-white'); |
| accessBtn.disabled = true; |
| } |
| }); |
| |
| |
| accessBtn.addEventListener('click', function() { |
| const agentName = agentNameInput.value.trim(); |
| if (agentName) { |
| |
| document.getElementById('access-screen').style.display = 'none'; |
| |
| |
| mainContent.classList.remove('hidden'); |
| |
| |
| currentAgent.textContent = `AGENT: ${agentName.toUpperCase()}`; |
| agentNameFinal.textContent = `${agentName.toUpperCase()}`; |
| |
| |
| document.getElementById('system-intro').style.display = 'block'; |
| |
| |
| setTimeout(() => { |
| document.getElementById('system-intro').scrollIntoView({ behavior: 'smooth' }); |
| }, 500); |
| } |
| }); |
| |
| |
| document.getElementById('show-schema').addEventListener('click', function() { |
| document.getElementById('course-program').style.display = 'block'; |
| setTimeout(() => { |
| document.getElementById('course-program').scrollIntoView({ behavior: 'smooth' }); |
| }, 100); |
| }); |
| |
| |
| window.addEventListener('scroll', function() { |
| const sections = [ |
| 'system-intro', 'course-program', 'agent-reports', |
| 'equipment-panel', 'access-levels', 'final-challenge' |
| ]; |
| |
| sections.forEach(sectionId => { |
| const section = document.getElementById(sectionId); |
| const rect = section.getBoundingClientRect(); |
| |
| if (rect.top <= window.innerHeight * 0.75 && rect.bottom >= 0) { |
| section.style.display = 'block'; |
| } |
| }); |
| }); |
| |
| |
| document.getElementById('activate-access').addEventListener('click', function() { |
| alert('ACCESS REQUEST RECEIVED\nA TMT OPERATIVE WILL CONTACT YOU SHORTLY'); |
| }); |
| |
| |
| setTimeout(() => { |
| terminalText.textContent = ">> IDENTIFICATION REQUIRED\n>> SYSTEM READY"; |
| }, 4000); |
| }); |
| </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/landspyr" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |