
#cookie-banner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7); /* fond noir plus transparent */
  border: 2px solid white;

  color: white;
  padding: 1rem 2rem;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  font-size: 0.95rem;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  min-width: 260px;
  max-width: 90vw;
  text-align: center;
}


#cookie-banner.show {
  display: flex;
}

#cookie-banner a {
  color: #f1d600;
  text-decoration: underline;
}

#cookie-banner img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#cookie-banner img:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    font-size: 0.85rem;
  }
}
.lien-animé {
  position: relative;
  color: #f1d600;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.lien-animé::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #f1d600;
  transition: width 0.3s ease;
}

.lien-animé:hover {
  color: #fff;
}

.lien-animé:hover::after {
  width: 100%;
}
.cookie-highlight {
  color: #f1d600;
  font-weight: bold;
  cursor: pointer;
}
