.case-detail-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #181818;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-detail-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.case-detail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 0;
  cursor: pointer;
}

.case-page-label {
  position: absolute;
  top: 32px;
  right: 40px;
  font-family: "VCR", monospace;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: #fff;
  text-shadow: 1px 1px 4px #000, 0 0 8px #000;
}

.case-next-btn {
  position: absolute;
  right: 40px;
  bottom: 110px;
  margin: 0;
}

.case-back-btn {
  position: absolute;
  left: 40px;
  bottom: 40px;
  margin: 0;
}

.case-start-btn {
  position: absolute;
  right: 40px;
  bottom: 40px;
  margin: 0;
}
.case-select-screen {
  position: absolute;
  inset: 0;
  background: url("../assets/ui/menu_background.png") center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-select-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.case-container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 60px;
}

.case-unavailable-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 20px;
  font-family: "VCR", monospace;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  transition: opacity 0.2s ease;
}

.case-unavailable-message.is-visible {
  opacity: 1;
}

.case-folder {
  width: 400px;
  /* ancienne valeur : 220px */
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-folder img {
  width: 100%;
  display: block;
}

/* Hover */
.case-folder:hover {
  transform: translateY(-10px) scale(1.05); 
}

/* Numéro enquête */
.case-label {
  text-align: center;
  margin-top: 12px;
  color: white;
  font-family: "VCR", monospace;
  letter-spacing: 2px;
  opacity: 0.85;
}
