.card {
  background-color: white;
  width: 300px;
  border-radius: 150px 150px 10px 10px;
  padding: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin:40px;
  text-decoration: none;
  list-style-type: none;
  display: flex;
  flex-direction:column ;
  align-content: center;
  justify-content: space-between;
}

.zone-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: #F4C87D;
  color: #333;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.association-logo {
  width: 80%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Zone du logo */
.card-logo {
  height: 150px;
  width: 80%;
  object-fit: contain;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:0px 10%  1rem 10%;
}


.style-de-jeu {
  background-color: #e9f6e9;
  padding: 8px 12px;
  border-radius: 10px;
  color: #2b2b2b;
  margin-bottom: 10px;
  font-weight: 500;
}

.nom-association {
  font-size: 16px;
  font-weight: bold;
  margin: 8px 0 2px 0;
}

.description-association {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.association-grid {
    display: flex;
    flex-wrap: wrap;
  
    padding-left: 5px;
    margin: 0px 10px;
}

  
  .scroll-1::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  .scroll-1::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: #888;
  }
  
  
  #containerscr {
    display: flex;
    overflow-x: scroll;
    overflow-y: none;
    scroll-snap-type: y none;
    padding: 5%;
    margin :0;
    width: 85%;
    scroll-snap-type: x mandatory;
    scroll-padding-top: 24px;
    border-radius: 8px;
    gap: 50px;
  }
  
  #containerscr .card {
    flex: 0 0 300px;
    scroll-snap-align: start;
  }



