.page_jeux {
  --couleur-rouge: #F00;
  background: url("/images/jeux/bg.jpg") no-repeat center;
  background-size: cover;
  min-height: 100vh;
}
.page_jeux main {
  max-width: 450px;
  min-width: 375px;
  margin: auto;
  padding: 0 0 16px;
  padding-top: 32px;
  color: white;
  position: relative;
}
.page_jeux main h1 {
  color: var(--couleur-rouge);
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFF;
  font-family: "Luckiest Guy", cursive;
  font-style: normal;
  font-size: 36px;
  font-weight: 800;
  line-height: 90%; /* 32.4px */
  text-transform: uppercase;
}
.page_jeux main p {
  padding: 0 16px;
  margin: 0;
  text-align: center;
  font-family: "Albert Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 150% */
}
.page_jeux main .roue {
  margin: 0px auto;
  margin-bottom: 24px;
  position: relative;
  max-width: 375px;
}
.page_jeux main .roue img {
  width: 100%;
  max-height: 100%;
  transition: all 1s ease;
  position: relative;
  z-index: 2;
}
.page_jeux main .roue img.rotate {
  animation: spin 2s ease-in forwards;
}
.page_jeux main .roue img.rotate-infini {
  animation: spin-infinite 1s linear infinite;
}
.page_jeux main .roue img#pointeur {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
.page_jeux main .roue img#ombre {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-infinite {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.page_jeux main form {
  margin: 0 16px;
}
.page_jeux main form.hide {
  transition: opacity 0.3s ease;
  opacity: 0;
}
.page_jeux main form .participant {
  position: relative;
}
.page_jeux main form .participant input {
  border-style: none;
  border-radius: 8px;
  background: var(--white, #FFF);
  width: 100%;
  height: 48px;
  height: 48px;
  padding: 13px 24px;
  color: #000;
  font-family: "Albert Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.page_jeux main form .participant input::placeholder {
  color: #CEBFB2;
}
.page_jeux main form .participant #error_message {
  position: absolute;
  top: -55px;
  left: 0px;
  width: 350px;
  background-color: #FF0000;
  color: white;
  padding: 10px;
  border-radius: 5px;
  z-index: 10;
}
.page_jeux main form .participant #error_message:empty {
  display: none;
}
.page_jeux main form .participant #error_message::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -25px;
  transform: translateX(50%);
  border-width: 14px;
  border-style: solid;
  border-color: #FF0000 transparent transparent transparent;
}
.page_jeux main button, .page_jeux main .button {
  border-style: none;
  border-radius: 8px;
  background: #FF0000;
  width: 100%;
  height: 48px;
  margin-top: 8px;
  color: var(--blanc, #F7F4F5);
  padding: 8px 32px;
  font-family: "Albert Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  text-decoration: none;
  display: block;
  text-align: center;
}
.page_jeux main .message {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
}
.page_jeux main .message a {
  display: inline-block;
  text-decoration: none;
}
.page_jeux main .message span {
  font-size: 24px;
}
.page_jeux main .lottie_confettis {
  aspect-ratio: 1/1;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 100;
}
.page_jeux main .cadre_blanc {
  border-radius: 8px;
  background: var(--white, #FFF);
  max-width: min(90%, 600px);
  margin: auto;
  margin-top: 45px;
  display: flex;
  padding: 56px 24px 24px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.page_jeux#page_jeu_validation h2 {
  color: var(--couleur-rouge);
  text-align: center;
  font-family: "Luckiest Guy", cursive;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%; /* 32.4px */
  text-transform: uppercase;
  margin: auto;
}
.page_jeux#page_jeu_validation p {
  color: #5D4747;
}
.page_jeux#page_jeu_validation form {
  margin: 0;
}
.page_jeux#page_jeu_validation form button {
  height: auto;
  padding: 14px 24px;
  font-size: 16px;
  line-height: 120%;
}
.page_jeux#page_jeu_validation form button.disabled {
  background-color: #f2f2f2;
  pointer-events: none;
  color: #5D4747;
}
.page_jeux#page_jeu_validation .lot_gagne {
  color: #5D4747;
  text-align: center;
  font-family: "Albert Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 24px; /* 75% */
  margin: auto;
  height: 56px;
  align-content: center;
}
.page_jeux#page_jeu_validation .warning {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
.page_jeux#page_jeu_validation .warning span {
  color: var(--couleur-rouge);
}

/*# sourceMappingURL=chezarthur_20260409.css.map */
