/* Arrière-plan flouté */
.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.6);
}

/* Cadre principal */
.about-panel {
  background-color: rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  padding: 2rem;
  max-width: 900px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

/* Titres dorés */
.text-gold {
  color: #d4af37;
}

/* Bouton retour */
.btn-pirate-gold {
  background-color: #d4af37;
  border: none;
  color: white;
  transition: background-color 0.3s ease;
}

.btn-pirate-gold:hover {
  background-color: #c49e2a;
  color: white;
}

