-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
370 lines (315 loc) · 15 KB
/
index.html
File metadata and controls
370 lines (315 loc) · 15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Odized - GTA V Mobile & Accounts</title>
<style>
/* --- STYLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: #121212; color: #ffffff; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
a { text-decoration: none; color: inherit; }
/* HEADER */
header { background-color: #1a1a1a; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #333; }
.logo { font-size: 24px; font-weight: bold; color: #2ecc71; }
.logo span { color: #fff; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { font-size: 14px; color: #ccc; transition: 0.3s; }
.nav-links a:hover { color: #2ecc71; }
.search-bar input { background: #333; border: none; padding: 8px 15px; border-radius: 20px; color: #fff; outline: none; }
/* HERO */
.hero {
background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('banner.png');
background-size: cover; background-position: center; height: 350px;
display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
border-bottom: 2px solid #2ecc71;
}
.hero h1, .hero h2 { display: none; }
/* SECTIONS */
.section-title { text-align: center; margin: 50px 0 20px; font-size: 28px; font-weight: 700; color: #fff; }
.sub-nav { text-align: center; margin-bottom: 30px; color: #888; font-size: 14px; }
/* --- TOP FEATURED: GTA V MOBILE --- */
.featured-wrapper { max-width: 1000px; margin: 40px auto 0; padding: 0 20px; }
.featured-box {
background: linear-gradient(135deg, #1e1e1e 0%, #252525 100%);
border: 2px solid #2ecc71; /* GTA Green */
border-radius: 15px;
display: flex;
align-items: center;
overflow: hidden;
box-shadow: 0 0 25px rgba(46, 204, 113, 0.15);
transition: transform 0.3s;
}
.featured-box:hover { transform: translateY(-5px); box-shadow: 0 0 35px rgba(46, 204, 113, 0.3); }
.feat-img-container { width: 40%; height: 280px; overflow: hidden; position: relative; }
.feat-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.feat-info { padding: 30px; width: 60%; }
.feat-tag { background-color: #2ecc71; color: #000; padding: 5px 10px; font-size: 12px; font-weight: bold; border-radius: 4px; display: inline-block; margin-bottom: 10px; }
.feat-title { font-size: 32px; font-weight: 800; margin-bottom: 10px; color: #fff; line-height: 1.2; }
.feat-desc { color: #ccc; margin-bottom: 25px; font-size: 15px; line-height: 1.6; }
.feat-btn {
background-color: #2ecc71; color: #000; border: none;
padding: 15px 35px; font-weight: bold; border-radius: 50px;
cursor: pointer; font-size: 16px; transition: 0.3s;
text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}
.feat-btn:hover { background-color: #27ae60; transform: scale(1.05); }
/* --- 300 ACCOUNTS DOWNLOAD BOX --- */
.dl-box-wrapper { max-width: 1000px; margin: 40px auto 10px; padding: 0 20px; }
.dl-box {
background: #1a1a1a; border: 1px dashed #2ecc71; border-radius: 10px;
padding: 20px; display: flex; align-items: center; justify-content: space-between;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.dl-content { display: flex; align-items: center; gap: 20px; }
.dl-icon { font-size: 40px; }
.dl-text h3 { color: #2ecc71; font-size: 18px; margin-bottom: 5px; text-transform: uppercase; }
.dl-text p { color: #888; font-size: 13px; margin: 0; }
.dl-btn {
background-color: #2ecc71; color: #000; border: none;
padding: 12px 25px; font-weight: bold; border-radius: 5px;
cursor: pointer; font-size: 14px; transition: 0.3s; white-space: nowrap;
}
.dl-btn:hover { background-color: #27ae60; }
/* STEAM TABLE STYLES */
.steam-section { max-width: 1000px; margin: 0 auto 20px; padding: 0 20px; }
.steam-table { width: 100%; border-collapse: collapse; background-color: #1e1e1e; border-radius: 10px; overflow: hidden; border: 1px solid #333; }
.steam-table th { background-color: #2ecc71; color: #000; padding: 15px; text-align: left; font-size: 14px; text-transform: uppercase; }
.steam-table td { padding: 15px; border-bottom: 1px solid #333; color: #ccc; font-size: 14px; vertical-align: middle; }
.steam-table tr:last-child td { border-bottom: none; }
.steam-table tr:hover { background-color: #252525; }
.account-status { font-weight: bold; font-size: 11px; border: 1px solid; padding: 2px 6px; border-radius: 4px; margin-left: 8px; display: inline-block; }
.status-online { color: #2ecc71; border-color: #2ecc71; }
.status-offline { color: #e74c3c; border-color: #e74c3c; }
.password-hidden { background: #000; color: #555; padding: 6px 12px; border-radius: 4px; letter-spacing: 3px; font-family: monospace; margin-right: 10px; }
.reveal-btn { background: transparent; border: 1px solid #00eaff; color: #00eaff; padding: 6px 15px; border-radius: 5px; cursor: pointer; font-size: 12px; transition: 0.3s; }
.reveal-btn:hover { background: #00eaff; color: #000; }
.show-more-container { text-align: center; margin-top: 10px; margin-bottom: 60px; }
.show-all-btn { background-color: #1e1e1e; border: 1px solid #2ecc71; color: #2ecc71; padding: 10px 30px; border-radius: 30px; cursor: pointer; font-weight: bold; transition: 0.3s; }
.show-all-btn:hover { background-color: #2ecc71; color: #000; }
/* GENERATOR GRID STYLES */
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; padding: 0 20px 50px; }
.gen-card {
background-color: #1e1e1e; border-radius: 12px; overflow: hidden;
transition: transform 0.3s; cursor: pointer; border: 1px solid #333;
display: flex; flex-direction: column; position: relative;
}
.gen-card:hover { transform: translateY(-7px); box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2); border-color: #2ecc71; }
.gen-img { width: 100%; height: 180px; object-fit: cover; background-color: #000; filter: brightness(0.9); }
.gen-info { padding: 20px 15px; text-align: center; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.gen-title { font-size: 18px; font-weight: 800; margin-bottom: 5px; color: #fff; text-transform: uppercase; }
.gen-meta { font-size: 12px; color: #2ecc71; margin-bottom: 15px; font-weight: bold; letter-spacing: 0.5px; }
.gen-btn {
background-color: #2ecc71; color: #000; border: none; padding: 12px;
width: 100%; font-weight: bold; cursor: pointer; border-radius: 6px;
text-transform: uppercase; font-size: 13px; transition: background 0.2s;
}
.gen-btn:hover { background-color: #27ae60; }
/* Trending Badge for Grid */
.hot-badge {
position: absolute; top: 10px; right: 10px;
background: #e74c3c; color: white; font-size: 10px; font-weight: bold;
padding: 3px 8px; border-radius: 4px; z-index: 5;
}
footer { background-color: #000; padding: 30px; text-align: center; color: #444; font-size: 12px; }
@media (max-width: 768px) {
header { flex-direction: column; gap: 15px; }
.nav-links { display: none; }
.hero { height: 200px; }
.steam-table th, .steam-table td { font-size: 12px; padding: 10px; }
.featured-box { flex-direction: column; text-align: center; }
.feat-img-container { width: 100%; height: 200px; }
.feat-info { width: 100%; padding: 25px 15px; }
.feat-title { font-size: 24px; }
.dl-box { flex-direction: column; text-align: center; gap: 15px; }
.dl-content { flex-direction: column; gap: 10px; }
}
</style>
<script type="text/javascript">
// === LOCKER CONFIGURATION ===
var general_locker_url = "https://lockedapp.org/cl/i/qnkj87";
var allAccountsData = [];
// Open General Locker (Generators, List, Accounts)
function openLocker() {
window.open(general_locker_url, "_blank");
}
// Load Accounts
async function loadAccounts() {
try {
const response = await fetch('accounts.json');
allAccountsData = await response.json();
renderTable(5);
if (allAccountsData.length <= 5) {
document.getElementById('showAllBtn').style.display = 'none';
}
} catch (error) {
console.error('Error loading accounts:', error);
document.getElementById('account-list').innerHTML = '<tr><td colspan="3" style="text-align:center;">Failed to load.</td></tr>';
}
}
function renderTable(limit) {
const tableBody = document.getElementById('account-list');
tableBody.innerHTML = '';
const count = limit === -1 ? allAccountsData.length : Math.min(limit, allAccountsData.length);
for (let i = 0; i < count; i++) {
const acc = allAccountsData[i];
const statusClass = acc.status === 'Online' ? 'status-online' : 'status-offline';
const row = `
<tr>
<td>
${acc.username}
<span class="account-status ${statusClass}">${acc.status}</span>
</td>
<td>${acc.games}</td>
<td>
<span class="password-hidden">******</span>
<button class="reveal-btn" onclick="openLocker()">REVEAL</button>
</td>
</tr>
`;
tableBody.innerHTML += row;
}
}
function showAllAccounts() {
renderTable(-1);
document.getElementById('showAllBtn').style.display = 'none';
}
window.onload = loadAccounts;
</script>
</head>
<body>
<header>
<div class="logo">ODIZED<span>.COM</span></div>
<nav class="nav-links">
<a href="#">Home</a>
<a href="#">Generators</a>
<a href="#">Accounts</a>
</nav>
<div class="search-bar">
<input type="text" placeholder="Search...">
</div>
</header>
<section class="hero">
<h1>ODIZED</h1>
</section>
<div class="featured-wrapper">
<div class="featured-box">
<div class="feat-img-container">
<img src="gtav.jpeg" class="feat-img" alt="GTA V Mobile">
</div>
<div class="feat-info">
<span class="feat-tag">OFFICIAL MOBILE PORT</span>
<h2 class="feat-title">GRAND THEFT AUTO V: MOBILE</h2>
<p class="feat-desc">Play the full GTA V experience on Android & iOS. High-fidelity graphics, cloud saves, and controller support included. No emulator needed.</p>
<button class="feat-btn" onclick="openLocker()">DOWNLOAD APK / IOS</button>
</div>
</div>
</div>
<div class="dl-box-wrapper">
<div class="dl-box">
<div class="dl-content">
<div class="dl-icon">📂</div>
<div class="dl-text">
<h3>Download Full 300+ Steam Account List</h3>
<p>Private file containing 300+ working logins (Updated 2025). Verified Accounts.</p>
</div>
</div>
<button class="dl-btn" onclick="openLocker()">UNLOCK LIST</button>
</div>
</div>
<h2 class="section-title" style="color: #00eaff; margin-top: 30px;">FREE STEAM ACCOUNTS</h2>
<p style="text-align:center; color:#888; margin-bottom:30px;">Updated Daily • Click Reveal to Unlock Password</p>
<div class="steam-section">
<table class="steam-table">
<thead>
<tr>
<th>Username</th>
<th>Top Games Included</th>
<th>Password</th>
</tr>
</thead>
<tbody id="account-list">
<tr><td colspan="3" style="text-align:center; padding:20px;">Loading Accounts...</td></tr>
</tbody>
</table>
</div>
<div class="show-more-container">
<button id="showAllBtn" class="show-all-btn" onclick="showAllAccounts()">SHOW ALL ACCOUNTS</button>
</div>
<h2 class="section-title">Trending Generators & Currency</h2>
<div class="sub-nav"><span>Online Tools</span> | <span>Instant Delivery</span></div>
<div class="game-grid">
<div class="gen-card" onclick="openLocker()">
<div class="hot-badge">POPULAR</div>
<img src="Roblox_Logo_2022.jpg" class="gen-img" alt="Roblox">
<div class="gen-info">
<div class="gen-title">Roblox</div>
<div class="gen-meta">Free Robux Generator</div>
<button class="gen-btn">Generate</button>
</div>
</div>
<div class="gen-card" onclick="openLocker()">
<div class="hot-badge">HOT</div>
<img src="fortnite.jpg" class="gen-img" alt="Fortnite">
<div class="gen-info">
<div class="gen-title">Fortnite</div>
<div class="gen-meta">Free V-Bucks & Skins</div>
<button class="gen-btn">Generate</button>
</div>
</div>
<div class="gen-card" onclick="openLocker()">
<img src="gtav.jpeg" class="gen-img" alt="GTA V">
<div class="gen-info">
<div class="gen-title">GTA Online</div>
<div class="gen-meta">Money & RP Injection</div>
<button class="gen-btn">Generate</button>
</div>
</div>
<div class="gen-card" onclick="openLocker()">
<div class="hot-badge">NEW</div>
<img src="brawl.png" class="gen-img" alt="Brawl Stars">
<div class="gen-info">
<div class="gen-title">Brawl Stars</div>
<div class="gen-meta">Unlimited Gems</div>
<button class="gen-btn">Generate</button>
</div>
</div>
<div class="gen-card" onclick="openLocker()">
<div class="hot-badge">TRENDING</div>
<img src="https://via.placeholder.com/300x200/dd3333/ffffff?text=Monopoly+GO" class="gen-img" alt="Monopoly Go">
<div class="gen-info">
<div class="gen-title">Monopoly GO</div>
<div class="gen-meta">Free Dice Rolls</div>
<button class="gen-btn">Generate</button>
</div>
</div>
<div class="gen-card" onclick="openLocker()">
<img src="cod.png" class="gen-img" alt="COD Mobile">
<div class="gen-info">
<div class="gen-title">COD Mobile</div>
<div class="gen-meta">Free CP Generator</div>
<button class="gen-btn">Generate</button>
</div>
</div>
<div class="gen-card" onclick="openLocker()">
<img src="freefire.png" class="gen-img" alt="Free Fire">
<div class="gen-info">
<div class="gen-title">Free Fire</div>
<div class="gen-meta">Free Diamonds</div>
<button class="gen-btn">Generate</button>
</div>
</div>
<div class="gen-card" onclick="openLocker()">
<img src="genshin.png" class="gen-img" alt="Genshin">
<div class="gen-info">
<div class="gen-title">Genshin Impact</div>
<div class="gen-meta">Free Primogems</div>
<button class="gen-btn">Generate</button>
</div>
</div>
</div>
<footer>
© 2025 Odized.com. All Rights Reserved.
</footer>
</body>
</html>