27 lines
No EOL
1.8 KiB
PHP
27 lines
No EOL
1.8 KiB
PHP
<?php require_once __DIR__ . '/inc/header.php'; ?>
|
|
<div class="max-w-3xl w-full text-center space-y-6 sm:space-y-8 mt-12 md:mt-24 mx-auto px-4 sm:px-6 relative z-10">
|
|
<div class="text-6xl sm:text-8xl cursor-default inline-block drop-shadow-[0_0_15px_rgba(168,85,247,0.8)] animate-invader select-none mb-2 sm:mb-4">
|
|
👾
|
|
</div>
|
|
<h1 class="text-4xl sm:text-5xl md:text-7xl font-extrabold text-transparent bg-clip-text bg-linear-to-r from-fuchsia-400 to-cyan-400 tracking-tight pb-2 font-mono wrap-break-words">
|
|
GAME OVER
|
|
</h1>
|
|
<div class="mt-6 inline-block w-full max-w-lg bg-slate-900/80 border border-rose-500/20 rounded-3xl sm:rounded-[2.5rem] p-5 sm:p-6 md:p-12 backdrop-blur-xl shadow-[0_0_30px_rgba(244,63,94,0.15)] text-left mb-6 sm:mb-8 overflow-hidden relative">
|
|
<div class="absolute top-0 left-0 w-full h-1 bg-linear-to-r from-transparent via-rose-500/40 to-transparent"></div>
|
|
<div class="relative z-10">
|
|
<p class="text-rose-500 font-mono text-xs sm:text-sm mb-4 animate-pulse uppercase">
|
|
/ system_failure_404
|
|
</p>
|
|
<p class="text-emerald-400 font-mono text-sm md:text-base drop-shadow-[0_0_8px_rgba(52,211,153,0.3)]">
|
|
> <?= htmlspecialchars($errorMessage ?? 'Diese Seite existiert nicht (mehr).') ?>
|
|
</p>
|
|
</div>
|
|
<div class="absolute -bottom-10 -right-10 w-32 h-32 bg-rose-500/5 rounded-full blur-3xl pointer-events-none"></div>
|
|
</div>
|
|
<div class="pt-6 sm:pt-8 pb-10 relative z-10">
|
|
<a href="<?= Config::get('BASE_URL', '/') ?>" class="text-slate-500 hover:text-fuchsia-400 font-mono text-xs sm:text-sm transition-colors">
|
|
< Back to Root
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<?php require_once __DIR__ . '/inc/footer.php'; ?>
|