-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy path404.html
More file actions
177 lines (154 loc) · 4.6 KB
/
404.html
File metadata and controls
177 lines (154 loc) · 4.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 | Page Not Found</title>
<!-- Scripts -->
<script src="/js/mainPageCloak.js"></script>
<script src="/js/openGame.js"></script>
<script src="/js/panicKey.js"></script>
<script src="/js/style.js"></script>
<script src="/js/cursor.js"></script>
<!-- Styles -->
<link rel="stylesheet" href="/css/main.css" />
<link rel="icon" type="image/ico" href="https://indiamonda.github.io/info.ico">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600&display=swap" rel="stylesheet">
<style>
body.error-page {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #0d1117;
color: #e6edf3;
font-family: 'Josefin Sans', sans-serif;
overflow: hidden;
}
.bg-effects {
position: absolute;
width: 100%;
height: 100%;
background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05), transparent 40%),
radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03), transparent 40%);
z-index: 0;
}
.container {
width: 435px;
text-align: center;
padding: 50px 40px;
background: rgba(13, 17, 23, 0.85);
border: 1px solid #30363d;
border-radius: 16px;
box-shadow: 0 0 50px rgba(0,0,0,0.7);
backdrop-filter: blur(8px);
z-index: 1;
animation: fadeIn 0.6s ease;
}
.visual-heading-1 {
display:block;
font-size: 90px;
margin: 0;
letter-spacing: -3px;
background: linear-gradient(90deg, #58a6ff, #8b5cf6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight:700;line-height:1;
}
.visual-heading-2 {
display:block;
margin: 10px 0 25px;
font-weight: 400;
color: #8b949e;
font-size:20px;line-height:1.3;
}
/* Visually hidden semantic <h1> used for SEO + AI metadata. */
.seo-only{
position:absolute!important;left:-9999px!important;top:auto!important;
width:1px!important;height:1px!important;overflow:hidden!important;
clip:rect(0,0,0,0)!important;clip-path:inset(50%)!important;
font-size:0!important;line-height:0!important;color:transparent!important;
opacity:0!important;pointer-events:none!important;user-select:none!important;
}
.buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 12px 26px;
font-size: 14px;
border-radius: 10px;
border: none;
cursor: pointer;
transition: 0.25s ease;
font-family: inherit;
}
.btn-primary {
background: #9c41f6;
color: white;
}
.btn-primary:hover {
background: #c68cff;
transform: scale(1.05);
box-shadow: 0 0 15px rgba(46,160,67,0.5);
}
.btn-secondary {
background: #21262d;
color: #c9d1d9;
border: 1px solid #30363d;
}
.btn-secondary:hover {
background: #30363d;
transform: scale(1.05);
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(15px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 500px) {
.container {
padding: 30px 20px;
}
.visual-heading-1 {
font-size: 60px;
}
.visual-heading-2 {
font-size: 16px;
}
}
</style>
<!-- JQRG_CLOUD_INJECT_BEGIN --><script src="/js/jqrg-cloud.js" defer></script><script src="/js/jqrg-auth-ui.js" defer></script><!-- JQRG_CLOUD_INJECT_END -->
<script src="/js/gg-detect.js"></script>
</head>
<body class="error-page">
<div class="bg-effects"></div>
<div class="container">
<h1 class="seo-only">Not Found</h1>
<div class="visual-heading-1" role="heading" aria-level="1">404</div>
<div class="visual-heading-2" role="heading" aria-level="2">Page Not Found</div>
<div class="buttons">
<button class="btn btn-primary" id="backHomeBtn">
⬅ Back to Home
</button>
<button class="btn btn-secondary" onclick="location.href='https://indiamonda.github.io/suggest-games/'">
Suggest a Game
</button>
</div>
</div>
<script>
document.getElementById('backHomeBtn').onclick = () => {
window.location.href = 'https://indiamonda.github.io/';
};
try { if (window.self !== window.top) document.querySelector('.buttons').style.display = 'none'; } catch (_) {}
</script>
</body>
</html>