 .claudium-footer {
  margin-top: 60px;
  padding: 20px 10px;
  font-size: 13px;
  color: #ddd;
  background: linear-gradient(to right, #111, #222, #111);
  border-top: 1px solid #444;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.6);
  position: relative;
  
}

/* Nom */
.claudium-footer span.name {
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Liens */
.claudium-footer a {
  color: #ffb300;
  text-decoration: none;
  font-weight: bold;
}

.claudium-footer a:hover {
  text-decoration: underline;
}

/* ================================
   Boutons centraux
   ================================ */
.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 12px;
}

.footer-btn {
  padding: 6px 14px;
  background: #222;
  border: 1px solid #555;
  color: #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.2s ease;
}

.footer-btn:hover {
  background: #333;
  border-color: #777;
}

/* ================================
   Bouton GoTop (à droite)
   ================================ */
.go-top {
  position: absolute;
  right: 15px;
  top: 15px;
  padding: 6px 10px;
  background: #333;
  border: 1px solid #666;
  color: #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.2s ease;
}

.go-top:hover {
  background: #444;
  border-color: #888;
}

