.elementor-607 .elementor-element.elementor-element-17e46e6{--display:flex;}/* Start custom CSS for html, class: .elementor-element-af7f545 */body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #e9ecef;
}

.accueil-container {
  text-align: center;
  padding: 50px 20px;
}

.highlight {
  color: #c8102e;
  font-weight: bold;
}

.choix-jeux {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 40px auto 0;
}

.carte-jeu {
  display: flex;
  align-items: center;
  background: #111;
  border-left: 6px solid #c8102e;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  padding: 16px 20px;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.carte-jeu:hover {
  transform: scale(1.03);
}

.icone {
  font-size: 2rem;
  margin-right: 15px;
}

.texte {
  text-align: left;
}

.texte h2 {
  margin: 0;
  font-size: 1.3rem;
  color: #fff;
}

.texte p {
  margin: 4px 0 0;
  font-size: 0.95rem;
  color: #ccc;
}

.carte-classique { border-left-color: #007bff; }
.carte-photo { border-left-color: #28a745; }

.carte-jeu.indispo {
  position: relative;
  pointer-events: none; /* désactive le clic */
  opacity: 0.6;
}

.carte-jeu.indispo .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(100, 100, 100, 0.4), rgba(0, 0, 0, 0.6));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  z-index: 10;
  border-radius: 1rem;
  text-shadow: 1px 1px 2px #000;
  transition: background 0.3s ease;
}/* End custom CSS */