.mainContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gameHolder,
.inputter,
.inputContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.inputContainer,
.inputter {
  width: 100%;
}

.soustitre {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #a78bfa;
}

svg text,
.outerRingText,
.innerRingText,
.innerMostText {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.ringArc {
  pointer-events: none;
}

.rotate-widget {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 0;
}

.switch {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  color: #fff;
}

.switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: relative;
  width: 44px;
  height: 24px;
  background: #555;
  border-radius: 999px;
  transition: 0.2s;
}

.slider::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: 0.2s;
}

.switch input:checked + .slider {
  background: #7c3aed;
}

.switch input:checked + .slider::after {
  transform: translateX(20px);
}

.inputter .valHolder {
  color: #22d3ee;
}

.inputter .valHolder::placeholder {
  color: #22d3ee;
  opacity: 1;
}

button#valider {
  margin-top: 20px;
}

.reponse-cadeau {
  color: rgb(167, 139, 250);
}

.bloc-cartes {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.svgContainerOne {
  width: min(92vw, 520px);
  aspect-ratio: 6 / 5;
  margin: 0 auto;
  overscroll-behavior: contain;
}

.svgContainerOne svg {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

@media (max-width: 520px) {
  .outerRingText,
  .innerRingText,
  .innerMostText {
    font-size: 10px;
  }

  .inputter .valHolder {
    padding: 12px;
    font-size: 16px;
  }

  button#valider {
    padding: 10px 14px;
    font-size: 16px;
    margin-top: 14px;
  }

  .bloc-cartes {
    padding: 0.75rem 0.9rem;
  }

  .bloc-cartes h2 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }

  .bloc-cartes li,
  .bloc-cartes p {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .code-lettres {
    letter-spacing: 0.12em;
    font-size: 0.75rem;
  }

  .reponse-cadeau {
    font-size: 0.75rem;
  }

  .hs {
    font-size: 0.8rem;
  }
}

.rotate-widget{
    display: none;
}