|
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8"> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
6 | | - <title>Pobfus-1.0.6 // tenringsofdoom1x</title> |
| 6 | + <title>Pobfus v1.0.61 // tenringsofdoom1x</title> |
7 | 7 | <style> |
8 | 8 | :root { --bg: #0d1117; --sub: #161b22; --brd: #30363d; --txt: #c9d1d9; --acc: #58a6ff; --grn: #238636; } |
9 | | - body { background: var(--bg); color: var(--txt); font-family: 'Courier New', monospace; margin: 0; display: flex; flex-direction: column; align-items: center; min-height: 100vh; } |
10 | | - .header { width: 100%; background: var(--sub); padding: 10px 20px; border-bottom: 1px solid var(--brd); display: flex; justify-content: space-between; align-items: center; box-sizing: border-box; } |
11 | | - .badge { background: rgba(35, 134, 54, 0.1); color: #3fb950; border: 1px solid rgba(63, 185, 80, 0.3); padding: 2px 8px; border-radius: 4px; font-size: 10px; letter-spacing: 1px; } |
12 | | - .container { width: 95%; max-width: 900px; margin-top: 30px; border: 1px solid var(--brd); background: var(--sub); border-radius: 4px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } |
13 | | - .logo-box { padding: 15px; background: #010409; font-size: 8px; color: var(--acc); white-space: pre; text-align: center; border-bottom: 1px solid var(--brd); overflow-x: auto; } |
14 | | - .editor { padding: 15px; display: flex; flex-direction: column; gap: 10px; } |
15 | | - textarea { width: 100%; height: 200px; background: #010409; color: #8b949e; border: 1px solid var(--brd); padding: 10px; font-size: 12px; box-sizing: border-box; resize: none; outline: none; transition: 0.2s; } |
| 9 | + body { background: var(--bg); color: var(--txt); font-family: 'Segoe UI', sans-serif; margin: 0; display: flex; flex-direction: column; align-items: center; min-height: 100vh; } |
| 10 | + .header { width: 100%; background: var(--sub); padding: 12px 24px; border-bottom: 1px solid var(--brd); display: flex; justify-content: space-between; align-items: center; box-sizing: border-box; } |
| 11 | + .badge { background: rgba(88, 166, 255, 0.1); color: var(--acc); border: 1px solid rgba(88, 166, 255, 0.3); padding: 3px 12px; border-radius: 20px; font-size: 11px; font-weight: bold; } |
| 12 | + .container { width: 95%; max-width: 950px; margin: 30px 0; border: 1px solid var(--brd); background: var(--sub); border-radius: 8px; overflow: hidden; box-shadow: 0 15px 50px rgba(0,0,0,0.6); } |
| 13 | + |
| 14 | + #logo { |
| 15 | + padding: 25px; |
| 16 | + background: #010409; |
| 17 | + color: var(--acc); |
| 18 | + font-family: "Courier New", monospace; |
| 19 | + font-size: 9px; |
| 20 | + line-height: 1.2; |
| 21 | + white-space: pre; |
| 22 | + overflow-x: auto; |
| 23 | + text-align: center; |
| 24 | + border-bottom: 1px solid var(--brd); |
| 25 | + margin: 0; |
| 26 | + } |
| 27 | + |
| 28 | + .editor { padding: 20px; display: flex; flex-direction: column; gap: 15px; } |
| 29 | + textarea { width: 100%; height: 230px; background: #010409; color: #8b949e; border: 1px solid var(--brd); border-radius: 6px; padding: 15px; font-family: 'Consolas', monospace; font-size: 13px; box-sizing: border-box; resize: none; outline: none; } |
16 | 30 | textarea:focus { border-color: var(--acc); color: #fff; } |
17 | | - .controls { display: flex; gap: 8px; flex-wrap: wrap; } |
18 | | - .btn { padding: 8px 16px; border-radius: 3px; cursor: pointer; border: 1px solid var(--brd); background: #21262d; color: #c9d1d9; font-size: 11px; font-weight: bold; text-transform: uppercase; } |
| 31 | + |
| 32 | + .controls { display: flex; gap: 12px; flex-wrap: wrap; } |
| 33 | + .btn { padding: 10px 20px; border-radius: 5px; cursor: pointer; border: 1px solid var(--brd); background: #21262d; color: #c9d1d9; font-size: 12px; font-weight: bold; text-transform: uppercase; transition: 0.2s; } |
19 | 34 | .btn:hover { background: #30363d; border-color: #8b949e; } |
20 | 35 | .btn-prim { background: var(--grn); color: white; border: none; } |
21 | | - .btn-prim:disabled { opacity: 0.5; cursor: wait; } |
22 | | - #toast { position: fixed; top: 20px; background: var(--acc); color: #000; padding: 5px 15px; border-radius: 2px; display: none; font-weight: bold; z-index: 99; font-size: 12px; } |
| 36 | + .btn-prim:disabled { opacity: 0.5; cursor: not-allowed; filter: grayscale(1); } |
| 37 | + |
| 38 | + #toast { position: fixed; top: 25px; background: var(--acc); color: #0d1117; padding: 10px 25px; border-radius: 4px; display: none; font-weight: 900; z-index: 1000; font-size: 12px; } |
23 | 39 | </style> |
24 | 40 | </head> |
25 | 41 | <body> |
26 | 42 |
|
27 | | -<div id="toast">SYSTEM_ONLINE</div> |
| 43 | +<div id="toast">VERSION_1.0.61_LOADED</div> |
28 | 44 |
|
29 | 45 | <div class="header"> |
30 | | - <div style="font-weight: bold; font-size: 14px; letter-spacing: 2px;">POBFUS_v1.0.6</div> |
31 | | - <div class="badge">STABLE_BUILD</div> |
| 46 | + <div style="font-weight: 800; font-size: 18px; letter-spacing: 1.5px;">POBFUS <span style="color:var(--acc)">v1.0.61</span></div> |
| 47 | + <div class="badge">LAG-SYNC ACTIVE</div> |
32 | 48 | </div> |
33 | 49 |
|
34 | 50 | <div class="container"> |
35 | | - <div class="logo-box" id="logo"></div> |
| 51 | + <pre id="logo"></pre> |
36 | 52 | <div class="editor"> |
37 | | - <textarea id="in" placeholder="-- [ INPUT_BUFFER ] -- Paste source here..."></textarea> |
38 | | - |
| 53 | + <textarea id="in" placeholder="-- [ INPUT_BUFFER ]: Paste Lua code here..."></textarea> |
39 | 54 | <div class="controls"> |
40 | | - <button class="btn btn-prim" id="go" onclick="run()">PROTECT_SOURCE</button> |
41 | | - <button class="btn" onclick="test()">LOAD_SAMPLE</button> |
42 | | - <button class="btn" onclick="copy()">COPY_HEX</button> |
43 | | - <button class="btn" id="dl" style="display:none" onclick="save()">DOWNLOAD_.LUA</button> |
| 55 | + <button class="btn btn-prim" id="go" onclick="run()">Protect Source</button> |
| 56 | + <button class="btn" onclick="test()">Load Sample</button> |
| 57 | + <button class="btn" onclick="copy()">Copy Output</button> |
| 58 | + <button class="btn" id="dl" style="display:none" onclick="save()">Download .lua</button> |
44 | 59 | </div> |
45 | | - |
46 | | - <textarea id="out" readonly placeholder="-- [ OUTPUT_BRICK_WALL ] -- Encrypted payload will appear here..."></textarea> |
| 60 | + <textarea id="out" readonly placeholder="-- [ OUTPUT_WALL ]: Monolith v1.0.61 encrypted data..."></textarea> |
47 | 61 | </div> |
48 | 62 | </div> |
49 | 63 |
|
50 | 64 | <script src="script.js"></script> |
51 | 65 | </body> |
52 | | -</html> |
| 66 | + </html> |
0 commit comments