forked from zane3535/zane3535.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
153 lines (134 loc) · 4.66 KB
/
404.html
File metadata and controls
153 lines (134 loc) · 4.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Matrix Failure</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<style>
@keyframes glitch {
0% {
transform: translate(0)
}
20% {
transform: translate(-2px, 2px)
}
40% {
transform: translate(-2px, -2px)
}
60% {
transform: translate(2px, 2px)
}
80% {
transform: translate(2px, -2px)
}
100% {
transform: translate(0)
}
}
:root {
--primary: #9d4edd;
--primary-hover: #c77dff;
--background: #000000;
--surface: #0a0a0a;
--text-primary: #ffffff;
--text-secondary: #888;
--border: #240046;
--shadow: 0 0 30px rgba(157, 78, 237, 0.3);
}
body {
font-family: 'Inter', sans-serif;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: var(--background);
color: var(--text-primary);
overflow: hidden;
background: radial-gradient(circle at center, #15002b 0%, #000 100%);
}
.container {
text-align: center;
padding: 4rem;
background: rgba(10, 10, 10, 0.6);
backdrop-filter: blur(20px);
border-radius: 32px;
border: 1px solid var(--border);
box-shadow: var(--shadow);
}
.error-code {
font-size: 10rem;
font-weight: 900;
color: #fff;
text-shadow: 2px 2px #9d4edd, -2px -2px #c77dff;
margin-bottom: 0.5rem;
animation: glitch 0.3s infinite;
}
.error-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 5px;
color: var(--primary);
}
.error-message {
color: var(--text-secondary);
margin-bottom: 3rem;
max-width: 450px;
margin-left: auto;
margin-right: auto;
font-size: 1.1rem;
line-height: 1.6;
}
.home-link {
display: inline-block;
padding: 15px 40px;
background: var(--primary);
color: white;
text-decoration: none;
border-radius: 12px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 2px;
transition: 0.3s;
box-shadow: 0 0 20px rgba(157, 78, 237, 0.4);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.home-link:hover {
background: var(--primary-hover);
transform: scale(1.05);
box-shadow: 0 0 40px var(--primary);
}
.hidden {
display: none;
}
</style>
</head>
<body>
<div class="container animate__animated animate__zoomIn">
<div id="error-content">
<h1 class="error-code">404</h1>
<h2 class="error-title">Matrix Failure</h2>
<p class="error-message">Connection to requested node lost. The data stream has been interrupted by an
unknown anomaly.</p>
<a href="javascript:void(0)" onclick="gohome();" class="home-link">Reconnect to Core</a>
</div>
<div id="proxy-content" class="hidden">
<h1 class="error-code">;)</h1>
<h2 class="error-title">Initializing Link</h2>
<p class="error-message">Bypassing security protocols. Establishing quantum connection...</p>
<button class="home-link" onclick="window.location.reload(1);"
style="cursor:pointer; border:none;">Establish Now</button>
</div>
</div>
<script>
if (window.location.href.includes("/service/") || window.location.href.includes("/go/") || window.location.href.includes("/tiny/")) {
document.getElementById("error-content").classList.add("hidden");
document.getElementById("proxy-content").classList.remove("hidden");
}
function gohome() { window.location.href = window.location.origin }
</script>
</body>
</html>