  /* Conteneur global fixed, centré horizontalement, à 10vh du bas, responsive */
  .module-fixed {
    position: fixed;
    left: 50%;
    bottom: 10vh;
    transform: translateX(-50%);
    z-index: 1050;
    background: rgba(255,255,255,0.95);
    padding: 15px;
    text-align: center;
    max-width: 99%;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  /* Bouton de fermeture du module */
  .close-module {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    z-index: 100;
  }
  /* Titre avec effet "carnaval" */
  .title-carnaval {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    animation: carnaval 3s infinite;
  }
@keyframes carnaval {
  0%   { color: #FF0000; transform: rotate(0deg); }
  20%  { color: #FF7F00; transform: rotate(1deg); }
  40%  { color: #FFFF00; transform: rotate(-1deg); }
  60%  { color: #7FFF00; transform: rotate(1deg); }
  80%  { color: #00FF00; transform: rotate(-1deg); }
  100% { color: #FF0000; transform: rotate(0deg); }
}
  .instructions {
    font-size: 18px;
    margin-bottom: 10px;
  }
@keyframes tadaZoom {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.winPopup.show {
  animation: tadaZoom 0.6s ease-out forwards;
}
  /* Bouton Go! au centre */
@keyframes pulsate {
  0%   { transform: translate(-50%, -50%) scale(1); }
  10%  { transform: translate(-50%, -50%) scale(1.05); }
  20%  { transform: translate(-50%, -50%) scale(1); }
  30%  { transform: translate(-50%, -50%) scale(1.05); }
  40%  { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1); }
}
  .go-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    background: #007BFF;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    font-size: 24px;
    cursor: pointer;
    z-index: 6;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
	transition: transform 0.3s ease;
	animation: pulsate 2s infinite;
  }
	.go-button:hover {
	  animation: none;
  transform: translate(-50%, -50%) scale(1.1);
	}
  .wheel::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
  }
  /* Labels sur la roue (effet "étoile") */
  .wheel-label {
    position: absolute;
    transform-origin: center;
    color: #000;
    font-size: 16px;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    white-space: normal;
    max-width: 160px;
  }
  /* Marqueur fixe à droite, avec right: 0px, tourné de 180° */
  .marker {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #000;
    z-index: 10;
  }
  /* Popup de gain (winPopup) */
  .winPopup {
    display: none;
	position: fixed;
    left: 50%;
    bottom: 10vh;
    transform: translateX(-50%);
    z-index: 1050;
    background: #fff;
    padding: 20px;
    max-width: 400px;
	with:100%;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    z-index: 100;
	text-align:center;
  }
  .winPopup h2 { margin-top: 0; }
  .winPopup input[type="email"] {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
  }
  .winPopup button {
    cursor: pointer;
  }
  .winPopup .closePopup {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
  }
  /* Section "En savoir plus" intégrée dans le module-fixed */
  .more-info {
    margin-bottom: 15px;
  }
  .more-info button {
    cursor: pointer;
  }
  .info-content {
    display: none;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 350px;
    width: 340px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f9f9f9;
    z-index: 20;
  }
  .info-content button {
    margin-top: 10px;
    padding: 5px 10px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  #moduleFixed {
  opacity: 1;
  transition: opacity 0.5s ease;
  }
  /* État de fading */
  #moduleFixed.fade-out {
    opacity: 0;
  }
  /* CSS-only confetti renommé en confettiRoue */
  .confettiRoue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 90;
  }
  .confettiRoue-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    background: red;
    opacity: 0.8;
    animation: fall linear infinite;
  }
  @keyframes fall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
  }
  .confettiRoue-piece:nth-child(1) { left: 10%; animation-duration: 3s; animation-delay: 0s; background: #FF0000; }
  .confettiRoue-piece:nth-child(2) { left: 20%; animation-duration: 3.2s; animation-delay: 0.2s; background: #00FF00; }
  .confettiRoue-piece:nth-child(3) { left: 30%; animation-duration: 2.8s; animation-delay: 0.4s; background: #0000FF; }
  .confettiRoue-piece:nth-child(4) { left: 40%; animation-duration: 3.1s; animation-delay: 0.1s; background: #FFFF00; }
  .confettiRoue-piece:nth-child(5) { left: 50%; animation-duration: 3.3s; animation-delay: 0.3s; background: #FF00FF; }
  .confettiRoue-piece:nth-child(6) { left: 60%; animation-duration: 2.9s; animation-delay: 0.5s; background: #00FFFF; }
  .confettiRoue-piece:nth-child(7) { left: 70%; animation-duration: 3s; animation-delay: 0.2s; background: #FFA500; }
  .confettiRoue-piece:nth-child(8) { left: 80%; animation-duration: 3.4s; animation-delay: 0.4s; background: #8A2BE2; }
  .confettiRoue-piece:nth-child(9) { left: 90%; animation-duration: 3.2s; animation-delay: 0.1s; background: #DC143C; }
  .confettiRoue-piece:nth-child(10) { left: 5%; animation-duration: 3.5s; animation-delay: 0.3s; background: #00CED1; }
  
  /* Adaptation mobile via media query */
  @media only screen and (max-width: 480px) {
    .module-fixed, .winPopup {
	z-index: 1100;
	left:0px;
      top: 10vh;
	  transform:none;
	  height: max-content;
    }
	.module-fixed {
     /* width: 400px !important;*/
      height: 500px !important;
    }
    .wheel-container {
    zoom: .8;
    }
  }