#mysterieux-form, .gen-form {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 32px #0001;
  padding: 36px 24px 24px 24px;
  max-width: 600px;
  margin: 32px auto 0 auto;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

h2, .mysterieux-titre {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #23292f;
}

.mysterieux-titre {
  font-size: 1.7rem;
  color: #23292f;
  margin-bottom: 16px;
}

.mysterieux-instructions {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: #ff9800;
  font-weight: 500;
}

.mysterieux-step {
  color: #aaa;
  font-weight: 600;
  margin-bottom: 8px;
}

.mysterieux-question {
  font-size: 1.13rem;
  margin-bottom: 7px;
  font-weight: 500;
}
.mysterieux-suggestions {
  margin: 6px 0 10px 0;
}
.mysterieux-suggestion-btn {
  display: inline-block;
  background: #f8f8f8;
  border: 1.5px solid #ff9800;
  color: #ff9800;
  font-size: 1em;
  font-weight: 500;
  border-radius: 19px;
  padding: 3.5px 16px;
  margin: 2px 2px 2px 0;
  cursor: pointer;
  transition: 0.2s;
}
.mysterieux-suggestion-btn:hover {
  background: #ff9800;
  color: #fff;
}

/* ---- INPUTS ---- */
input[type="text"].mysterieux-answer, .mysterieux-author {
  width: 100%;
  padding: 10px 12px;
  border-radius: 11px;
  border: 1.5px solid #ededed;
  font-size: 1.05rem;
  background: #f8f8fc;
  margin-bottom: 12px;
  transition: border 0.2s;
}
input[type="text"]:focus {
  border: 1.5px solid #ff9800;
  outline: none;
}

/* ---- LANG SELECT ---- */
.mysterieux-langs button {
  background: #fff;
  border: 1.5px solid #ededed;
  border-radius: 50%;
  font-size: 1.36rem;
  padding: 4px 8px;
  margin-right: 4px;
  cursor: pointer;
  transition: border 0.18s, box-shadow 0.16s;
}
.mysterieux-langs button:hover {
  border: 1.5px solid #ff9800;
  box-shadow: 0 2px 8px #ff980028;
}

/* ---- ACTION BUTTONS ---- */
.mysterieux-actions {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.mysterieux-actions button,
.mysterieux-actions a button {
  background: #ff9800;
  color: #fff;
  border: none;
  font-size: 1.14rem;
  font-weight: 500;
  padding: 9px 24px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.18s;
  margin: 0 4px 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mysterieux-actions button:hover {
  background: #23292f;
}

.mysterieux-result {
  font-size: 1.18rem;
  line-height: 1.58;
  color: #23292f;
  margin-top: 16px;
}
.mysterieux-auteur {
  margin-top: 18px;
  font-weight: bold;
  color: #454545;
  font-size: 1.11rem;
}

/* ---- SLIDER ---- */
.slider-container {
  margin: 0 auto 18px auto;
  max-width: 620px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 22px #ff980015;
  background: #fff;
}
.slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  max-width: 100%;
}
.slider img {
  width: 100%;
  max-height: 215px;
  min-width: 600px;
  object-fit: cover;
  border-radius: 24px;
  margin-right: 0;
  background: #eee;
}
@media (max-width: 700px) {
  .slider img, .slider-container { min-width: 100vw; max-width: 100vw; border-radius: 0;}
  #mysterieux-form, .gen-form {padding: 18px 4vw;}
}
.mysterieux-wait {
  color: #ff9800;
  font-size: 1.25rem;
  text-align: center;
  margin: 36px 0 28px 0;
}
