File size: 12,460 Bytes
adcf683
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>XORTRON 3.0 - Cybernetic Criminal Computing Corporation</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: #0a0a1a;
            color: #00ff9d;
            overflow-x: hidden;
        }
        
        .cyber-border {
            position: relative;
        }
        
        .cyber-border::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00ff9d, #001aff, #ff00f2);
            z-index: -1;
            border-radius: inherit;
            animation: borderAnimation 4s linear infinite;
        }
        
        @keyframes borderAnimation {
            0% { filter: blur(5px); opacity: 0.7; }
            50% { filter: blur(3px); opacity: 1; }
            100% { filter: blur(5px); opacity: 0.7; }
        }
        
        .matrix-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.1;
            pointer-events: none;
        }
        
        .typing-cursor {
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        
        .progress-bar {
            height: 6px;
            background: linear-gradient(90deg, #00ff9d, #001aff);
            animation: progress 2s ease-in-out infinite;
        }
        
        @keyframes progress {
            0% { width: 0%; }
            50% { width: 100%; }
            100% { width: 0%; }
        }
    </style>
</head>
<body>
    <canvas id="matrixCanvas" class="matrix-bg"></canvas>
    
    <div class="container mx-auto px-4 py-8 max-w-4xl">
        <!-- Header -->
        <header class="cyber-border rounded-lg p-4 mb-8">
            <div class="bg-gray-900 rounded-lg p-6">
                <div class="flex flex-col md:flex-row justify-between items-center">
                    <div class="flex items-center mb-4 md:mb-0">
                        <i class="fas fa-skull text-3xl text-purple-500 mr-3"></i>
                        <h1 class="text-2xl md:text-3xl font-bold text-transparent bg-clip-text bg-gradient-to-r from-green-400 via-blue-500 to-purple-600">
                            XORTRON 3.0
                        </h1>
                    </div>
                    <div class="flex items-center space-x-4">
                        <span class="text-sm bg-black px-3 py-1 rounded-full border border-purple-500">FREE</span>
                        <span class="text-sm bg-black px-3 py-1 rounded-full border border-blue-500">NO LOGIN</span>
                        <span class="text-sm bg-black px-3 py-1 rounded-full border border-green-500">UNLIMITED</span>
                    </div>
                </div>
                <p class="mt-4 text-gray-400">
                    Presented by the <span class="text-yellow-400">Cybernetic Criminal Computing Corporation</span>
                </p>
            </div>
        </header>
        
        <!-- Main Content -->
        <main class="cyber-border rounded-lg p-4 mb-8">
            <div class="bg-gray-900 rounded-lg p-6">
                <div class="mb-6">
                    <h2 class="text-xl font-bold mb-4 text-blue-400">CRIMINAL COMPUTE INTERFACE</h2>
                    <div class="bg-black p-4 rounded-lg border border-gray-800">
                        <div class="flex justify-between items-center mb-2">
                            <div class="flex space-x-2">
                                <div class="w-3 h-3 rounded-full bg-red-500"></div>
                                <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
                                <div class="w-3 h-3 rounded-full bg-green-500"></div>
                            </div>
                            <div class="text-xs text-gray-500">TERMINAL_ACCESS_ACTIVE</div>
                        </div>
                        <div class="h-64 overflow-y-auto font-mono text-sm mb-2 p-2 bg-gray-800 rounded border border-gray-700">
                            <p class="text-green-400">> XORTRON_INITIALIZING...</p>
                            <p class="text-green-400">> SYSTEM_CHECK_COMPLETE</p>
                            <p class="text-green-400">> CRYPTO_MINING_MODULE_DISABLED</p>
                            <p class="text-green-400">> USER_TRACKING_DISABLED</p>
                            <p class="text-blue-400">> WELCOME_ANON_USER_#<?php echo rand(10000,99999); ?></p>
                            <p class="text-white">> READY_FOR_INPUT<span class="typing-cursor">_</span></p>
                        </div>
                        <div class="flex">
                            <input type="text" class="flex-grow bg-black text-green-400 border border-gray-700 px-3 py-2 rounded-l focus:outline-none focus:border-blue-500" placeholder="ENTER_COMMAND_HERE">
                            <button class="bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-r">
                                <i class="fas fa-terminal"></i> EXECUTE
                            </button>
                        </div>
                    </div>
                </div>
                
                <div class="mb-6">
                    <h2 class="text-xl font-bold mb-4 text-purple-400">QUEUE STATUS</h2>
                    <div class="bg-black p-4 rounded-lg border border-gray-800">
                        <div class="flex justify-between mb-2">
                            <span class="text-sm text-gray-400">POSITION IN QUEUE:</span>
                            <span class="text-yellow-400">#<?php echo rand(50,250); ?></span>
                        </div>
                        <div class="h-2 bg-gray-800 rounded-full mb-2">
                            <div class="progress-bar rounded-full"></div>
                        </div>
                        <div class="text-xs text-gray-400 text-center">ESTIMATED WAIT TIME: ~<?php echo rand(1,15); ?> MINUTES</div>
                    </div>
                </div>
                
                <div class="mb-6">
                    <h2 class="text-xl font-bold mb-4 text-red-400">DONATION PLEA</h2>
                    <div class="bg-black p-4 rounded-lg border border-gray-800">
                        <div class="flex flex-col md:flex-row md:items-center">
                            <div class="flex-grow mb-4 md:mb-0">
                                <p class="text-gray-300 mb-2">Finding yourself in a long queue? Consider donating so we can scale and remain 100% free for all.</p>
                                <p class="text-yellow-400 font-bold">"I'm sure even a low-life deadbeat freeloader like yourself can at least throw some spare change right?"</p>
                            </div>
                            <div class="flex-shrink-0">
                                <a href="https://ko-fi.com/xortron" target="_blank" class="inline-block bg-gradient-to-r from-purple-600 to-blue-500 text-white px-6 py-3 rounded-lg hover:from-purple-700 hover:to-blue-600 transition-all">
                                    <i class="fas fa-heart mr-2"></i> Support Xortron
                                </a>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </main>
        
        <!-- Footer -->
        <footer class="text-center text-gray-500 text-sm">
            <p>Cybernetic Criminal Computing Corporation © <?php echo date('Y'); ?></p>
            <p class="mt-1">"We steal from the rich and give to nobody."</p>
            <div class="flex justify-center space-x-4 mt-4">
                <a href="#" class="text-gray-400 hover:text-blue-400"><i class="fab fa-github"></i></a>
                <a href="#" class="text-gray-400 hover:text-red-400"><i class="fab fa-twitter"></i></a>
                <a href="https://ko-fi.com/xortron" target="_blank" class="text-gray-400 hover:text-yellow-400"><i class="fas fa-coffee"></i></a>
            </div>
        </footer>
    </div>

    <script>
        // Matrix background effect
        const canvas = document.getElementById('matrixCanvas');
        const ctx = canvas.getContext('2d');
        
        canvas.width = window.innerWidth;
        canvas.height = window.innerHeight;
        
        const katakana = 'アァカサタナハマヤャラワガザダバパイィキシチニヒミリヰギジヂビピウゥクスツヌフムユュルグズブヅプエェケセテネヘメレヱゲゼデベペオォコソトノホモヨョロヲゴゾドボポヴッン';
        const latin = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
        const nums = '0123456789';
        const symbols = '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~';
        
        const alphabet = katakana + latin + nums + symbols;
        
        const fontSize = 16;
        const columns = canvas.width / fontSize;
        
        const rainDrops = [];
        
        for (let x = 0; x < columns; x++) {
            rainDrops[x] = 1;
        }
        
        const draw = () => {
            ctx.fillStyle = 'rgba(0, 0, 0, 0.05)';
            ctx.fillRect(0, 0, canvas.width, canvas.height);
            
            ctx.fillStyle = '#00FF9D';
            ctx.font = fontSize + 'px monospace';
            
            for (let i = 0; i < rainDrops.length; i++) {
                const text = alphabet.charAt(Math.floor(Math.random() * alphabet.length));
                ctx.fillText(text, i * fontSize, rainDrops[i] * fontSize);
                
                if (rainDrops[i] * fontSize > canvas.height && Math.random() > 0.975) {
                    rainDrops[i] = 0;
                }
                rainDrops[i]++;
            }
        };
        
        setInterval(draw, 30);
        
        window.addEventListener('resize', () => {
            canvas.width = window.innerWidth;
            canvas.height = window.innerHeight;
        });
        
        // Simulate typing effect
        const terminal = document.querySelector('.font-mono');
        const messages = [
            "> SCANNING_NETWORK...",
            "> BYPASSING_SECURITY_PROTOCOLS...",
            "> ENCRYPTION_KEYS_GENERATED",
            "> ANONYMOUS_PROXY_ESTABLISHED",
            "> READY_FOR_ILLICIT_ACTIVITIES"
        ];
        
        let currentMessage = 0;
        
        function typeNextMessage() {
            if (currentMessage < messages.length) {
                const p = document.createElement('p');
                p.className = "text-green-400";
                terminal.appendChild(p);
                
                let i = 0;
                const typing = setInterval(() => {
                    p.textContent = messages[currentMessage].substring(0, i);
                    i++;
                    if (i > messages[currentMessage].length) {
                        clearInterval(typing);
                        currentMessage++;
                        setTimeout(typeNextMessage, 1000);
                    }
                }, 50);
            }
        }
        
        setTimeout(typeNextMessage, 2000);
    </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=6ee5ali/tekalis" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>