
/*scrolling cards*/
.card-container { display: flex; justify-content: center; gap: 20px; }
.scrolling-card { width: 100px; height: 150px; border: 1px solid black; display: flex; flex-direction: column; align-items: center; }
.scrolling-card-poker img { height: calc(50vh - 72px); max-height: 200px; cursor: pointer;}
.form-range::-moz-range-track {
  width: 100%;
  height: 2px;
  background-color: #000!important;
  box-shadow: none;
}

.form-range {
    -webkit-appearance: none;
    width: 100%;
    background-color: transparent; /* Pour masquer la ligne de fond si nécessaire */
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background-color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: none; /* Supprime le shadow par défaut */
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: none; /* Empêche l'apparition d'un shadow au focus */
}

.form-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background-color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: none;
}

.form-range::-ms-thumb {
    width: 16px;
    height: 16px;
    background-color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: none;
}

/* Désactive le focus outline */
.form-range:focus {
    outline: none;
}

.mode-3.position-1 .actio,
.mode-3.position-1 .objo {
    display: none;
}

.mode-3.position-2 .perso,
.mode-3.position-2 .objo {
    display: none;
}

.mode-3.position-3 .perso,
.mode-3.position-3 .actio {
    display: none;
}

.text-semi-primary {
    color: #2196F3 !important;
}

.text-semi-danger {
    color: #F44336 !important;
}

#game-area .openwords {
    position: absolute;
    left: 50%;
    cursor: pointer;
    display: none;
    transform: translate(-50%);
    color: #CFD8DC;
}

#game-area .scrolling-card-poker {
    position: relative;
}

#game-area .scrolling-card-poker:hover .openwords {
    display: inherit;
}

.scrolling-cards-openstats {
    cursor: pointer;
}

.plateau-ajust-screen {
    height: calc(100vh - 72px);
    width: calc(100vw - 100px);
    min-height: 500px;
    position: relative;
}

.logo-bug {
    transform: rotate(7deg) translate(50px);
}

.section-contact .collapse.show ~ .logo-bug.widtheffect {
    width: 180px;
    transform: rotate(-60deg) translate(15px, -100px);
    opacity: .1;
    background-color: transparent!important;
    color: #263238!important;
}

.decouvrir-call-to-action {
    position: relative;
    z-index: 10;
}

.post {
    font-family: NotoSerifJP;
}

.breadcrumb,
.post-last-relance {
    font-family: var(--bs-font-sans-serif) !important;
}

.post .breadcrumb {
    font-size: 11px;
    letter-spacing: 1px;
}

.post-last-relance {
    letter-spacing: 1px;
}

.category-list .active {
    background-color: #FFE0B2 !important;
}

.accordion-option-games .form-check {
    cursor: pointer;
}

.incorrect td {
    background-color: #FFCDD2;
}

/* Conteneur principal */
#mascot-container {
  position: relative;
  width: 180px;    /* ajustez selon vos besoins */
  height: 90px;   /* ajustez selon vos besoins */
  margin: 20px auto;
  overflow: hidden;
  background: #fff; /* couleur d'arrière-plan neutre, à personnaliser */
}

/* La mascotte qui rebondit verticalement */
.mascot {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-25%);
  /* La durée de l'animation est définie via une variable CSS */
  animation: bounce var(--mascot-bounce-duration, 1.8s) ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -20px); }
}

/* Les particules qui défilent vers la gauche */
.particles {
  position: absolute;
  top: 0;
  right: 0;
  width: 150%;
  height: 100%;
  background: url('/img/scrolling-words/particles.gif') repeat; /* remplacez particles.png par votre image de particules */
  animation: particlesMove var(--particles-duration, 4s) linear infinite;
}

@keyframes particlesMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Les rayons de vitesse en arrière-plan */
.speed-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  background: url('/img/scrolling-words/speedlines.png') repeat-x; /* remplacez speedlines.png par votre image de rayons */
  opacity: 0.5;
  animation: speedLines var(--speed-lines-duration, 6s) linear infinite;
}

@keyframes speedLines {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}