html body {
  overflow: hidden !important;
  height: 100vh;
  width: 100vw;
  touch-action: none;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Arial", sans-serif;
  background-color: #f8f4e9;
  color: #000;
  overflow-x: hidden;
  font-weight: 900;
  line-height: 1.2;
}

/* QUESTIONS & REPONSES */
.question-section,
.response-section {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f8f4e9;
  box-sizing: border-box;
  padding: 0 4vw;
}
.response-section {
  background: #000;
  color: #fff;
  cursor: default;
  gap: 2.5rem;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  padding: 0 0 40px 0; /* padding-bottom si tu veux de l’espace en bas, sinon 0 */
  margin: 0;
  box-sizing: border-box;
  z-index: 100;
}

/* Question */
.question,
.serif-question {
  font-family: "DM Mono", monospace;
  font-size: 6vw;
  line-height: 1.1;
  text-align: center;
  user-select: none;
  font-weight: 500;
  position: relative;
  z-index: 100;
  color: #000;
  max-width: 100vw;
  word-break: break-word;
  margin: 0;
}
.serif-question {
  font-family: "Playfair Display", serif !important;
  font-style: italic !important;
  color: #fff !important;
}

/* Sous-question réponse */
.response-question {
  color: #fff;
  font-size: 1.1rem;
  opacity: 0.7;
  font-family: "DM Mono", monospace;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1vw;
  margin-top: 0;
  word-break: break-word;
}

/* Bloc de réponse */
.response-block {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 400;
  word-break: break-word;
  background: none;
  padding: 0;
  min-height: 80px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  border-radius: 12px;
  outline: none;
}

/* INDICATEUR CLIQUABLE */
.cliquable-indicator {
  font-size: 15px;
  color: #999;
  margin-top: 8px;
  font-family: "DM Mono", monospace;
  letter-spacing: 1px;
  user-select: none;
  opacity: 0.65;
}

/* Bulles méprisantes */
.mepris-messages-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 300;
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  overflow: hidden !important;
}
.mepris-sms-mare {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: auto;
  display: block;
  background: transparent;
  box-sizing: border-box;
  overflow: hidden !important;
}
.mepris-sms {
  position: absolute;
  overflow: hidden !important;
  background: #fff;
  color: #222;
  font-family: "DM Mono", monospace;
  font-size: 1.2rem;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 1.5px 0 rgba(0, 0, 0, 0.08);
  padding: 1.1rem 2.2rem;
  margin: 0;
  min-width: 90px;
  max-width: 85vw;
  min-height: 2.5em;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 2.5px solid #222;
  opacity: 0;
  transition: opacity 0.33s, transform 0.33s;
  animation: smsPop 0.38s cubic-bezier(0.61, -0.08, 0.4, 1.07);
  pointer-events: auto;
  z-index: 300;
  overflow-wrap: break-word;
  white-space: normal;
  word-break: break-word;
  box-sizing: border-box;
  opacity: 0;
}
.mepris-sms.visible {
  opacity: 1;
}
.mepris-sms:active {
  background: #f5f5f5;
  color: #666;
  border-color: #aaa;
}
@keyframes smsPop {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Message final */
.final-message {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif !important;
  font-style: italic !important;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
  padding: 40px;
  background-color: #000;
  color: #fff;
  opacity: 0;
  transition: opacity 1s ease;
  word-break: break-word;
  box-sizing: border-box;
}

/* Responsive */
@media (max-width: 900px) {
  .question,
  .serif-question {
    font-size: 8vw;
  }
  .response-question {
    font-size: 1rem;
  }
  .response-block {
    font-size: 2rem;
    min-height: 80px;
  }
  .mepris-sms {
    font-size: 1rem;
  }
  .final-message {
    font-size: 1.3rem;
  }
  .response-section {
    gap: 1rem;
  }
}
@media (max-width: 700px) {
  .question,
  .serif-question {
    font-size: 10vw;
  }
  .response-question {
    font-size: 0.96rem;
  }
  .response-block {
    font-size: 2rem;
    min-height: 80px;
  }
  .mepris-sms {
    font-size: 1rem;
  }
  .final-message {
    font-size: 1.1rem;
  }
  .response-section {
    gap: 1rem;
  }
}
@media (max-width: 430px) {
  .question,
  .serif-question {
    font-size: 11vw;
  }
  .response-question {
    font-size: 0.94rem;
  }
  .response-block {
    font-size: 2rem;
    min-height: 80px;
  }
  .mepris-sms {
    font-size: 0.97rem;
  }
  .final-message {
    font-size: 1rem;
  }
  .response-section {
    gap: 1rem;
  }
}
@media (max-width: 600px), (hover: none) and (pointer: coarse) {
  .mepris-sms {
    font-size: 1.05rem;
    padding: 1.2rem 1.4rem;
  }
}

/* MOT PAR MOT : flou survol ordi SEULEMENT */
.word {
  display: inline-block;
  transition: filter 0.3s ease;
  cursor: pointer;
  margin-right: 18px;
}
@media (hover: hover) and (pointer: fine) {
  .word:hover {
    filter: blur(3px);
  }
}
