-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
204 lines (179 loc) · 7.19 KB
/
index.html
File metadata and controls
204 lines (179 loc) · 7.19 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
<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>N60 Hub | Download Center</title>
<style>
:root { --neon: #00ff6a; --bg: #050505; --card: #0d0d0d; }
* { box-sizing: border-box; font-family: 'Arial Black', sans-serif; }
body {
background: var(--bg);
color: white;
direction: rtl;
margin: 0;
overflow-x: hidden;
background-image: radial-gradient(circle at center, #111 0%, #050505 100%);
}
/* خلفية الأرقام المتحركة */
.matrix-bg {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
z-index: -1;
font-size: 20px;
color: rgba(0, 255, 106, 0.05);
user-select: none;
overflow: hidden;
display: flex;
justify-content: space-around;
}
.matrix-column {
display: flex;
flex-direction: column;
animation: moveDown 5s linear infinite;
}
@keyframes moveDown {
0% { transform: translateY(-100%); }
100% { transform: translateY(100%); }
}
.container { max-width: 1000px; margin: auto; padding: 40px 20px; text-align: center; }
header h1 { font-size: 4.5rem; color: var(--neon); text-shadow: 0 0 30px var(--neon); margin: 0; }
header p { font-size: 1.5rem; opacity: 0.6; margin-top: -10px; letter-spacing: 2px; }
/* شبكة الهاكات */
.hack-grid {
display: flex;
flex-direction: column;
gap: 30px;
margin-top: 50px;
align-items: center;
}
.hack-card {
background: var(--card);
border: 2px solid #1a1a1a;
border-radius: 30px;
width: 100%;
display: flex;
align-items: center;
padding: 25px;
transition: 0.4s;
position: relative;
overflow: hidden;
}
.hack-card:hover {
border-color: var(--neon);
transform: scale(1.02);
box-shadow: 0 0 40px rgba(0, 255, 106, 0.15);
}
.hack-img {
width: 120px;
height: 120px;
border-radius: 20px;
background: #1a1a1a;
margin-left: 25px;
object-fit: cover;
border: 1px solid var(--neon);
}
.hack-info { flex-grow: 1; text-align: right; }
.hack-info h2 { font-size: 2.5rem; margin: 0; color: #fff; }
.hack-info span { color: var(--neon); font-size: 1.1rem; }
/* أزرار التحميل */
.dl-options { display: flex; gap: 15px; margin-top: 15px; }
.btn-dl {
padding: 15px 30px;
border-radius: 12px;
text-decoration: none;
font-weight: 900;
font-size: 1.2rem;
transition: 0.3s;
display: flex;
align-items: center;
gap: 10px;
}
.ios-btn { background: white; color: black; border: 2px solid white; }
.ios-btn:hover { background: #ddd; }
.and-btn { background: var(--neon); color: black; border: 2px solid var(--neon); }
.and-btn:hover { background: #00cc55; }
/* النسخة المحترفة */
.version-tag {
position: absolute;
top: 15px; left: 20px;
background: rgba(0,255,106,0.1);
color: var(--neon);
padding: 5px 15px;
border-radius: 50px;
font-size: 0.9rem;
border: 1px solid var(--neon);
}
@media (max-width: 768px) {
header h1 { font-size: 3rem; }
.hack-card { flex-direction: column; text-align: center; }
.hack-img { margin-left: 0; margin-bottom: 15px; }
.hack-info { text-align: center; }
.dl-options { flex-direction: column; width: 100%; }
}
</style>
</head>
<body>
<div class="matrix-bg" id="matrix"></div>
<div class="container">
<header>
<h1>N60 Hub / Download</h1>
<p>ADVANCED EXPLOIT DISTRIBUTION SYSTEM</p>
</header>
<div class="hack-grid">
<div class="hack-card">
<div class="version-tag">v2.656</div>
<img src="https://delta-executor.com/wp-content/uploads/2023/11/delta-executor-logo.png" alt="Delta" class="hack-img">
<div class="hack-info">
<h2>Delta Executor</h2>
<span>الأقوى عالمياً للأجهزة المتوسطة</span>
<div class="dl-options">
<a href="itms-services://?action=download-manifest&url=https://delta.bz/manifest.plist" class="btn-dl ios-btn">iPhone / iOS (Direct) 🍎</a>
<a href="https://delta-executor.com/Delta.apk" class="btn-dl and-btn">Android (APK) 🤖</a>
</div>
</div>
</div>
<div class="hack-card">
<div class="version-tag">v1.2</div>
<img src="https://skibx.com/logo.png" alt="Skibx" class="hack-img">
<div class="hack-info">
<h2>Skibx Executor</h2>
<span>الخيار الأول لمستخدمي iOS</span>
<div class="dl-options">
<a href="itms-services://?action=download-manifest&url=https://skibx.com/ota.plist" class="btn-dl ios-btn">iPhone / iOS (Direct) 🍎</a>
<a href="https://skibx.com/download.apk" class="btn-dl and-btn">Android (APK) 🤖</a>
</div>
</div>
</div>
<div class="hack-card">
<div class="version-tag">v3.0</div>
<img src="https://ronix.info/logo.png" alt="Ronix" class="hack-img">
<div class="hack-info">
<h2>Ronix Executor</h2>
<span>أداء فائق واستقرار تام</span>
<div class="dl-options">
<a href="itms-services://?action=download-manifest&url=https://ronix.info/install.plist" class="btn-dl ios-btn">iPhone / iOS (Direct) 🍎</a>
<a href="https://ronix.info/Ronix.apk" class="btn-dl and-btn">Android (APK) 🤖</a>
</div>
</div>
</div>
</div>
</div>
<script>
// توليد تأثير الأرقام 12 122
const matrix = document.getElementById('matrix');
const columns = window.innerWidth / 30;
for (let i = 0; i < columns; i++) {
const col = document.createElement('div');
col.className = 'matrix-column';
col.style.animationDelay = Math.random() * 5 + 's';
let content = "";
for(let j=0; j<20; j++) {
content += "12<br>122<br>";
}
col.innerHTML = content;
matrix.appendChild(col);
}
</script>
</body>
</html>