forked from cipher-attack/cipher-frp-bypass
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
181 lines (168 loc) · 6.58 KB
/
index.html
File metadata and controls
181 lines (168 loc) · 6.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<title>Cipher FRP - Ultimate Unlock Intelligence</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;700&family=Noto+Sans+Ethiopic:wght@400;600;700&family=Orbitron:wght@400;700;900&display=swap" rel="stylesheet">
<style>
:root {
/* Dark Mode (Default) */
--bg-deep: #030508;
--bg-panel: rgba(10, 15, 25, 0.7);
--bg-card-inner: rgba(13, 17, 23, 0.8);
--text-main: #e2e8f0;
--text-muted: #94a3b8;
--primary-cyan: #00f3ff;
--primary-purple: #bc13fe;
--primary-green: #0aff60;
--glass-border: rgba(255, 255, 255, 0.08);
--neon-glow: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
--scanline-opacity: 0.15;
--cursor-x: 50%;
--cursor-y: 50%;
}
[data-theme="light"] {
/* Light Mode (Cyber Silver) */
--bg-deep: #f1f5f9;
--bg-panel: rgba(255, 255, 255, 0.65);
--bg-card-inner: rgba(255, 255, 255, 0.9);
--text-main: #0f172a;
--text-muted: #475569;
--primary-cyan: #0891b2;
--primary-purple: #7c3aed;
--primary-green: #059669;
--glass-border: rgba(0, 0, 0, 0.1);
--neon-glow: 0 0 15px rgba(8, 145, 178, 0.2);
--scanline-opacity: 0.03;
}
body {
background-color: var(--bg-deep);
color: var(--text-main);
font-family: 'Inter', 'Noto Sans Ethiopic', sans-serif;
overflow-x: hidden;
transition: background-color 0.3s ease, color 0.3s ease;
-webkit-tap-highlight-color: transparent;
}
/* FEATURE 1: Mouse Spotlight */
body::before {
content: '';
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: radial-gradient(600px circle at var(--cursor-x) var(--cursor-y), var(--primary-cyan), transparent 40%);
opacity: 0.07;
pointer-events: none;
z-index: 9999;
}
/* FEATURE 2: Scanlines Overlay */
.scanlines {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1));
background-size: 100% 4px;
pointer-events: none;
z-index: 50;
opacity: var(--scanline-opacity);
}
/* PRINT STYLES */
@media print {
body * { visibility: hidden; }
#print-area, #print-area * { visibility: visible; }
#print-area {
position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%);
width: 100%; height: 100%; display: flex; justify-content: center; align-items: center;
background: white !important; -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important;
}
.scanlines, body::before { display: none; }
}
/* ANIMATIONS */
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
@keyframes enter {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-enter { animation: enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes glitch-anim-1 {
0% { clip: rect(20px, 9999px, 10px, 0); }
100% { clip: rect(50px, 9999px, 80px, 0); }
}
@keyframes glitch-anim-2 {
0% { clip: rect(90px, 9999px, 100px, 0); }
100% { clip: rect(10px, 9999px, 120px, 0); }
}
.glitch-text {
position: relative;
font-family: 'Orbitron', sans-serif;
}
.glitch-text::before, .glitch-text::after {
content: attr(data-text);
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background: var(--bg-deep);
}
.glitch-text::before {
left: 2px; text-shadow: -1px 0 red; clip: rect(24px, 550px, 90px, 0);
animation: glitch-anim-1 3s infinite linear alternate-reverse;
}
.glitch-text::after {
left: -2px; text-shadow: -1px 0 blue; clip: rect(85px, 550px, 140px, 0);
animation: glitch-anim-2 2s infinite linear alternate-reverse;
}
/* 3D Card */
.card-3d {
background: var(--bg-panel);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid var(--glass-border);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
position: relative;
overflow: hidden;
}
.card-3d:hover {
box-shadow: var(--neon-glow);
border-color: var(--primary-cyan);
transform: translateY(-5px);
}
/* Mobile Optimizations */
@media (max-width: 768px) {
.card-3d:hover { transform: none; }
::-webkit-scrollbar { width: 0px; }
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--primary-cyan); border-radius: 2px; }
input, select, textarea { color: var(--text-main); }
::placeholder { color: var(--text-muted); opacity: 0.6; }
</style>
<script type="importmap">
{
"imports": {
"react/": "https://esm.sh/react@^19.2.3/",
"react": "https://esm.sh/react@^19.2.3",
"lucide-react": "https://esm.sh/lucide-react@^0.561.0",
"@google/genai": "https://esm.sh/@google/genai@^1.33.0",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"react-markdown": "https://esm.sh/react-markdown@9",
"remark-gfm": "https://esm.sh/remark-gfm@4",
"react-syntax-highlighter": "https://esm.sh/react-syntax-highlighter@15",
"react-syntax-highlighter/dist/esm/styles/prism": "https://esm.sh/react-syntax-highlighter@15/dist/esm/styles/prism",
"react-syntax-highlighter/": "https://esm.sh/react-syntax-highlighter@^16.1.0/"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<div class="scanlines"></div>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>