/* Police futuriste */
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');

body {
  margin: 0;
  background: linear-gradient(135deg, #000010, #00111a);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: start;
  padding-top: 80px;
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
}

/* Conteneur central */
.entry-container {
  max-width: 700px;
  margin: 0 20px;
  padding: 20px;
  text-align: center;
  animation: fadeIn 2s ease;
  background: rgba(0, 240, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 0 30px #00f0ff22;
}

/* Titre */
.entry-container h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 0 0 15px #ffffff, 0 0 30px #ffffff;
}

/* Texte */
.entry-container p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #ffffff;
}

/* Bouton retour */
.back-button {
  display: inline-block;
  padding: 12px 38px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 8px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 10px #ffffff;
  transition: 0.3s ease;
}

.back-button:hover {
  background: #ffffff;
  color: #000;
  box-shadow: 0 0 25px #ffffff, 0 0 40px #ffffff inset;
}

/* Animation fadeIn */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
