body {
  margin: 0;
  font-family: system-ui;
  background: #0a0f14; /* Fond noir doux */
  color: #fff; /* Texte blanc */
}

.center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px;
}

header .logo-xl {
  width: 150px; /* Taille ajustée pour logo */
}

h1 {
  font-size: 36px;
  font-weight: bold;
}

p {
  font-size: 16px;
  color: #ccc; /* Texte plus clair */
}

button {
  padding: 14px 24px;
  border-radius: 12px;
  border: 2px solid #C79A2D;
  background: #C79A2D;
  color: #1b1204;
  font-weight: 800;
  transition: all 0.3s ease-in-out;
}

button:hover {
  background: #FFD700; /* Jaune or brillant */
  box-shadow: 0 4px 10px rgba(255, 215, 51, 0.7); /* Effet de brillance */
}

.link {
  color: #C79A2D;
  font-weight: 600;
}

.code {
  padding: 12px;
  border: 2px dashed #C79A2D;
  border-radius: 12px;
  font-size: 18px;
  color: #C79A2D;
  font-weight: bold;
}

footer {
  margin-top: 40px;
  text-align: center;
}

footer a {
  color: #C79A2D;
  font-weight: 600;
}
