<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>404 - KEMASUG</title>
<style>
body {
  margin:0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, rgba(255,30,30,0.15), #050506 70%);
  color:white;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  height:100vh;
  text-align:center;
}
h1 {
  font-size:90px;
  margin:0;
  color:#ff1e1e;
  text-shadow:0 0 20px rgba(255,30,30,0.4);
}
p {
  font-size:18px;
  color:#b9b9bd;
  margin:20px 0;
}
a {
  color:white;
  background:#ff1e1e;
  padding:12px 20px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 0 12px rgba(255,30,30,0.4);
}
a:hover {
  background:#e01818;
}
.logo {
  margin-bottom:30px;
}
.logo img {
  width:120px;
  filter:drop-shadow(0 0 12px rgba(255,30,30,0.8));
}
</style>
</head>
<body>
  <div class="logo"><img src="images/k-logo.png" alt="KEMASUG Logo"></div>
  <h1>404</h1>
  <p>Oups ! Cette page n’existe pas ou n’est plus disponible.</p>
  <a href="/">Retourner à l’accueil</a>
</body>
</html>

