body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin: 20px;
  margin-top: 10px;
  background-image: radial-gradient(circle, orange, transparent 45%, orangered);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: orange;
}

footer {
  clear: both;
  font-size: 12px;
  margin-top: 10px;
}

header {
  position: relative;
  height: 14px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: linear-gradient(90deg, #ff4444, #ffbb33);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 30px 15px;
  border-radius: 9px;
  min-width: 800px;
}

header::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("motif.svg");
  background-size: cover;
  z-index: 1;
}

header>* {
  position: relative;
  z-index: 2;
}

.logo img {
  width: 210px;
  padding-top: 100px;
}

#logo-boule {
  width: 250px;
  margin-top: 8px;
}

table {
  border-collapse: collapse;
  margin: 20px 0;
  background-color: aliceblue;
  border: 3px solid red;
  box-shadow:
    0 0 4px #fff,
    0 0 10px #ff0,
    0 0 20px #ff8000,
    0 0 30px rgba(0, 0, 0, 0.3);
}

td {
  width: 50px;
  height: 56px;
  border: 1px solid #717d7e;
  text-align: center;
  font-size: 20px;
  color: #717d7e;
  font-weight: bold;
}

.unavailable {
  background-image: conic-gradient(from 0deg,
      rgba(255, 165, 0, 0.5),
      rgba(255, 69, 0, 0.5),
      rgba(255, 165, 0, 0.5));
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: rgba(255, 165, 0, 0.3);
  animation: fadeIn 2s ease-in-out;
  /* Ajoute l'animation */
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 100%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 0%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;

  }

  100% {
    opacity: 1;

  }
}

input {
  padding: 10px;
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: 30px;
  margin-right: 10px;
  width: 45px;
  color: #717d7e;
  font-size: 18px;
}

@keyframes flicker {

  0%,
  100% {
    background-image: radial-gradient(rgba(255, 255, 255, 0.8) 2px,
        transparent 0);
  }

  50% {
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px,
        transparent 0);
  }
}

.highlight {
  background: lightblue;
  background-size: 10px 15px;
  background-position: 0 0;
  animation: flicker 1s infinite ease-in-out;
  animation-delay: 0.6s;
}

.red-circle {
  background: radial-gradient(circle, #ff4133c7 10%, transparent 70%);
}

#submitBtn {
  border-radius: 20px;
  padding: 10px 12px;
  border: none;
  background-color: #38b738;
  background-size: 100% 300%;
  background-position: 0 0;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: rotate-scale-down 0.4s linear both;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


@keyframes rotate-scale-down {
  0% {
    transform: scale(1) rotateZ(0);
  }

  50% {
    transform: scale(0.5) rotateZ(180deg);
  }

  100% {
    transform: scale(1) rotateZ(360deg);
  }
}

#submitBtn:hover {
  background-color: #32a832;
 
  transform: scale(1.1);

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 
}


#submitBtn:active {
  transform: scale(0.95);
 
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);

  background-color: #2c8f2c;

}

#numberInput:disabled {
  background-color: orange;
  border-color: yellow;

}


#monBouton {
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #ff6600;
  color: black;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow:
    0 0 0 px #ff6600,
    0 0 2px #ff6600;
  animation: pulse 1.5s infinite;
  z-index: 1;
  background-color: rgba(255, 69, 0, 0.5);
  margin-top: 12px;

}



#monBouton:hover {
  background-color: #e85223;
}

.ball {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 10% 60%, #ffc107, #cc0000);
  box-shadow:
    inset -5px -5px 10px rgba(0, 0, 0, 0.5),
    inset 2px 2px 5px rgb(135 53 53 / 19%),
    0 0 20px rgb(175 33 33 / 70%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.8rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  z-index: 10;
  transition: transform 0.1s;
  animation:
    mymove 5s infinite,
    colorChange 5s infinite,
    fadeOut 6s infinite;
}



@keyframes mymove {
  from {
    top: -50px;
    transform: scale(1.2);
  }

  70% {
    transform: scale(0.8);
  }

  to {
    top: 230px;
    transform: scale(0.5);
  }
}

@keyframes colorChange {
  0% {
    background-color: rgba(252, 33, 0, 0.9);
  }

  45% {
    background-color: rgba(255, 0, 110, 0.8);
  }

}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}







.popup-bingo {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
  border: 2px solid yellow;
  animation-fill-mode: forwards;
}

.popup-bingo h2,
.popup-bingo h4,
.popup-bingo p {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFadeIn 0.6s ease-out forwards;
  margin: 10px 0;
  margin: 10px 0;
}

.popup-bingo h2 {
  animation-delay: 0.2s;
}

.popup-bingo h4:nth-of-type(1) {
  animation-delay: 0.4s;
}

.popup-bingo h4:nth-of-type(2) {
  animation-delay: 0.6s;
}

.popup-bingo p {
  animation-delay: 0.8s;
  font-color;
  blue;
}

@keyframes slideUpFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;

  animation: fadeIn 0.3s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.popup-bingo button {
  padding: 10px 20px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  transition: background 0.3s;
}

.popup-bingo button:hover {
  background: #45a049;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.carousel-container {
  width: 72%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  animation: scroll 12s linear infinite;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  margin: 0 auto;
  width: max-content;
}

.carousel-card {
  min-width: 145px;
  max-width: 145px;
  margin: 0 15px;
  padding: 20px;
  background-color: #f7eeca;
  border-radius: 10px;
  height: 150px;
  text-align: center;

  box-shadow: 0px -4px 15px -1px rgba(0, 0, 0, 0.4);
}

.carousel-card.transparent {
  opacity: 0;
}




@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.carousel-track:hover {
  animation-play-state: paused;
}

.location {
  font-weight: bold;
  font-size: 0.9em;
  margin-bottom: 4px;
  color: #e63017;
  text-align: center;
}

.day {
  font-size: 13px;
  font-weight: 500;
  padding-top: 2px;
  color: #7b241c;
}

.date-badge {
  font-size: 15px;
  font-weight: bold;
  color: #7b241c;
  border-bottom: 2px solid #717d7e;
  padding-bottom: 7px;
  margin-top: 5px;
}

.info {
  font-size: 0.7em;
  color: #555;
  margin-bottom: auto;
  padding: 7px;
}

.card-button {
  box-shadow: inset -8px 7px -2px #276873;
  background: linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
  background-color: #599bb3;
  border-radius: 12px;
  border: 2px solid #29668f;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 6px;
  text-decoration: none;
  margin-top: 5px;
}

.card-button:hover {
  background: linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
  background-color: #408c99;
}

.card-button:active {
  position: relative;
  top: 1px;
}



.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(247, 241, 228, 0.64);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-align: center;
  animation: fadeIn 0.6s ease-in-out;
  border: 2px solid yellow;
  animation-fill-mode: forwards;
  font-family: 'Arial', sans-serif;
  color: rgb(217 14 14);

}




.popup h3 {
  color: beige;
  margin-top: 0;
}

.popup p {
  margin: 3px 0;
  line-height: 1.6;
  color: #610000;
}

.popup-button {
  background-color: #5125de;
  color: #33c840;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 14px;
  font-size: 1em;
  transition: background-color 0.3s;
}

.popup-button:hover {
  background-color: #3e8e41;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.accordion {
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 16px;
  background-color: rgba(253, 246, 51, 0.7);
  border: none;
  outline: none;
  transition: background-color 0.2s ease;
  margin-top: 5px;
  border-radius: 5px;
}



.accordion:hover {
  background-color: rgb(182, 172, 11);
}

.accordion-icon {
  margin-right: 10px;
}

.accordion-arrow {
  float: right;
  transition: transform 0.3s;
}

.accordion.active .accordion-arrow {
  transform: rotate(180deg);
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fafafa;
  border-radius: 0 0 34px 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 11px;
  padding: 15px;
}

.price-item {
  background: #dedede;
  padding: 2px;
  border-radius: 10px;
  text-align: center;
}

.price-label {
  display: block;
  font-weight: bold;
  margin-bottom: 11px;
}

.price-value {
  color: #1c0eaa;

}

.info-section {
  padding: 11px;

}

.info-section p {
  margin: 12px 0;
  margin-bottom: 11px;
  font-size: smaller;
}


.confetti {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 10000;

  opacity: 0.9;
}

@keyframes explodeConfetti {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translate(var(--x), var(--y)) rotate(720deg);
    opacity: 0;
  }
}

9