2025-06-05 16:11:41 +08:00
|
|
|
<!DOCTYPE html>
|
2025-07-23 18:52:35 +08:00
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
|
|
|
<title>Page Not Found - 404</title>
|
2025-06-05 16:11:41 +08:00
|
|
|
<style>
|
2025-07-23 18:52:35 +08:00
|
|
|
:root {
|
|
|
|
|
--primary-color: #4361ee;
|
|
|
|
|
--secondary-color: #3f37c9;
|
|
|
|
|
--text-color: #2b2d42;
|
|
|
|
|
--bg-color: #f8f9fa;
|
|
|
|
|
--error-color: #ef233c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-05 16:11:41 +08:00
|
|
|
body {
|
2025-07-23 18:52:35 +08:00
|
|
|
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
|
|
|
|
|
background-color: var(--bg-color);
|
|
|
|
|
color: var(--text-color);
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
padding: 2rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
max-width: 600px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error-code {
|
|
|
|
|
font-size: 8rem;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
color: var(--primary-color);
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error-code::after {
|
|
|
|
|
content: '404';
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
color: rgba(67, 97, 238, 0.1);
|
|
|
|
|
z-index: -1;
|
|
|
|
|
transform: scale(1.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 2.5rem;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
color: var(--text-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
opacity: 0.9;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 0.8rem 1.8rem;
|
|
|
|
|
border-radius: 50px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
border: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-primary {
|
|
|
|
|
background-color: var(--primary-color);
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-primary:hover {
|
|
|
|
|
background-color: var(--secondary-color);
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-secondary {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
color: var(--primary-color);
|
|
|
|
|
border: 2px solid var(--primary-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-secondary:hover {
|
|
|
|
|
background-color: rgba(67, 97, 238, 0.1);
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animation {
|
|
|
|
|
animation: float 6s ease-in-out infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes float {
|
|
|
|
|
0%, 100% {
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
|
|
|
|
50% {
|
|
|
|
|
transform: translateY(-20px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.error-code {
|
|
|
|
|
font-size: 6rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
}
|
2025-06-05 16:11:41 +08:00
|
|
|
}
|
|
|
|
|
</style>
|
2025-07-23 18:52:35 +08:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="error-code animation">404</div>
|
|
|
|
|
<h1>Page Not Found</h1>
|
|
|
|
|
<p>The page you're looking for might have been moved, deleted, or doesn't exist.</p>
|
|
|
|
|
<div class="actions">
|
|
|
|
|
<a href="/" class="btn btn-primary">Go to Homepage</a>
|
|
|
|
|
<a href="javascript:history.back()" class="btn btn-secondary">Go Back</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
// Console message
|
|
|
|
|
console.log('%c404 - Page Not Found', 'color: #4361ee; font-size: 2em; font-weight: bold;');
|
|
|
|
|
console.log('%cLooks like you\'re lost! Use the buttons above to find your way back.', 'color: #2b2d42; font-size: 1.1em;');
|
|
|
|
|
|
|
|
|
|
// Simple parallax effect
|
|
|
|
|
document.addEventListener('mousemove', function(e) {
|
|
|
|
|
const container = document.querySelector('.container');
|
|
|
|
|
const xAxis = (window.innerWidth / 2 - e.pageX) / 25;
|
|
|
|
|
const yAxis = (window.innerHeight / 2 - e.pageY) / 25;
|
|
|
|
|
container.style.transform = `rotateY(${xAxis}deg) rotateX(${yAxis}deg)`;
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|