-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
390 lines (367 loc) · 9.48 KB
/
index.html
File metadata and controls
390 lines (367 loc) · 9.48 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#d40000" />
<title>🔴 D-Red-Bot | Smart Windows Utility by Quick Red Tech</title>
<!-- SEO / OpenGraph omitted for brevity (keep your original meta tags) -->
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
*{margin:0;padding:0;box-sizing:border-box;font-family:"Orbitron",Poppins,monospace;}
body{
background:#050505;
color:#eee;
overflow-x:hidden;
scroll-behavior:smooth;
}
/* ===== MENU BAR ===== */
nav{
position:fixed;
top:0;
width:100%;
background:rgba(10,10,10,0.8);
border-bottom:1px solid rgba(255,0,0,0.3);
box-shadow:0 0 20px rgba(255,0,0,0.3);
backdrop-filter:blur(10px);
display:flex;
align-items:center;
justify-content:space-between;
padding:0.7rem 1.4rem;
z-index:999;
transition:all 0.3s ease;
}
nav .logo-text{
font-size:1.6rem;
font-weight:700;
color:#ff3333;
text-shadow:0 0 15px #ff0000;
letter-spacing:1px;
}
nav ul{
list-style:none;
display:flex;
gap:1.4rem;
}
nav ul li a{
color:#fff;
text-decoration:none;
font-size:0.95rem;
transition:all 0.3s ease;
position:relative;
}
nav ul li a::after{
content:"";
position:absolute;
bottom:-5px;
left:0;
width:0%;
height:2px;
background:#ff3333;
box-shadow:0 0 10px #ff3333;
transition:width 0.3s ease;
}
nav ul li a:hover::after{
width:100%;
}
nav ul li a:hover{
color:#ff3333;
}
/* Mobile toggle */
.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}
.menu-toggle span{
height:3px;
width:25px;
background:#ff3333;
margin:4px 0;
border-radius:10px;
transition:0.3s;
}
@media(max-width:768px){
nav ul{
position:absolute;
top:60px;
left:0;
width:100%;
background:rgba(5,5,5,0.95);
flex-direction:column;
align-items:center;
gap:1rem;
padding:1rem 0;
max-height:0;
overflow:hidden;
transition:max-height 0.4s ease;
}
nav ul.active{
max-height:300px;
}
.menu-toggle{
display:flex;
}
}
/* ===== HEADER / HERO ===== */
header{
text-align:center;
padding:6rem 1rem 2rem;
}
.logo{
font-size:3.5rem;
text-shadow:0 0 25px #ff1a1a;
animation:pulse 2s infinite alternate;
}
h1{
font-size:2.6rem;
color:#fff;
margin:.5rem 0;
text-shadow:0 0 20px #ff3333;
}
.highlight{color:#ff3333;font-weight:600;}
p{line-height:1.6;}
.btn{
display:inline-block;
margin-top:1.4rem;
padding:0.9rem 1.8rem;
border-radius:60px;
text-decoration:none;
background:linear-gradient(90deg,#d40000,#ff3333);
color:#fff;
font-weight:700;
letter-spacing:.5px;
box-shadow:0 0 25px #ff0000;
position:relative;
overflow:hidden;
transition:.3s ease;
}
.btn::after{
content:"";
position:absolute;
top:0;left:-100%;
width:100%;height:100%;
background:rgba(255,255,255,0.2);
transform:skewX(-45deg);
transition:all .4s ease;
}
.btn:hover::after{left:200%;}
.btn:hover{
transform:scale(1.08);
box-shadow:0 0 45px #ff3333;
}
/* ===== BOOT CONSOLE ===== */
.boot-section{
display:flex;
justify-content:center;
align-items:center;
margin:2rem auto;
}
.boot-console{
width:90%;
max-width:800px;
height:260px;
background:#000;
border:1px solid #ff1a1a;
border-radius:10px;
box-shadow:0 0 40px #d40000;
padding:1rem;
color:#00ff88;
font-family:"Courier New",monospace;
font-size:0.9rem;
overflow-y:auto;
position:relative;
}
.boot-console::before{
content:"🔴 SYSTEM CONSOLE";
position:absolute;
top:-28px;
left:10px;
font-size:0.8rem;
color:#ff3333;
text-shadow:0 0 8px #ff0000;
}
/* ===== SECTIONS ===== */
.section{
max-width:800px;
margin:2.2rem auto;
padding:1.5rem;
background:rgba(25,25,25,0.8);
border:1px solid rgba(255,0,0,0.3);
border-radius:16px;
box-shadow:0 0 35px rgba(255,0,0,0.2);
transform:translateY(40px);
opacity:0;
animation:slideUp 1s ease forwards;
}
h2{
color:#ff3333;
text-shadow:0 0 10px #ff0000;
margin-bottom:1rem;
}
ul{list-style:none;padding-left:0;}
ul li{padding:.45rem 0;}
code{
display:block;
background:#0b0b0b;
color:#00ff88;
padding:1rem;
border-radius:8px;
margin:1rem 0;
box-shadow:inset 0 0 10px #111;
overflow-x:auto;
}
/* ===== FOOTER ===== */
footer{
text-align:center;
padding:2rem 1rem;
font-size:.9rem;
color:#bbb;
border-top:1px solid rgba(255,0,0,0.3);
background:rgba(10,10,10,0.7);
backdrop-filter:blur(10px);
}
footer em{color:#ff1a1a;}
/* ===== BACKGROUND FX ===== */
.bg-lines::before,.bg-lines::after{
content:"";
position:fixed;
top:0;left:0;
width:200%;height:200%;
background:repeating-linear-gradient(0deg,rgba(255,0,0,0.05),rgba(255,0,0,0.05) 2px,transparent 2px,transparent 40px);
transform:rotate(45deg);
animation:moveLines 18s linear infinite;
z-index:-2;
}
@keyframes moveLines{
from{transform:rotate(45deg) translateY(0);}
to{transform:rotate(45deg) translateY(-300px);}
}
.bg-glow{
position:fixed;
top:-100px;left:-100px;
width:400px;height:400px;
background:radial-gradient(circle,#d40000,transparent 70%);
filter:blur(160px);
animation:floatGlow 10s ease-in-out infinite alternate;
z-index:-1;
}
@keyframes floatGlow{
0%{transform:translate(0,0);}
100%{transform:translate(200px,200px);}
}
/* ===== ANIMATIONS ===== */
@keyframes pulse{from{text-shadow:0 0 10px #ff1a1a;}to{text-shadow:0 0 30px #ff4d4d;}}
@keyframes slideUp{to{opacity:1;transform:translateY(0);}}
</style>
</head>
<body>
<div class="bg-lines"></div>
<div class="bg-glow"></div>
<!-- ===== MENU BAR ===== -->
<nav>
<div class="logo-text">D-Red-Bot</div>
<div class="menu-toggle" id="menu-toggle">
<span></span><span></span><span></span>
</div>
<ul id="menu">
<li><a href="#overview">Overview</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#how">How to Run</a></li>
<li><a href="#dev">Developer</a></li>
<li><a href="https://raw.githubusercontent.com/QRTQuick/D-Red-Bot/master/log_mem_address.exe">Download</a></li>
</ul>
</nav>
<header>
<div class="logo">🔴</div>
<h1>D-Red-Bot</h1>
<p>Advanced Windows Utility — CLI + GUI Fusion | <span class="highlight">Quick Red Tech</span></p>
<a href="https://raw.githubusercontent.com/QRTQuick/D-Red-Bot/master/log_mem_address.exe" class="btn">⬇ Download EXE</a>
</header>
<section class="boot-section">
<div id="boot-screen" class="boot-console"></div>
</section>
<section id="overview" class="section">
<h2>🧠 Overview</h2>
<p><strong>D-Red-Bot</strong> is a futuristic system utility built in C++ by <strong>Chisom Life Eke</strong> under <strong>Quick Red Tech</strong>. It simulates an intelligent boot interface while performing live memory, heap, and file tracking — a hybrid <span class="highlight">CLI x GUI</span> performance experience.</p>
</section>
<section id="features" class="section">
<h2>⚙️ Core Features</h2>
<ul>
<li>🧩 Predictive memory tracking visualization</li>
<li>📂 Real-time file buffer scanning</li>
<li>🧠 Smart boot log simulation</li>
<li>🎛️ GUI toggle and color customizer</li>
<li>⚡ Native Windows API performance</li>
</ul>
</section>
<section id="how" class="section">
<h2>🚀 How to Run</h2>
<code>
git clone https://github.com/QRTQuick/D-Red-Bot.git<br>
cd D-Red-Bot<br>
g++ D-Red-Bot.cpp -o D-Red-Bot.exe<br>
D-Red-Bot.exe
</code>
<p>After compilation, the boot animation runs automatically — use the in-console menu to perform scans and memory predictions.</p>
</section>
<section id="dev" class="section">
<h2>💡 Developer</h2>
<p><strong>Chisom Life Eke</strong> — Lead Developer & Founder, <strong>Quick Red Tech</strong>.</p>
<p>Creator of <strong>StackCheckMate</strong> and <strong>RedMaxima</strong>. Passionate about merging power, design, and intelligence in system software.</p>
<a href="mailto:quickredtech@gmail.com" class="btn">📧 Contact</a>
</section>
<footer>
<p>© 2025 Quick Red Tech. All Rights Reserved.</p>
<p><em>“Innovation through intelligent code — one system at a time.”</em></p>
</footer>
<script>
// Boot console animation
const bootLines=[
"Initializing D-Red-Bot kernel modules...",
"Loading AI predictive tracker...",
"Engaging Windows memory bridge...",
"Calibrating real-time heap observer...",
"Injecting Red-CLI subsystem...",
"Starting secure performance engine...",
"System boot complete ✅",
"Awaiting user commands..."
];
const boot=document.getElementById("boot-screen");
let i=0;
function runBoot(){
boot.innerHTML="";
i=0;
function next(){
if(i<bootLines.length){
const l=document.createElement("div");
l.textContent="[SYS] "+bootLines[i];
boot.appendChild(l);
boot.scrollTop=boot.scrollHeight;
i++;
setTimeout(next,600);
}else{
const c=document.createElement("span");
c.textContent=">";
c.style.color="#ff3333";
c.classList.add("blink");
boot.appendChild(c);
}
}
next();
}
document.addEventListener("DOMContentLoaded",runBoot);
// Blink cursor
const style=document.createElement('style');
style.innerHTML=`.blink{animation:blink 1s steps(1) infinite;}@keyframes blink{50%{opacity:0;}}`;
document.head.appendChild(style);
// Menu toggle for mobile
const toggle=document.getElementById("menu-toggle");
const menu=document.getElementById("menu");
toggle.addEventListener("click",()=>{
menu.classList.toggle("active");
toggle.classList.toggle("active");
});
</script>
</body>
</html>