
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'Arial Black', Gadget, sans-serif;
  color: white;
  scroll-behavior: smooth;
}

/* Header et titre */
header {
  background-color: #000;
  padding: 20px 0;
  border-bottom: 2px solid #00bfff;
  text-align: center;
}

header h1 {
  color: #00bfff;
  font-size: 2.5rem;
  display: inline;
}

header h1 span {
  color: white;
}

/* Navigation */
nav {
  margin-top: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav ul li a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #00bfff;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #00bfff;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Titres sections */
section h2 {
  color: #00bfff;
  border-bottom: 2px solid #00bfff;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

/* Contenu */
.content-section {
  padding: 60px 20px;
  text-align: center;
}

/* Glow-boxes */
.glow-box {
  border: 2px solid #00bfff;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  background-color: #111;
  box-shadow: 0 0 15px #00bfff;
  text-align: left;
}

/* Images */
.glow-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Texte & Fluo */
.highlight {
  color: #00bfff;
  font-weight: bold;
}

.glow-box ul {
  padding-left: 20px;
}

.glow-box li {
  margin-bottom: 10px;
  color: white;
}

/* Footer */
footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid #00bfff;
}
/* Link Cards dans liens externes */
.link-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 2px solid #00bfff;
  border-radius: 10px;
  background-color: #111;
  text-decoration: none;
  color: white;
  box-shadow: 0 0 10px #00bfff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.link-card img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

.link-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #00bfff;
}
PAGELOGO {
   display: inline-block;
   height: 1em; 
   width: auto; 
   vertical-align: middle; 
   margin-left: 10px; 
 }