/* Style global */
body {
  margin: 0;
  padding: 0;
  background-color: #1D0F26;
  font-family: Arial, sans-serif;
  color: #CBC4BD;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #B7652C;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Bouton */
#generate {
  padding: 12px 24px;
  font-size: 18px;
  background-color: #305C5F;
  color: #CBC4BD;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#generate:hover {
  background-color: #3C787E;
}

/* Résultat */
#result {
  margin-top: 20px;
  font-size: 20px;
  color: #C2C0A7;
  word-wrap: break-word;
  max-width: 90%;
}

/* 📱 Responsive Mobile */
@media screen and (max-width: 600px) {
  h1 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  #generate {
    font-size: 16px;
    width: 100%;
    padding: 12px;
  }

  #result {
    font-size: 18px;
  }
}
