main {
	margin-top: 20px;
	letter-spacing: 0px;
}

/* ACCUEIL */
#accueil {
	background: var(--color-bg-dark);
	margin: 0 var(--marge-gauche-droite);
	color: white;
	font-size: 18px;
	padding: 20px;
	letter-spacing: 0px;
	border-radius: var(--adouss-border);
	margin-bottom: var(--espace-sous-section);
	border: 3px solid var(--color-yellow-vif);
	box-shadow:
		0 8px 20px rgba(255, 201, 71, 0.2),
		0 0 40px rgba(255, 201, 71, 0.3),
		inset 0 2px 0 rgba(255, 255, 255, 0.1),
		inset 0 -2px 0 rgba(0, 0, 0, 0.2);
	background: linear-gradient(145deg, var(--color-bg-dark), #1a1f2e);
	position: relative;
	overflow: hidden;
}

#accueil::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg,
			var(--color-yellow-vif),
			#ffdd44,
			var(--color-yellow-vif),
			#ffb700);
	border-radius: var(--adouss-border);
	z-index: -1;
	animation: border-glow 4s ease-in-out infinite;
}

@keyframes border-glow {

	0%,
	100% {
		opacity: 0.8;
		filter: brightness(1);
	}

	50% {
		opacity: 1;
		filter: brightness(1.2) saturate(1.1);
	}
}

.img-pacman {
	height: 60px;
	width: auto;
}

.img-fantome {
	margin-top: 5px;
	height: 30px;
	width: 150px;
}

/* HERO — accroche + CTA + preuve sociale */
#accueil {
	text-align: center;
}

.hero-accroche {
	max-width: 640px;
	margin: 0 auto 22px;
	text-align: center;
}

.cta-row {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.btn-hero-secondary {
	font-family: 'PoliceEcriture', Arial, sans-serif;
	letter-spacing: 1px;
	font-size: 1rem;
	padding: 12px 26px;
	border-radius: 50px;
	border: 2px solid var(--color-yellow-vif);
	color: var(--color-yellow-vif);
	background: transparent;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
	background: rgba(255, 201, 71, 0.12);
	box-shadow: 0 0 16px rgba(255, 201, 71, 0.35);
}

.trust-bar {
	display: flex;
	gap: 22px;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 0.95rem;
	color: #cbd5e1;
}

.trust-bar strong {
	color: var(--color-yellow-vif);
}

/* PRODUIT PHARE */
#produit-phare {
	background: linear-gradient(145deg, var(--color-bg-dark), #1a1f2e);
	margin: 0 var(--marge-gauche-droite);
	color: white;
	text-align: center;
	padding: 20px;
	border-radius: var(--adouss-border);
	margin-bottom: var(--espace-sous-section);
	border: 3px solid var(--color-yellow-vif);
	box-shadow:
		0 8px 20px rgba(255, 201, 71, 0.2),
		0 0 40px rgba(255, 201, 71, 0.25),
		inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.produit-phare-card {
	max-width: 640px;
	margin: 0 auto;
}

.badge-promo {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	color: white;
	font-size: 0.75em;
	font-weight: bold;
	padding: 4px 10px;
	border-radius: 12px;
}

/* COMMENT ÇA MARCHE */
#comment-ca-marche {
	background: linear-gradient(145deg, var(--color-bg-dark), #1a1f2e);
	margin: 0 var(--marge-gauche-droite);
	color: white;
	font-size: 18px;
	text-align: center;
	padding: 20px;
	border-radius: var(--adouss-border);
	margin-bottom: var(--espace-sous-section);
	border: 3px solid var(--color-yellow-vif);
	box-shadow:
		0 8px 20px rgba(255, 201, 71, 0.2),
		0 0 40px rgba(255, 201, 71, 0.25),
		inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.step-item img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid var(--color-yellow-vif);
	margin: 0 auto 14px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.concept-closing {
	max-width: 720px;
	margin: 24px auto 0;
	text-align: center;
	color: #cbd5e1;
}

/* ACTUALITÉS — bandeau compact */
.actu-strip {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
}

.actu-pill {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 201, 71, 0.3);
	border-radius: 30px;
	padding: 9px 18px;
	font-size: 0.92em;
	color: #cbd5e1;
}

.actu-pill b {
	color: var(--color-yellow-vif);
}

/* À PROPOS — liste d'approche */
.approche-liste {
	list-style: none;
	padding: 0;
	margin: 20px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* ACTUALITÉS */
#Actu {
	background: linear-gradient(145deg, var(--color-bg-dark), #1a1f2e);
	margin: 0 var(--marge-gauche-droite);
	color: white;
	font-size: 18px;
	padding: 20px;
	border-radius: var(--adouss-border);
	margin-bottom: var(--espace-sous-section);
	border: 3px solid var(--color-yellow-vif);
	box-shadow:
		0 8px 20px rgba(255, 201, 71, 0.2),
		0 0 40px rgba(255, 201, 71, 0.25),
		inset 0 2px 0 rgba(255, 255, 255, 0.1);
	position: relative;
}

#Actu::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(90deg,
			var(--color-yellow-vif) 0%,
			#ffdd44 25%,
			var(--color-yellow-vif) 50%,
			#ffb700 75%,
			var(--color-yellow-vif) 100%);
	border-radius: var(--adouss-border);
	z-index: -1;
	animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}

	100% {
		background-position: 200% 0;
	}
}

.Bandeau-Actu {
	display: flex;
	align-items: center;
}

.Bandeau-Actu img {
	height: 100px;
	width: 100px;
	border-radius: var(--adouss-border);
	border: 3px solid var(--color-purple-vif);
	margin-right: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.bandeau_actu {
	background-color: transparent;
	width: 100%;
	margin: 5px auto;
}

.actu_container {
	background: white;
	border: 3px solid var(--color-purple-vif);
	border-radius: 50px;
	height: 400px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.actu_diapo {
	height: 100%;
	display: flex;
	width: 400%;
	transition: all 1s;
}

.actu_diapo section {
	flex-basis: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: black;
	text-align: center;
	padding: 20px;
}

.actu_diapo h4 {
	font-family: 'PoliceEcriture';
	font-size: 26px;
	color: var(--color-purple-vif);
	margin: 10px 0;
	font-weight: bold;
	text-shadow: none;
}

.actu_diapo p {
	font-size: 16px;
	color: #333;
	margin: 0;
	max-width: 600px;
	line-height: 1.6;
	padding: 10px;
}

.bouton_diapo_actu .b {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.bouton_diapo_actu .b img {
	height: 50px;
	width: 50px;
	transition: transform 0.2s ease;
}

.bouton_diapo_actu .b img:hover {
	transform: scale(1.2);
}

.b.prevactu {
	left: 10px;
}

.b.suivactu {
	right: 10px;
}

/* LISTE DES DEFIS */
#Liste_defis {
	background: linear-gradient(145deg, #ffffff, #f8f9ff);
	margin: 0 var(--marge-gauche-droite);
	color: var(--color-bg-dark);
	font-size: 18px;
	padding: 20px;
	border-radius: var(--adouss-border);
	margin-bottom: var(--espace-sous-section);
	border: 3px solid var(--color-purple-vif);
	box-shadow:
		0 8px 20px rgba(139, 92, 246, 0.2),
		0 0 25px rgba(139, 92, 246, 0.3),
		0 0 40px rgba(139, 92, 246, 0.15),
		inset 0 2px 0 rgba(255, 255, 255, 0.9),
		inset 0 -2px 0 rgba(139, 92, 246, 0.1);
}

#Liste_defis h2,
#Liste_defis h3,
#Liste_defis h4 {
	color: var(--color-purple-vif);
}

.L_defis {
	display: flex;
	align-items: center;
}

.L_defis img {
	height: 100px;
	width: 100px;
	border-radius: var(--adouss-border);
	border: 3px solid var(--color-yellow-vif);
	margin-right: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.bandeau_defis {
	background-color: transparent;
	width: 100%;
	margin: 5px auto;
}

.defis_container {
	background: var(--color-bg-dark);
	border: 3px solid var(--color-yellow-vif);
	border-radius: 50px;
	height: 400px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.home_defis_diapo {
	height: 100%;
	display: flex;
	width: 500%;
	transition: all 1s;
}

.home_defis_diapo section {
	flex-basis: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	padding: 20px;
	margin: 0;
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.home_defis_diapo img {
	height: 300px;
	width: 400px;
	border: 2px solid #03224C;
	border-radius: 20px;
	cursor: pointer;
	/*margin-bottom: 15px;*/
	object-fit: cover;
}

.home_defis_diapo h4 {
	font-family: 'PoliceEcriture';
	font-size: 26px;
	color: var(--color-yellow-vif);
	margin: 5px 0;
	font-weight: bold;
	text-shadow: none;
}

.home_defis_diapo p {
	font-size: 16px;
	color: white;
	margin: 0;
	max-width: 1000px;
	line-height: 1.4;
	background: transparent;
	padding: 10px;
	border-radius: 10px;
}

/* Styles pour les défis non développés dans le carousel principal */
.home_defis_diapo .defi_non_developpe {
	position: relative;
	opacity: 0.8;
	filter: grayscale(20%);
}

.home_defis_diapo .defi_non_developpe h4 {
	color: #cccccc !important;
	opacity: 0.9;
}

.home_defis_diapo .defi_non_developpe p {
	color: #cccccc !important;
	opacity: 0.8;
}

/* Masque de développement pour carousel défis */
.masque_developpement_defi {
	position: relative;
	display: inline-block;
}

/* Filigrane pour carousel défis */
.filigrane_defi {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(45deg,
			rgba(255, 216, 2, 0.1) 0%,
			rgba(255, 216, 2, 0.2) 25%,
			rgba(255, 216, 2, 0.1) 50%,
			rgba(255, 216, 2, 0.2) 75%,
			rgba(255, 216, 2, 0.1) 100%);
	background-size: 40px 40px;
	animation: filigrane-move 10s linear infinite;
	border-radius: 20px;
	z-index: 2;
}

.filigrane_defi .filigrane-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #FFD802;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	background: rgba(3, 34, 76, 0.9);
	padding: 15px;
	border-radius: 15px;
	border: 2px solid #FFD802;
	backdrop-filter: blur(5px);
	animation: filigrane-pulse 2s ease-in-out infinite;
}

.filigrane_defi .filigrane-icon {
	font-size: 24px;
	margin-bottom: 5px;
	animation: icon-rotate 3s linear infinite;
}

.filigrane_defi .filigrane-text {
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 1px;
	margin-bottom: 3px;
}

.filigrane_defi .filigrane-date {
	font-size: 10px;
	opacity: 0.8;
	font-style: italic;
}

/* Effet de désaturation sur l'image pour carousel défis */
.defi_non_developpe .masque_developpement_defi img {
	filter: grayscale(40%) brightness(0.9);
	transition: all 0.3s ease;
}

.defi_non_developpe:hover .masque_developpement_defi img {
	filter: grayscale(20%) brightness(1);
}

.bouton_diapo .b {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.bouton_diapo .b img {
	height: 50px;
	width: 50px;
}

.bouton_diapo .b img:hover {
	transform: scale(1.2);
}

.b.prev {
	left: 10px;
}

.b.suiv {
	right: 10px;
}

/* DEFIS PLUS */
#defis_plus {
	background: linear-gradient(145deg, #ffffff, #f8f9ff);
	margin: 0 var(--marge-gauche-droite);
	color: var(--color-bg-dark);
	font-size: 18px;
	padding: 20px;
	border-radius: var(--adouss-border);
	margin-bottom: var(--espace-sous-section);
	border: 3px solid var(--color-purple-vif);
	box-shadow:
		0 8px 20px rgba(139, 92, 246, 0.2),
		0 0 25px rgba(139, 92, 246, 0.3),
		0 0 40px rgba(139, 92, 246, 0.15),
		inset 0 2px 0 rgba(255, 255, 255, 0.9),
		inset 0 -2px 0 rgba(139, 92, 246, 0.1);
}

#defis_plus h2,
#defis_plus h3,
#defis_plus h4 {
	color: var(--color-purple-vif);
}

.L_defis_plus {
	display: flex;
	align-items: center;
}

.L_defis_plus img {
	height: 100px;
	width: 100px;
	border-radius: var(--adouss-border);
	border: 3px solid var(--color-yellow-vif);
	margin-right: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.bandeau_defis_plus {
	background-color: transparent;
	width: 100%;
	margin: 5px auto;
}

.defis_plus_container {
	background: var(--color-bg-dark);
	border: 3px solid var(--color-yellow-vif);
	border-radius: 50px;
	height: 400px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.home_defis_plus_diapo {
	height: 100%;
	display: flex;
	width: 400%;
	transition: all 1s;
}

.home_defis_plus_diapo section {
	flex-basis: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	padding: 20px;
	margin: 0;
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.home_defis_plus_diapo img {
	height: 200px;
	width: 200px;
	border: 2px solid #03224C;
	border-radius: 50px;
	cursor: pointer;
	margin-bottom: 15px;
	object-fit: contain;
	background-color: white;
	padding: 10px;
}

.home_defis_plus_diapo h4 {
	font-family: 'PoliceEcriture';
	font-size: 24px;
	color: var(--color-yellow-vif);
	margin: 10px 0;
	font-weight: bold;
	text-shadow: none;
}

.home_defis_plus_diapo p {
	font-size: 16px;
	color: white;
	margin: 0;
	max-width: 300px;
	line-height: 1.4;
}

.bouton_diapo_defis_plus .b {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.bouton_diapo_defis_plus .b img {
	height: 50px;
	width: 50px;
}

.bouton_diapo_defis_plus .b img:hover {
	transform: scale(1.2);
}

.b.prevdefis_plus {
	left: 10px;
}

.b.suivdefis_plus {
	right: 10px;
}

/* CONCEPT */
#concept {
	background: var(--color-bg-dark);
	margin: 0 var(--marge-gauche-droite);
	display: flex;
	color: white;
	font-size: 16px;
	padding: 20px;
	border-radius: var(--adouss-border);
	margin-bottom: var(--espace-sous-section);
	border: 3px solid var(--color-yellow-vif);
	box-shadow: 0 8px 20px rgba(255, 201, 71, 0.2);
}

.Colonne1,
.Colonne2 {
	flex: 1;
}

.text_col1 {
	display: flex;
	align-items: center;
	margin: 0;
}

.Colonne1 img {
	height: 75px;
	width: 75px;
	border-radius: 20px;
	border: 3px solid var(--color-yellow-vif);
	margin-right: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.Colonne2 {
	font-family: 'PoliceEcriture';
	font-size: 18px;
	color: var(--color-yellow-vif);
	background-color: transparent;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.Colonne2 img {
	height: 150px;
	width: 150px;
	border-radius: var(--adouss-border);
	border: 3px solid var(--color-yellow-vif);
	margin-top: 100px;
	margin-bottom: 0;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* À PROPOS */
#a-propos {
	background: var(--color-bg-dark);
	color: white;
	padding: 20px;
	border-radius: var(--adouss-border);
	border: 3px solid var(--color-yellow-vif);
	margin: 0 var(--marge-gauche-droite);
	margin-bottom: var(--espace-sous-section);
	box-shadow: 0 8px 20px rgba(255, 201, 71, 0.2);
}

footer {
	text-align: right;
	color: white;
}

/* STEPS DETAILS - Comment ça marche */
.steps-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 30px;
	position: relative;
}

.step-item {
	background: rgba(255, 255, 255, 0.15);
	border: 3px solid var(--color-yellow-vif);
	border-radius: 20px;
	padding: 80px 25px 25px 25px;
	position: relative;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.step-item:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-10px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

/* Numéro de l'étape */
.step-item::before {
	content: attr(data-step);
	position: absolute;
	left: 50%;
	top: -5px;
	transform: translateX(-50%);
	width: 70px;
	height: 70px;
	background: var(--color-bg-dark);
	color: var(--color-yellow-vif);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'PoliceEcriture', Arial, sans-serif;
	font-size: 32px;
	font-weight: bold;
	border: 5px solid var(--color-yellow-vif);
	z-index: 1;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.step-item h3 {
	color: var(--color-yellow-vif);
	font-size: 20px;
	margin-bottom: 15px;
	margin-top: 20px;
	text-align: center;
}

.step-item p {
	color: #fff;
	line-height: 1.6;
	margin: 0;
	text-align: center;
}

/* REASON DETAILS - Pourquoi un escape game personnalisé */
.reason-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.reason-item {
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid var(--color-yellow-vif);
	border-radius: 15px;
	padding: 20px;
	transition: all 0.3s ease;
}

.reason-item:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.reason-item h3 {
	color: #FFD802;
	font-size: 20px;
	margin-bottom: 10px;
	margin-top: 0;
}

.reason-item p {
	color: white;
	line-height: 1.6;
	margin: 0;
}

/* ADULT DETAILS - Section adultes */
.adult-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.adult-item {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid #FFD802;
	border-radius: 15px;
	padding: 20px;
	transition: all 0.3s ease;
}

.adult-item:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.adult-item h3 {
	color: #FFD802;
	font-size: 20px;
	margin-bottom: 10px;
	margin-top: 0;
}

.adult-item p {
	color: #F3F7FA;
	line-height: 1.6;
	margin: 0;
}

/* CHILDREN THEMES - Section enfants */
.children-themes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.theme-item {
	background: rgba(3, 34, 76, 0.3);
	border: 2px solid #fff;
	border-radius: 15px;
	padding: 20px;
	transition: all 0.3s ease;
}

.theme-item:hover {
	background: rgba(3, 34, 76, 0.5);
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.theme-item h3 {
	color: #F78A8F;
	font-size: 20px;
	margin-bottom: 10px;
	margin-top: 0;
}

.theme-item p {
	color: #03224C;
	line-height: 1.6;
	margin: 0;
}

/* ADVANTAGES DETAILS - Section avantages */
.advantages-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.advantage-item {
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid var(--color-yellow-vif);
	border-radius: 15px;
	padding: 20px;
	transition: all 0.3s ease;
}

.advantage-item:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.advantage-item h3 {
	color: var(--color-yellow-vif);
	font-size: 20px;
	margin-bottom: 10px;
	margin-top: 0;
}

.advantage-item p {
	color: white;
	line-height: 1.6;
	margin: 0;
}

/* STYLES SPÉCIFIQUES POUR LA PAGE SUR-MESURE (escape-game-personnalise.php) */

/* Section Escape Games Adultes - fond blanc/bleu clair */
#defis_plus:has(.adult-details) {
	background: linear-gradient(145deg, #ffffff, #f8f9ff) !important;
	color: var(--color-bg-dark);
}

/* Titres des sections Adultes en violet vif */
#defis_plus:has(.adult-details) h2,
#defis_plus:has(.adult-details) h3,
#defis_plus:has(.adult-details) h4 {
	color: var(--color-purple-vif) !important;
}

/* Section Escape Games Enfants - fond blanc/bleu clair */
#Liste_defis:has(.children-themes) {
	background: linear-gradient(145deg, #ffffff, #f8f9ff) !important;
	color: var(--color-bg-dark);
}

/* Titres des sections Enfants en violet vif */
#Liste_defis:has(.children-themes) h2,
#Liste_defis:has(.children-themes) h3,
#Liste_defis:has(.children-themes) h4 {
	color: var(--color-purple-vif) !important;
}

/* Section Pourquoi un Escape Game Personnalisé - fond sombre comme Avantages */
#Liste_defis:has(.reason-details) {
	background: linear-gradient(145deg, var(--color-bg-dark), #1a1f2e);
	margin: 0 var(--marge-gauche-droite);
	color: white;
	font-size: 18px;
	padding: 20px;
	border-radius: var(--adouss-border);
	margin-bottom: var(--espace-sous-section);
	border: 3px solid var(--color-yellow-vif);
	box-shadow: 0 8px 20px rgba(255, 201, 71, 0.2), 0 0 40px rgba(255, 201, 71, 0.25), inset 0 2px 0 rgba(255, 255, 255, 0.1);
	position: relative;
}

/* Titres de la section Pourquoi en jaune vif comme Avantages */
#Liste_defis:has(.reason-details) h2,
#Liste_defis:has(.reason-details) h3,
#Liste_defis:has(.reason-details) h4 {
	color: var(--color-yellow-vif) !important;
}

/* Ajustement de L_defis pour les sections avec fond clair */
#defis_plus:has(.adult-details) .L_defis p,
#Liste_defis:has(.children-themes) .L_defis p {
	color: var(--color-bg-dark);
}

/* Ajustement de L_defis pour la section Pourquoi avec fond sombre */
#Liste_defis:has(.reason-details) .L_defis p {
	color: white;
}

/* Ajustement des items adultes pour meilleure lisibilité sur fond clair */
.adult-item {
	background: rgba(139, 92, 246, 0.15);
	border: 2px solid var(--color-purple-vif);
}

.adult-item:hover {
	background: rgba(139, 92, 246, 0.35);
}

.adult-item h3 {
	color: var(--color-purple-vif);
}

.adult-item p {
	color: var(--color-bg-dark);
}

/* Ajustement des items enfants pour meilleure lisibilité sur fond clair */
.theme-item {
	background: rgba(139, 92, 246, 0.15);
	border: 2px solid var(--color-purple-vif);
}

.theme-item:hover {
	background: rgba(139, 92, 246, 0.35);
}

.theme-item h3 {
	color: var(--color-purple-vif);
}

.theme-item p {
	color: var(--color-bg-dark);
}
/* ============================================
   TÉMOIGNAGES ET NEWSLETTER
   ============================================ */
