@font-face {
	font-family: "Amaranth";
	src: url('/fonts/Amaranth-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Comfortaa";
	src: url('/fonts/Comfortaa-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/* Variables scopees a .aide-fenetre (plutot que :root) : ce fragment est
   inclus a la fois sur la page /aide standalone et dans la vue interne du jeu
   (index.html) - profil.css/classement.css declarent des noms de variables
   proches (--ink, --orange...) avec des valeurs differentes, un :root global
   les ferait s'ecraser silencieusement des que les 3 pages sont chargees en
   meme temps. */
.aide-fenetre {
	color-scheme: light;
	--green-950: #173615;
	--green-800: #285c22;
	--green-700: #397a2e;
	--green-500: #6ea937;
	--cream: #fffdf7;
	--paper: rgba(255, 253, 247, 0.97);
	--orange: #e98a08;
	--orange-dark: #b96500;
	--ink: #273127;
	--muted: #687269;
	--line: #d8dfd4;
	--shadow: 0 24px 70px rgba(13, 34, 12, 0.34);
	--radius: 26px;
}

.page-aide *,
.aide-fenetre,
.aide-fenetre * {
	box-sizing: border-box;
}

body.page-aide {
	min-height: 100%;
}

body.page-aide {
	margin: 0;
	background-color: #589306;
	background-image: url(/images/padding.png);
	color: #273127;
	font-family: "Comfortaa", sans-serif;
}

body.page-aide::before {
	position: fixed;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 20%, rgba(77, 101, 35, 0) 59%, rgba(0, 0, 0, 0.58) 100%);
	content: "";
}

.aide-fenetre button,
.aide-fenetre input {
	font: inherit;
}

.aide-fenetre .aide-page {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 100vh;
	padding: 16px;
}

.aide-fenetre {
	width: 100%;
	min-height: calc(100dvh - 32px);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: var(--radius);
	background: #fffefa;
	box-shadow: var(--shadow);
}

.aide-fenetre .aide-entete {
	flex: none;
	min-height: 88px;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 18px 22px;
	border-bottom: 1px solid var(--line);
	background: var(--paper);
}

.aide-fenetre .aide-icone-titre {
	flex: none;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 13px;
	background: #eaf3dc;
	color: var(--green-700);
}

.aide-fenetre .aide-icone-titre svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.aide-fenetre .aide-entete small,
.aide-fenetre .aide-contenu > header small {
	display: block;
	margin-bottom: 3px;
	color: var(--green-700);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.aide-fenetre .aide-entete h1,
.aide-fenetre .aide-contenu h2 {
	margin: 0;
	font-family: "Amaranth", sans-serif;
	font-weight: 400;
}

.aide-fenetre .aide-entete h1 {
	font-size: 1.75rem;
	line-height: 1;
}

.aide-fenetre .aide-fermer {
	flex: none;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	margin-left: auto;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: white;
	color: var(--muted);
	font-size: 1.55rem;
	line-height: 1;
	text-decoration: none;
}

.aide-fenetre .aide-fermer:hover,
.aide-fenetre .aide-fermer:focus-visible {
	border-color: #aeb9aa;
	color: var(--ink);
}

.aide-fenetre .aide-corps {
	flex: 1;
	min-height: 0;
	display: grid;
	grid-template-columns: 245px minmax(0, 1fr);
	overflow: hidden;
}

.aide-fenetre .aide-navigation {
	min-height: 0;
	overflow-y: auto;
	padding: 17px 12px;
	border-right: 1px solid var(--line);
	background: #f3f6f0;
}

.aide-fenetre .aide-navigation > p {
	margin: 0 10px 9px;
	color: #849081;
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.aide-fenetre .aide-navigation button {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: 37px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	margin: 0 0 4px;
	padding: 10px;
	border: 0;
	border-radius: 13px;
	background: transparent;
	color: var(--ink);
	text-align: left;
	cursor: pointer;
}

.aide-fenetre .aide-navigation button:disabled {
	opacity: 1;
}

.aide-fenetre .aide-navigation button i {
	width: 37px;
	height: 37px;
	display: grid;
	place-items: center;
	border-radius: 11px;
	background: rgba(57, 122, 46, 0.09);
	color: var(--green-700);
	font-style: normal;
	font-weight: 800;
}

.aide-fenetre .aide-navigation button b,
.aide-fenetre .aide-navigation button small {
	display: block;
}

.aide-fenetre .aide-navigation button b {
	font-size: 0.76rem;
}

.aide-fenetre .aide-navigation button small {
	margin-top: 3px;
	color: var(--muted);
	font-size: 0.58rem;
}

.aide-fenetre .aide-navigation button.actif {
	background: white;
	box-shadow: 0 4px 16px rgba(29, 52, 26, 0.09);
}

.aide-fenetre .aide-navigation button.actif::before {
	position: absolute;
	top: 12px;
	bottom: 12px;
	left: 0;
	width: 3px;
	border-radius: 4px;
	background: var(--orange);
	content: "";
}

.aide-fenetre .aide-navigation button.actif i {
	background: var(--green-700);
	color: white;
}

.aide-fenetre .aide-navigation button:not(.actif):hover,
.aide-fenetre .aide-navigation button:not(.actif):focus-visible {
	background: rgba(255, 255, 255, 0.68);
}

.aide-fenetre .aide-contenu {
	min-width: 0;
	min-height: 0;
	overflow-y: auto;
	padding: 25px 30px 30px;
	background: #fcfdfb;
}

.aide-fenetre .aide-contenu h2 {
	color: var(--ink);
	font-size: 1.7rem;
}

.aide-fenetre .aide-contenu > header p {
	margin: 5px 0 0;
	color: var(--muted);
	font-size: 0.72rem;
	line-height: 1.5;
}

.aide-fenetre .aide-recherche {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	margin: 19px 0 20px;
	padding: 0 13px;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: #f4f6f2;
	box-shadow: inset 0 2px 5px rgba(25, 48, 19, 0.04);
}

.aide-fenetre .aide-recherche svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #8b9589;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.aide-fenetre .aide-recherche input {
	width: 100%;
	height: 50px;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--muted);
	font-size: 0.73rem;
}

.aide-fenetre .aide-recherche input:disabled {
	opacity: 1;
	-webkit-text-fill-color: var(--muted);
}

.aide-fenetre .aide-resultat-statut {
	margin: -9px 2px 10px;
	color: var(--muted);
	font-size: 0.62rem;
	font-weight: 700;
}

.aide-fenetre .aide-questions {
	display: grid;
	gap: 10px;
}

.aide-fenetre .aide-question {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: white;
	box-shadow: 0 5px 18px rgba(29, 52, 26, 0.06);
}

.aide-fenetre .aide-question[hidden] {
	display: none;
}

.aide-fenetre .aide-question summary {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 11px;
	padding: 15px 16px;
	color: var(--ink);
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.4;
	cursor: pointer;
	list-style: none;
}

.aide-fenetre .aide-question summary::-webkit-details-marker {
	display: none;
}

.aide-fenetre .aide-question summary:hover,
.aide-fenetre .aide-question summary:focus-visible {
	background: #f8faf6;
}

.aide-fenetre .aide-question[open] summary {
	border-bottom: 1px solid var(--line);
}

.aide-fenetre .aide-question-icone {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border-radius: 11px;
	background: #eaf3dc;
	color: var(--green-700);
	font-size: 1rem;
}

.aide-fenetre .aide-question summary > i {
	position: relative;
	width: 12px;
	height: 12px;
	transform: rotate(45deg);
	border-right: 2px solid #71806e;
	border-bottom: 2px solid #71806e;
	transition: transform 160ms ease;
}

.aide-fenetre .aide-question[open] summary > i {
	transform: rotate(225deg) translate(-3px, -3px);
}

.aide-fenetre .aide-detail-calcul {
	margin: 8px 0 0;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #f8faf6;
}

.aide-fenetre .aide-detail-calcul summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 6px 10px;
	color: var(--green-700);
	font-size: 0.72rem;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.aide-fenetre .aide-detail-calcul summary::-webkit-details-marker {
	display: none;
}

.aide-fenetre .aide-detail-calcul[open] summary {
	border-bottom: 1px solid var(--line);
}

.aide-fenetre .aide-detail-calcul summary > i {
	position: relative;
	flex: none;
	width: 8px;
	height: 8px;
	transform: rotate(45deg);
	border-right: 2px solid #71806e;
	border-bottom: 2px solid #71806e;
	transition: transform 160ms ease;
}

.aide-fenetre .aide-detail-calcul[open] summary > i {
	transform: rotate(225deg) translate(-2px, -2px);
}

.aide-fenetre .aide-detail-calcul > div {
	padding: 6px 10px 8px;
	color: var(--muted);
	font-size: 0.72rem;
	line-height: 1.5;
}

.aide-fenetre .aide-detail-calcul > div ul {
	margin: 0;
	padding-left: 16px;
}

.aide-fenetre .aide-detail-calcul > div li + li {
	margin-top: 3px;
}

.aide-fenetre .aide-detail-calcul > div p {
	margin: 8px 0 4px;
}

.aide-fenetre .aide-detail-calcul > div p:first-child {
	margin-top: 0;
}

.aide-fenetre .aide-table-mini {
	width: auto;
	min-width: 200px;
	margin: 0 0 4px;
}

.aide-fenetre .aide-table-mini th,
.aide-fenetre .aide-table-mini td {
	padding: 3px 8px;
}

.aide-fenetre .aide-code {
	margin: 8px 0;
	padding: 10px 12px;
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--green-950);
}

.aide-fenetre .aide-code code {
	color: #d9f2cf;
	font-family: "Courier New", Courier, monospace;
	font-size: 0.7rem;
	line-height: 1.55;
	white-space: pre;
}

.aide-fenetre .aide-reponse a {
	color: var(--green-700);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.aide-fenetre .aide-reponse a:hover,
.aide-fenetre .aide-reponse a:focus-visible {
	color: var(--green-800);
}

.aide-fenetre .aide-table-scroll {
	margin-top: 10px;
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: 10px;
}

.aide-fenetre .aide-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.72rem;
	white-space: nowrap;
}

.aide-fenetre .aide-table th,
.aide-fenetre .aide-table td {
	padding: 5px 10px;
	text-align: left;
}

.aide-fenetre .aide-table thead th {
	background: #f1f4ef;
	color: var(--muted);
	font-weight: 700;
}

.aide-fenetre .aide-table tbody tr:nth-child(even) {
	background: #f8faf6;
}

.aide-fenetre .aide-table tbody tr + tr {
	border-top: 1px solid var(--line);
}

.aide-fenetre .aide-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
	clip-path: inset(50%);
	border: 0;
}

.aide-fenetre .aide-oui {
	color: #2f8f3c;
}

.aide-fenetre .aide-non {
	color: #c0392b;
}

.aide-fenetre .aide-bordure-palier {
	display: inline-flex;
	padding: 2px;
	border: 0;
	background: none;
	cursor: zoom-in;
	border-radius: 6px;
}

.aide-fenetre .aide-bordure-palier:hover,
.aide-fenetre .aide-bordure-palier:focus-visible {
	background: #eaf3dc;
}

.aide-fenetre .aide-bordure-palier img {
	display: block;
	width: 26px;
	height: 26px;
	object-fit: contain;
}

.aide-fenetre .aide-zoom-bordure {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(12, 21, 12, 0.78);
	backdrop-filter: blur(4px);
}

.aide-fenetre .aide-zoom-bordure[hidden] {
	display: none;
}

.aide-fenetre .aide-zoom-bordure img {
	max-width: min(70vw, 320px);
	max-height: 70vh;
	filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
}

.aide-fenetre .aide-zoom-bordure-fermer {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	color: white;
	cursor: pointer;
}

.aide-fenetre .aide-zoom-bordure-fermer:hover,
.aide-fenetre .aide-zoom-bordure-fermer:focus-visible {
	background: rgba(255, 255, 255, 0.24);
}

.aide-fenetre .aide-reponse {
	padding: 18px 20px 21px;
	color: var(--muted);
	font-size: 0.72rem;
	line-height: 1.65;
}

.aide-fenetre .aide-reponse > p:first-child {
	margin-top: 0;
}

.aide-fenetre .aide-reponse strong {
	color: var(--ink);
}

.aide-fenetre .aide-etapes {
	display: grid;
	gap: 12px;
	margin: 14px 0 16px;
	padding: 0;
	counter-reset: aide-etape;
	list-style: none;
}

.aide-fenetre .aide-etapes li {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr);
	align-items: start;
	gap: 11px;
	counter-increment: aide-etape;
}

.aide-fenetre .aide-etapes li::before {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	margin-top: 2px;
	border-radius: 50%;
	background: var(--green-700);
	color: white;
	font-size: 0.68rem;
	font-weight: 900;
	content: counter(aide-etape);
}

.aide-fenetre .aide-etapes p {
	margin: 0 0 8px;
}

/* Reproductions non interactives des commandes citées dans la réponse. */
.aide-fenetre .aide-bouton-interface {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 178px;
	padding: 9px 15px;
	border-radius: 11px;
	color: white;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-shadow: 0 1px 1px rgba(45, 83, 16, 0.3);
	user-select: none;
}

.aide-fenetre .aide-bouton-interface i {
	width: 20px;
	height: 20px;
	display: inline-grid;
	place-items: center;
	margin-right: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	font-style: normal;
}

.aide-fenetre .aide-bouton-jouer {
	min-width: 220px;
	flex-direction: column;
	padding: 12px 18px;
	background: linear-gradient(#ef9b1d, #df7d00);
	box-shadow: 0 4px 0 var(--orange-dark);
	text-shadow: none;
}

.aide-fenetre .aide-bouton-jouer strong {
	color: white;
	font-size: 1rem;
	letter-spacing: 0.02em;
}

.aide-fenetre .aide-bouton-jouer small {
	margin-top: 2px;
	font-size: 0.6rem;
	font-weight: 600;
	opacity: 0.85;
}

.aide-fenetre .aide-bouton-valider {
	border: 2px solid #5c8f24;
	background: linear-gradient(180deg, #8dcc3e 0%, #72ae2d 100%);
	box-shadow: 0 4px 9px rgba(24, 58, 15, 0.25), inset 0 1px rgba(255, 255, 255, 0.35);
}

.aide-fenetre .aide-bouton-pret {
	background: #4a7a1e;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.24);
}

.aide-fenetre .aide-bouton-rejoindre {
	min-width: 220px;
	flex-direction: column;
	padding: 12px 18px;
	border: 1px solid var(--line);
	background: var(--paper);
	color: var(--ink);
	box-shadow: 0 3px 8px rgba(29, 52, 26, 0.09);
	text-shadow: none;
}

.aide-fenetre .aide-bouton-rejoindre strong {
	color: var(--ink);
	font-size: 1rem;
	letter-spacing: 0.02em;
}

.aide-fenetre .aide-bouton-rejoindre small {
	margin-top: 2px;
	color: var(--muted);
	font-size: 0.6rem;
	font-weight: 600;
	opacity: 0.85;
}

.aide-fenetre .aide-code-invitation {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	margin: 9px 0;
	padding: 8px 16px;
	border: 1px dashed #b9c9ae;
	border-radius: 11px;
	background: #f4f6f2;
}

.aide-fenetre .aide-code-invitation small {
	color: var(--muted);
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.aide-fenetre .aide-code-invitation strong {
	color: var(--green-800);
	font-family: "Amaranth", sans-serif;
	font-size: 1.15rem;
	letter-spacing: 0.18em;
}

.aide-fenetre .aide-resultat {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr);
	align-items: center;
	gap: 11px;
	padding: 13px 14px;
	border: 1px solid #cfe0bf;
	border-radius: 13px;
	background: #f0f7e9;
}

.aide-fenetre .aide-resultat > span {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--green-700);
	color: white;
	font-weight: 900;
}

.aide-fenetre .aide-resultat p,
.aide-fenetre .aide-note {
	margin: 0;
}

.aide-fenetre .aide-avertissement {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr);
	align-items: center;
	gap: 11px;
	margin-top: 15px;
	padding: 13px 14px;
	border: 1px solid #efb4b0;
	border-radius: 13px;
	background: #fff1f0;
	color: #7f312c;
}

.aide-fenetre .aide-avertissement > span {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #c84940;
	color: white;
	font-weight: 900;
}

.aide-fenetre .aide-avertissement p {
	margin: 0;
}

.aide-fenetre .aide-avertissement strong {
	color: #8f2f29;
}

.aide-fenetre .aide-note {
	margin-top: 11px;
	color: var(--green-800);
	font-weight: 700;
}

.aide-fenetre .aide-note > span {
	display: inline-grid;
	place-items: center;
	width: 19px;
	height: 19px;
	margin-right: 5px;
	border-radius: 50%;
	background: #dff0cf;
}

.aide-fenetre .aide-vide {
	min-height: 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 38px 20px;
	border: 1px dashed #cdd6c9;
	border-radius: 16px;
	background: #f7f9f5;
	text-align: center;
}

.aide-fenetre .aide-vide[hidden] {
	display: none;
}

.aide-fenetre .aide-vide > span {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	margin-bottom: 12px;
	border-radius: 14px;
	background: #eaf3dc;
	color: var(--green-700);
	font-size: 1.1rem;
	font-weight: 800;
}

.aide-fenetre .aide-vide h3 {
	margin: 0;
	font-size: 0.86rem;
}

.aide-fenetre .aide-vide p {
	max-width: 430px;
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 0.68rem;
	line-height: 1.6;
}

.aide-fenetre .aide-pied {
	flex: none;
	min-height: 66px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 11px 22px;
	border-top: 1px solid var(--line);
	background: var(--cream);
}

.aide-fenetre .aide-pied > span {
	color: var(--muted);
	font-size: 0.63rem;
}

.aide-fenetre .aide-pied > span i {
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 6px;
	border-radius: 50%;
	background: var(--green-500);
}

.aide-fenetre .aide-pied > a {
	width: auto;
	padding: 11px 22px;
	border: 0;
	border-radius: 11px;
	background: linear-gradient(#ef9b1d, #df7d00);
	color: white;
	font-size: 0.72rem;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 4px 0 var(--orange-dark);
}

.aide-fenetre .aide-pied > a:hover,
.aide-fenetre .aide-pied > a:focus-visible {
	filter: brightness(1.06);
}

@media (max-width: 680px) {
	.aide-fenetre .aide-page {
		padding: 12px 0 0;
	}

	.aide-fenetre {
		width: 100%;
		min-height: calc(100dvh - 12px);
		border-width: 1px 0 0;
		border-radius: 24px 24px 0 0;
	}

	.aide-fenetre .aide-entete {
		min-height: 76px;
		padding: 14px 15px;
	}

	.aide-fenetre .aide-icone-titre {
		width: 40px;
		height: 40px;
	}

	.aide-fenetre .aide-entete h1 {
		font-size: 1.5rem;
	}

	.aide-fenetre .aide-corps {
		display: flex;
		flex-direction: column;
	}

	.aide-fenetre .aide-navigation {
		flex: none;
		display: flex;
		gap: 6px;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 9px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
		scrollbar-width: none;
	}

	.aide-fenetre .aide-navigation::-webkit-scrollbar,
	.aide-fenetre .aide-navigation > p {
		display: none;
	}

	.aide-fenetre .aide-navigation button {
		flex: 0 0 76px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 3px;
		margin: 0;
		padding: 7px 4px;
		text-align: center;
	}

	.aide-fenetre .aide-navigation button i {
		width: 30px;
		height: 30px;
	}

	.aide-fenetre .aide-navigation button b {
		font-size: 0.53rem;
		line-height: 1.25;
	}

	.aide-fenetre .aide-navigation button small {
		display: none;
	}

	.aide-fenetre .aide-navigation button.actif::before {
		top: auto;
		right: 10px;
		bottom: 0;
		left: 10px;
		width: auto;
		height: 3px;
	}

	.aide-fenetre .aide-contenu {
		padding: 18px 15px 24px;
	}

	.aide-fenetre .aide-contenu h2 {
		font-size: 1.42rem;
	}

	.aide-fenetre .aide-recherche {
		margin-block: 15px 17px;
	}

	.aide-fenetre .aide-vide {
		min-height: 210px;
	}

	.aide-fenetre .aide-question summary {
		grid-template-columns: 33px minmax(0, 1fr) 16px;
		gap: 9px;
		padding: 13px 12px;
		font-size: 0.77rem;
	}

	.aide-fenetre .aide-question-icone {
		width: 33px;
		height: 33px;
	}

	.aide-fenetre .aide-reponse {
		padding: 15px 13px 18px;
	}

	.aide-fenetre .aide-etapes li {
		grid-template-columns: 27px minmax(0, 1fr);
		gap: 9px;
	}

	.aide-fenetre .aide-etapes li::before {
		width: 26px;
		height: 26px;
	}

	.aide-fenetre .aide-bouton-interface,
	.aide-fenetre .aide-bouton-jouer {
		width: min(100%, 245px);
		min-width: 0;
	}

	.aide-fenetre .aide-pied {
		min-height: 60px;
		padding: 9px 14px;
	}

	.aide-fenetre .aide-pied > span {
		max-width: 160px;
		font-size: 0.56rem;
		line-height: 1.4;
	}

	.aide-fenetre .aide-pied > a {
		padding-inline: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.aide-fenetre *,
	.aide-fenetre *::before,
	.aide-fenetre *::after {
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}
}
