/* ════════════════════════════════════════════════════════════════
   YooPanel V2 — Site marketing "Le Jackpot"
   Direction : pop-art / TV-boutique / lottery game.
   Flèches dessinées, stickers tiltés, marquee, jackpot animé, bulles BD.
   Couleurs de marque conservées (or, navy, blanc) mais palette élargie
   avec jaune, rouge, vert "néon" pour le côté "show".
   ════════════════════════════════════════════════════════════════ */

:root {
	--yp-yellow:        #FFD000;
	--yp-yellow-deep:   #FFB800;
	--yp-yellow-bright: #FFE54F;
	--yp-red:           #DC2626;
	--yp-red-bright:    #EF4444;
	--yp-green:         #22C55E;
	--yp-green-bright:  #4ADE80;
	--yp-ink:           #0A0E1A;
	--yp-ink-soft:      #1E293B;
	--yp-cream:         #FFFCE6;
	--yp-cream-dark:    #FFF7C2;
	--yp-muted:         #64748B;
	--yp-border:        #E2E8F0;
}

/* Reset minimal — supprime la marge 8px par défaut du body et définit la font Inter
   (le site ne charge pas Tailwind preflight, donc on doit faire le reset nous-mêmes). */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var(--yp-ink);
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.5;
}
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
#ticket { scroll-margin-top: 92px; }

.yp-gold {
	background: linear-gradient(135deg, var(--yp-yellow-deep), var(--yp-yellow-bright));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ───────── Surligneur jaune façon marker pen ───────── */
.yp-highlight {
	display: inline-block;
	padding: 0 4px;
	background: linear-gradient(180deg, transparent 55%, var(--yp-yellow) 55%, var(--yp-yellow-bright) 100%);
	transform: rotate(-1deg);
	position: relative;
	font-weight: 900;
}

/* ───────── Pulse dot (rouge ou vert) ───────── */
.yp-pulse-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: 6px;
	vertical-align: 1px;
}
.yp-pulse-dot--red {
	background: var(--yp-red-bright);
	box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6);
	animation: ypPulseDot 1.2s ease-in-out infinite;
}
@keyframes ypPulseDot {
	0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6); }
	50%      { box-shadow: 0 0 0 7px rgba(220, 38, 38, 0); }
}

/* ───────── CTA principal — jaune avec shake/glow ───────── */
.yp-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	background: linear-gradient(180deg, var(--yp-yellow-bright) 0%, var(--yp-yellow) 50%, var(--yp-yellow-deep) 100%);
	color: var(--yp-ink);
	font-family: inherit;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
	border: 3px solid var(--yp-ink);
	border-radius: 999px;
	cursor: pointer;
	box-shadow: 0 6px 0 var(--yp-ink), 0 14px 24px rgba(255, 184, 0, 0.45);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
	position: relative;
}
.yp-cta:hover {
	transform: translateY(-2px);
	color: var(--yp-ink);
	box-shadow: 0 8px 0 var(--yp-ink), 0 18px 28px rgba(255, 184, 0, 0.55);
}
.yp-cta:active {
	transform: translateY(3px);
	box-shadow: 0 3px 0 var(--yp-ink), 0 8px 14px rgba(255, 184, 0, 0.35);
}

.yp-cta--xl {
	padding: 18px 36px;
	font-size: 17px;
	border-width: 4px;
	box-shadow: 0 8px 0 var(--yp-ink), 0 18px 30px rgba(255, 184, 0, 0.5);
}
.yp-cta--xl:hover { box-shadow: 0 10px 0 var(--yp-ink), 0 22px 36px rgba(255, 184, 0, 0.6); }

.yp-cta--giant {
	padding: 22px 44px;
	font-size: clamp(1.05rem, 2.4vw, 1.5rem);
	border-width: 5px;
	box-shadow: 0 10px 0 var(--yp-ink), 0 24px 40px rgba(255, 184, 0, 0.6);
}
.yp-cta--giant:hover { box-shadow: 0 12px 0 var(--yp-ink), 0 28px 46px rgba(255, 184, 0, 0.7); }

.yp-cta--full { width: 100%; padding: 18px 22px; }
.yp-cta--md   { padding: 11px 18px; font-size: 13px; border-width: 2px; box-shadow: 0 4px 0 var(--yp-ink), 0 8px 16px rgba(255, 184, 0, 0.4); }

.yp-cta--shake { animation: ypShake 2.6s ease-in-out infinite; }
.yp-cta--shake:hover { animation: none; }
@keyframes ypShake {
	0%, 88%, 100% { transform: translateY(0) rotate(0); }
	90%           { transform: translateY(-2px) rotate(-1.2deg); }
	92%           { transform: translateY(0) rotate(1.5deg); }
	94%           { transform: translateY(-1px) rotate(-1deg); }
	96%           { transform: translateY(0) rotate(0.8deg); }
}

.yp-spinner {
	display: none;
	width: 18px;
	height: 18px;
	border: 2.5px solid rgba(10, 14, 26, 0.2);
	border-top-color: var(--yp-ink);
	border-radius: 50%;
	animation: ypSpin 0.8s linear infinite;
}
.yp-cta.is-loading .yp-spinner { display: inline-block; }
.yp-cta.is-loading .yp-cta-label { opacity: 0.6; }
.yp-cta:disabled { opacity: 0.85; cursor: wait; animation: none; }
@keyframes ypSpin { to { transform: rotate(360deg); } }

/* ───────── MARQUEE défilante (top) ───────── */
.yp-marquee {
	background: linear-gradient(90deg, var(--yp-red), var(--yp-red-bright), var(--yp-red));
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	padding: 9px 0;
	overflow: hidden;
	border-bottom: 3px solid var(--yp-ink);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.yp-marquee-track {
	display: inline-flex;
	white-space: nowrap;
	animation: ypMarquee 32s linear infinite;
}
.yp-marquee-item { padding: 0 14px; }
.yp-marquee-sep  { color: var(--yp-yellow); padding: 0 4px; }
@keyframes ypMarquee { to { transform: translateX(-50%); } }

/* ───────── NAV ───────── */
.yp-nav {
	background: var(--yp-ink);
	border-bottom: 3px solid var(--yp-yellow);
	position: sticky;
	top: 0;
	z-index: 50;
	padding: 12px 16px;
}
.yp-nav-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.yp-nav-brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; }
.yp-nav-brand svg { width: 30px; filter: drop-shadow(0 2px 8px rgba(255, 184, 0, 0.5)); }
.yp-nav-brand-text { font-size: 18px; font-weight: 900; }

.yp-nav-cta {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: linear-gradient(180deg, var(--yp-yellow-bright), var(--yp-yellow-deep));
	color: var(--yp-ink);
	font-weight: 900;
	font-size: 13.5px;
	text-decoration: none;
	border: 2.5px solid var(--yp-ink);
	border-radius: 999px;
	box-shadow: 0 4px 0 var(--yp-ink);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	animation: ypNavBlink 1.6s ease-in-out infinite;
	overflow: hidden;
}
.yp-nav-cta:hover { color: var(--yp-ink); transform: translateY(-1px); box-shadow: 0 5px 0 var(--yp-ink); }
.yp-nav-cta-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.7) 50%, transparent 70%);
	transform: translateX(-100%);
	animation: l6NavGlow 2.2s ease-in-out infinite;
}
@keyframes ypNavGlow { 50%, 100% { transform: translateX(100%); } }
@keyframes ypNavBlink {
	0%, 100% { box-shadow: 0 4px 0 var(--yp-ink), 0 0 0 0 rgba(255, 208, 0, 0.6); }
	50%      { box-shadow: 0 4px 0 var(--yp-ink), 0 0 0 10px rgba(255, 208, 0, 0); }
}
@media (max-width: 540px) {
	.yp-nav-brand-text { font-size: 15px; }
	.yp-nav-cta { padding: 8px 12px; font-size: 11.5px; }
}

/* ───────── HERO ───────── */
.yp-hero {
	position: relative;
	background:
		radial-gradient(ellipse at 20% 0%, rgba(255, 208, 0, 0.18), transparent 55%),
		radial-gradient(ellipse at 80% 100%, rgba(220, 38, 38, 0.1), transparent 55%),
		var(--yp-cream);
	padding: 60px 16px 80px;
	overflow: hidden;
	border-bottom: 4px solid var(--yp-ink);
}

/* Pluie de pièces */
.yp-coins {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.yp-coin {
	position: absolute;
	top: -40px;
	font-size: 22px;
	animation: l6Fall 12s linear infinite;
	opacity: 0.5;
}
@keyframes ypFall {
	0%   { transform: translateY(-40px) rotate(0); opacity: 0; }
	10%  { opacity: 0.55; }
	90%  { opacity: 0.55; }
	100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}
.yp-coin--1  { left:  5%; animation-delay: 0s;   font-size: 24px; }
.yp-coin--2  { left: 12%; animation-delay: 1.4s; font-size: 18px; }
.yp-coin--3  { left: 20%; animation-delay: 3.2s; font-size: 26px; }
.yp-coin--4  { left: 28%; animation-delay: 5.6s; font-size: 20px; }
.yp-coin--5  { left: 36%; animation-delay: 0.8s; font-size: 22px; }
.yp-coin--6  { left: 44%; animation-delay: 4.4s; font-size: 28px; }
.yp-coin--7  { left: 52%; animation-delay: 2.2s; font-size: 19px; }
.yp-coin--8  { left: 60%; animation-delay: 6.4s; font-size: 25px; }
.yp-coin--9  { left: 68%; animation-delay: 1.8s; font-size: 21px; }
.yp-coin--10 { left: 76%; animation-delay: 5.2s; font-size: 24px; }
.yp-coin--11 { left: 84%; animation-delay: 3.6s; font-size: 18px; }
.yp-coin--12 { left: 92%; animation-delay: 7.2s; font-size: 26px; }
.yp-coin--13 { left: 30%; animation-delay: 8.8s; font-size: 22px; }
.yp-coin--14 { left: 70%; animation-delay: 9.4s; font-size: 20px; }

.yp-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}
@media (min-width: 1024px) { .yp-hero-inner { grid-template-columns: 1.15fr 1fr; gap: 64px; } }

/* Sticker tilté "100% GRATUIT" */
.yp-hero-sticker {
	position: absolute;
	top: -20px;
	right: 0;
	width: 110px;
	height: 110px;
	background: radial-gradient(circle, var(--yp-red-bright) 0%, var(--yp-red) 100%);
	color: #fff;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: rotate(-12deg);
	box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4), inset 0 -8px 16px rgba(0, 0, 0, 0.15);
	border: 3px dashed #fff;
	z-index: 2;
	animation: l6Wiggle 4s ease-in-out infinite;
}
.yp-hero-sticker-top    { font-size: 22px; font-weight: 900; line-height: 1; }
.yp-hero-sticker-bottom { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
@keyframes ypWiggle {
	0%, 100% { transform: rotate(-12deg) scale(1); }
	50%      { transform: rotate(-8deg) scale(1.04); }
}
@media (min-width: 1024px) {
	.yp-hero-sticker { top: 10px; right: auto; left: 47%; width: 130px; height: 130px; }
	.yp-hero-sticker-top { font-size: 26px; }
}

.yp-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: var(--yp-ink);
	color: var(--yp-yellow-bright);
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.yp-hero-title {
	font-size: clamp(2.3rem, 6vw, 4.4rem);
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: -0.03em;
	color: var(--yp-ink);
	margin: 0 0 18px;
}
.yp-hero-title-amount {
	display: block;
	margin-top: 4px;
	font-size: clamp(3.6rem, 11vw, 6.8rem);
	font-weight: 900;
	background: linear-gradient(180deg, var(--yp-yellow-bright) 0%, var(--yp-yellow-deep) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 2px var(--yp-ink);
	text-stroke: 2px var(--yp-ink);
	filter: drop-shadow(0 4px 0 var(--yp-ink)) drop-shadow(0 8px 14px rgba(255, 184, 0, 0.5));
	letter-spacing: -0.04em;
	line-height: 0.9;
}
.yp-hero-title-tag {
	display: block;
	margin-top: 4px;
	font-size: clamp(0.9rem, 1.8vw, 1.15rem);
	color: var(--yp-red);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.yp-hero-subtitle {
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	color: var(--yp-ink-soft);
	line-height: 1.55;
	margin: 0 0 28px;
	max-width: 560px;
	font-weight: 500;
}
.yp-hero-subtitle strong { color: var(--yp-ink); font-weight: 800; }

/* CTA wrap avec flèche dessinée */
.yp-hero-cta-wrap {
	position: relative;
	display: inline-block;
	margin-bottom: 28px;
}
.yp-hand-arrow {
	position: absolute;
	width: 180px;
	height: auto;
	pointer-events: none;
}
.yp-hand-arrow--hero {
	top: -86px;
	right: -40px;
	transform: rotate(8deg);
}
.yp-hand-arrow text { font-family: 'Comic Sans MS', 'Marker Felt', 'Brush Script MT', cursive; }
@media (max-width: 540px) {
	.yp-hand-arrow--hero { width: 130px; top: -68px; right: -20px; }
}

/* Urgence */
.yp-hero-urgency {
	display: inline-block;
	background: #fff;
	border: 2.5px solid var(--yp-ink);
	border-radius: 14px;
	padding: 14px 18px;
	margin-bottom: 24px;
	box-shadow: 4px 4px 0 var(--yp-ink);
}
.yp-hero-urgency-line {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--yp-ink);
	margin-bottom: 6px;
}
.yp-hero-urgency-line:last-child { margin-bottom: 0; }
.yp-hero-urgency-line strong { color: var(--yp-red); font-size: 16px; font-weight: 900; }
.yp-hero-urgency #l6-spots.is-tick { animation: l6Tick 0.4s ease; }
@keyframes ypTick {
	0%   { transform: scale(1); color: var(--yp-red); }
	50%  { transform: scale(1.3); color: var(--yp-red-bright); }
	100% { transform: scale(1); color: var(--yp-red); }
}
.yp-hero-urgency-bar {
	width: 100%;
	height: 8px;
	background: var(--yp-border);
	border-radius: 99px;
	overflow: hidden;
	margin: 4px 0 8px;
	border: 1.5px solid var(--yp-ink);
}
.yp-hero-urgency-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--yp-green), var(--yp-yellow), var(--yp-red));
	transition: width 0.6s ease;
	border-radius: 99px;
}

.yp-hero-proof { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 14px; }
.yp-hero-proof strong { color: var(--yp-ink); font-weight: 900; font-size: 16px; }
.yp-hero-proof-text { color: var(--yp-muted); }
.yp-stars { color: var(--yp-yellow-deep); letter-spacing: 2px; font-size: 17px; }

/* ───────── Board des gains (right) — façon panneau de loterie ───────── */
.yp-board {
	background: var(--yp-ink);
	border-radius: 22px;
	border: 4px solid var(--yp-yellow);
	padding: 22px;
	color: #fff;
	box-shadow:
		0 0 0 4px var(--yp-ink),
		0 20px 60px rgba(0, 0, 0, 0.4),
		inset 0 0 60px rgba(255, 208, 0, 0.05);
	position: relative;
	overflow: hidden;
}
.yp-board::before {
	content: '';
	position: absolute;
	top: 0; left: -50%;
	width: 200%; height: 100%;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 208, 0, 0.08) 50%, transparent 70%);
	animation: l6BoardSheen 6s linear infinite;
	pointer-events: none;
}
@keyframes ypBoardSheen { to { transform: translateX(50%); } }

.yp-board-screws { position: absolute; inset: 8px; pointer-events: none; }
.yp-board-screws span {
	position: absolute;
	width: 10px; height: 10px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #94A3B8, #475569);
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.3);
}
.yp-board-screws span:nth-child(1) { top: 0; left: 0; }
.yp-board-screws span:nth-child(2) { top: 0; right: 0; }
.yp-board-screws span:nth-child(3) { bottom: 0; left: 0; }
.yp-board-screws span:nth-child(4) { bottom: 0; right: 0; }

.yp-board-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}
.yp-board-led {
	width: 10px; height: 10px;
	border-radius: 50%;
	background: var(--yp-green-bright);
	box-shadow: 0 0 8px var(--yp-green-bright), 0 0 16px var(--yp-green);
	animation: l6Led 1.2s ease-in-out infinite;
}
@keyframes ypLed {
	0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--yp-green-bright), 0 0 16px var(--yp-green); }
	50%      { opacity: 0.5; box-shadow: 0 0 4px var(--yp-green-bright); }
}
.yp-board-title {
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--yp-yellow-bright);
}

.yp-board-jackpot {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
	padding: 16px;
	background: rgba(0, 0, 0, 0.45);
	border: 2px solid rgba(255, 208, 0, 0.4);
	border-radius: 14px;
	margin-bottom: 14px;
	position: relative;
}
.yp-board-jackpot-label {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--yp-yellow);
	color: var(--yp-ink);
	font-size: 10px;
	font-weight: 900;
	padding: 3px 10px;
	border-radius: 999px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}
.yp-board-jackpot-amount {
	font-family: 'Courier New', monospace;
	font-size: clamp(2.4rem, 6vw, 3.4rem);
	font-weight: 900;
	color: var(--yp-yellow-bright);
	letter-spacing: 0.04em;
	line-height: 1;
	text-shadow: 0 0 12px rgba(255, 208, 0, 0.6), 0 0 28px rgba(255, 208, 0, 0.3);
	font-variant-numeric: tabular-nums;
	transition: transform 0.18s ease, filter 0.18s ease;
}
.yp-board-jackpot-amount.is-tick { transform: scale(1.04); filter: brightness(1.4); }
.yp-board-jackpot-currency {
	font-family: 'Courier New', monospace;
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	font-weight: 900;
	color: var(--yp-yellow);
	text-shadow: 0 0 12px rgba(255, 208, 0, 0.6);
}

.yp-board-feed {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-height: 168px;
}
.yp-board-row {
	display: grid;
	grid-template-columns: 24px 1fr auto auto;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 208, 0, 0.15);
	border-radius: 8px;
	font-size: 12.5px;
	transition: opacity 0.4s ease, transform 0.4s ease;
}
.yp-board-row.is-entering { opacity: 0; transform: translateY(-8px); }
.yp-board-row.is-leaving  { opacity: 0; transform: translateY(6px); }
.yp-board-row-flag img {
	width: 18px; height: 12px; border-radius: 2px; object-fit: cover;
}
.yp-board-row-name { color: #fff; font-weight: 700; }
.yp-board-row-arrow { color: var(--yp-yellow); font-weight: 900; }
.yp-board-row-amount {
	font-family: 'Courier New', monospace;
	color: var(--yp-green-bright);
	font-weight: 900;
	white-space: nowrap;
}

.yp-board-footer {
	margin-top: 12px;
	text-align: center;
	font-size: 10.5px;
	color: rgba(255, 255, 255, 0.5);
	font-style: italic;
}

/* ───────── Sections : titres communs ───────── */
.yp-section-eyebrow {
	display: inline-block;
	padding: 6px 14px;
	background: var(--yp-yellow);
	color: var(--yp-ink);
	border: 2.5px solid var(--yp-ink);
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 14px;
	transform: rotate(-1deg);
	box-shadow: 3px 3px 0 var(--yp-ink);
}
.yp-section-title {
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	font-weight: 900;
	color: var(--yp-ink);
	line-height: 1.08;
	letter-spacing: -0.025em;
	margin: 0 auto 44px;
	max-width: 820px;
	text-align: center;
}

/* ───────── 3 STEPS ───────── */
.yp-steps {
	padding: 72px 16px;
	background: #fff;
	border-bottom: 4px solid var(--yp-ink);
}
.yp-steps-inner { max-width: 1200px; margin: 0 auto; text-align: center; }

.yp-steps-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-bottom: 40px;
}
@media (min-width: 900px) {
	.yp-steps-grid { grid-template-columns: 1fr 60px 1fr 60px 1fr; gap: 16px; align-items: start; }
}

.yp-step {
	background: var(--yp-cream);
	border: 3px solid var(--yp-ink);
	border-radius: 22px;
	padding: 28px 22px;
	text-align: center;
	box-shadow: 5px 5px 0 var(--yp-ink);
	transition: transform 0.2s ease;
}
.yp-step:hover { transform: translateY(-3px) rotate(-0.5deg); }
.yp-step--1 { transform: rotate(-1deg); }
.yp-step--2 { transform: rotate(0.8deg); }
.yp-step--3 { transform: rotate(-0.6deg); }

.yp-step-bubble {
	width: 90px; height: 90px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--yp-yellow-bright), var(--yp-yellow-deep));
	border: 3px solid var(--yp-ink);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 6px 0 var(--yp-ink);
}
.yp-step-bubble--win {
	background: linear-gradient(135deg, var(--yp-green-bright), var(--yp-green));
	animation: l6BubbleWin 2.4s ease-in-out infinite;
}
@keyframes ypBubbleWin {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.06); box-shadow: 0 8px 0 var(--yp-ink); }
}
.yp-step-num {
	position: absolute;
	top: -10px; left: -10px;
	width: 32px; height: 32px;
	border-radius: 50%;
	background: var(--yp-red);
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2.5px solid var(--yp-ink);
}
.yp-step-emoji { font-size: 38px; }

.yp-step h3 {
	font-size: 19px;
	font-weight: 900;
	margin: 0 0 8px;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	color: var(--yp-ink);
}
.yp-step p {
	font-size: 14px;
	color: var(--yp-ink-soft);
	line-height: 1.5;
	margin: 0;
	font-weight: 500;
}

.yp-steps-arrow {
	display: none;
	width: 100%;
	height: 60px;
	align-self: center;
	margin-top: 30px;
}
@media (min-width: 900px) { .yp-steps-arrow { display: block; } }

.yp-steps-cta-wrap { text-align: center; }

/* ───────── TICKET (form) ───────── */
.yp-ticket-section {
	padding: 80px 16px;
	background:
		repeating-linear-gradient(
			45deg,
			var(--yp-cream),
			var(--yp-cream) 12px,
			var(--yp-cream-dark) 12px,
			var(--yp-cream-dark) 24px
		);
	border-bottom: 4px solid var(--yp-ink);
	position: relative;
}
.yp-ticket-inner {
	max-width: 580px;
	margin: 0 auto;
	position: relative;
}

/* Sticker tilté qui pointe le ticket */
.yp-ticket-sticker {
	position: absolute;
	top: -36px;
	right: -16px;
	width: 120px;
	height: 120px;
	transform: rotate(15deg);
	z-index: 2;
	pointer-events: none;
	filter: drop-shadow(0 6px 14px rgba(220, 38, 38, 0.4));
	animation: l6StickerWobble 3s ease-in-out infinite;
}
@keyframes ypStickerWobble {
	0%, 100% { transform: rotate(15deg) scale(1); }
	50%      { transform: rotate(10deg) scale(1.05); }
}
.yp-ticket-sticker svg { width: 100%; height: 100%; }
.yp-ticket-sticker-text {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1;
}
.yp-ticket-sticker-text span    { font-size: 10px; letter-spacing: 0.08em; margin-bottom: 2px; }
.yp-ticket-sticker-text strong  { font-size: 16px; }

@media (max-width: 540px) {
	.yp-ticket-sticker { top: -24px; right: -8px; width: 90px; height: 90px; }
	.yp-ticket-sticker-text strong { font-size: 13px; }
}

.yp-ticket {
	background: #fff;
	border: 3px solid var(--yp-ink);
	border-radius: 22px;
	box-shadow: 8px 8px 0 var(--yp-ink);
	position: relative;
	overflow: hidden;
	transform: rotate(-0.6deg);
}
.yp-ticket--connected {
	padding: 50px 32px;
	text-align: center;
}
.yp-ticket--connected h2 {
	font-size: clamp(1.4rem, 3vw, 1.9rem);
	font-weight: 900;
	margin: 0 0 8px;
	color: var(--yp-ink);
}
.yp-ticket--connected p {
	color: var(--yp-ink-soft);
	margin: 0 0 22px;
}
.yp-ticket-icon {
	font-size: 64px;
	margin-bottom: 12px;
}

.yp-ticket-header {
	padding: 28px 28px 18px;
	text-align: center;
	background: linear-gradient(180deg, var(--yp-cream-dark), #fff);
}
.yp-ticket-badge {
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	background: var(--yp-red);
	color: #fff;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
}
.yp-ticket-title {
	font-size: clamp(1.4rem, 2.8vw, 1.85rem);
	font-weight: 900;
	color: var(--yp-ink);
	line-height: 1.15;
	margin: 0 0 8px;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}
.yp-ticket-title .yp-mt {
	color: var(--yp-red);
	background: var(--yp-yellow);
	padding: 0 6px;
	border-radius: 6px;
	display: inline-block;
	transform: rotate(-2deg);
	border: 2px solid var(--yp-ink);
	box-shadow: 2px 2px 0 var(--yp-ink);
}
.yp-ticket-subtitle {
	font-size: 14px;
	color: var(--yp-ink-soft);
	margin: 0;
}

/* Encoche/dashed comme un vrai ticket de loterie */
.yp-ticket-divider {
	position: relative;
	height: 22px;
	display: flex;
	align-items: center;
}
.yp-ticket-notch {
	width: 22px; height: 22px;
	background: var(--yp-cream-dark);
	border-radius: 50%;
	border: 3px solid var(--yp-ink);
	z-index: 1;
}
.yp-ticket-notch--left  { margin-left: -14px; }
.yp-ticket-notch--right { margin-right: -14px; margin-left: auto; }
.yp-ticket-dashed {
	position: absolute;
	left: 22px;
	right: 22px;
	border-top: 3px dashed var(--yp-ink);
}

.yp-ticket-form { padding: 26px 28px 30px; }
.yp-field { margin-bottom: 14px; }
.yp-field label {
	display: block;
	font-size: 13px;
	font-weight: 800;
	color: var(--yp-ink);
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.01em;
}
.yp-input {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 14px 16px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	color: var(--yp-ink);
	background: #fff;
	border: 2.5px solid var(--yp-ink);
	border-radius: 12px;
	transition: all 0.15s ease;
	box-shadow: 3px 3px 0 var(--yp-ink);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.yp-input::placeholder { color: #94A3B8; font-weight: 500; }
.yp-input:focus {
	outline: none;
	border-color: var(--yp-red);
	box-shadow: 3px 3px 0 var(--yp-red);
	transform: translate(-1px, -1px);
}
.yp-input.is-invalid {
	border-color: var(--yp-red);
	background: #FEF2F2;
	box-shadow: 3px 3px 0 var(--yp-red);
}
.yp-select {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292%22%20height%3D%22292%22%3E%3Cpath%20fill%3D%22%230A0E1A%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px auto;
	padding-right: 38px;
}

.yp-field-error {
	display: none;
	font-size: 12.5px;
	color: #fff;
	background: var(--yp-red);
	padding: 8px 12px;
	border-radius: 8px;
	margin-top: 8px;
	font-weight: 700;
}
.yp-field-error.is-shown { display: block; }

.yp-ticket-trust {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 18px;
	font-size: 12px;
	color: var(--yp-ink-soft);
	font-weight: 600;
}
.yp-ticket-login {
	text-align: center;
	font-size: 13px;
	color: var(--yp-muted);
	margin: 16px 0 0;
}
.yp-ticket-login a { color: var(--yp-red); font-weight: 800; text-decoration: none; }
.yp-ticket-login a:hover { text-decoration: underline; }

/* ───────── AVANT / APRÈS ───────── */
.yp-ba {
	padding: 80px 16px;
	background: var(--yp-ink);
	color: #fff;
	border-bottom: 4px solid var(--yp-ink);
	position: relative;
	overflow: hidden;
}
.yp-ba::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.15), transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.15), transparent 40%);
	pointer-events: none;
}
.yp-ba-inner { position: relative; max-width: 1100px; margin: 0 auto; text-align: center; }
.yp-ba .yp-section-title { color: #fff; }
.yp-ba .yp-section-eyebrow { background: var(--yp-yellow-bright); }

.yp-ba-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
	margin-bottom: 36px;
}
@media (min-width: 768px) {
	.yp-ba-grid { grid-template-columns: 1fr 80px 1fr; }
}

.yp-ba-card {
	background: #fff;
	color: var(--yp-ink);
	border-radius: 22px;
	padding: 32px 26px;
	border: 4px solid var(--yp-ink);
	text-align: center;
}
.yp-ba-card--before {
	background: #FEE2E2;
	transform: rotate(-1.5deg);
	box-shadow: 6px 6px 0 var(--yp-red);
}
.yp-ba-card--after {
	background: #DCFCE7;
	transform: rotate(1.5deg);
	box-shadow: 6px 6px 0 var(--yp-green);
}
.yp-ba-card-label {
	display: inline-block;
	padding: 5px 14px;
	font-size: 12px;
	font-weight: 900;
	color: #fff;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 14px;
}
.yp-ba-card--before .yp-ba-card-label { background: var(--yp-red); }
.yp-ba-card--after  .yp-ba-card-label { background: var(--yp-green); }

.yp-ba-card-face { font-size: 64px; margin-bottom: 14px; line-height: 1; }
.yp-ba-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: left;
}
.yp-ba-card li {
	font-size: 14.5px;
	color: var(--yp-ink-soft);
	font-weight: 600;
	line-height: 1.4;
}

.yp-ba-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
}
.yp-ba-arrow svg { width: 100%; max-width: 80px; height: auto; }
@media (max-width: 767px) {
	.yp-ba-arrow { transform: rotate(90deg); }
}

.yp-ba-cta-wrap { margin-top: 8px; }

/* ───────── Témoignages — bulles BD ───────── */
.yp-testimonials {
	padding: 80px 16px;
	background: var(--yp-cream);
	border-bottom: 4px solid var(--yp-ink);
}
.yp-testimonials-inner { max-width: 1200px; margin: 0 auto; text-align: center; }

.yp-testi-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}
@media (min-width: 768px) { .yp-testi-grid { grid-template-columns: repeat(3, 1fr); } }

.yp-testi { text-align: left; }
.yp-testi--1 { transform: rotate(-1deg); }
.yp-testi--2 { transform: rotate(0.6deg); }
.yp-testi--3 { transform: rotate(-0.4deg); }

.yp-testi-bubble {
	background: #fff;
	border: 3px solid var(--yp-ink);
	border-radius: 20px;
	padding: 22px 22px 24px;
	position: relative;
	box-shadow: 5px 5px 0 var(--yp-ink);
	margin-bottom: 22px;
}
/* Pointe de la bulle BD */
.yp-testi-bubble::after {
	content: '';
	position: absolute;
	bottom: -16px;
	left: 30px;
	width: 28px;
	height: 28px;
	background: #fff;
	border-right: 3px solid var(--yp-ink);
	border-bottom: 3px solid var(--yp-ink);
	transform: rotate(45deg);
}
.yp-testi-stars { display: block; color: var(--yp-yellow-deep); font-size: 18px; letter-spacing: 2px; margin-bottom: 10px; }
.yp-testi-bubble p {
	font-size: 15px;
	color: var(--yp-ink);
	line-height: 1.55;
	margin: 0 0 14px;
	font-weight: 500;
}
.yp-testi-amount {
	display: inline-block;
	background: var(--yp-yellow);
	color: var(--yp-ink);
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 900;
	border: 2px solid var(--yp-ink);
	box-shadow: 2px 2px 0 var(--yp-ink);
	transform: rotate(-1.5deg);
}
.yp-testi-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-left: 20px;
}
.yp-testi-avatar {
	width: 48px; height: 48px;
	border-radius: 50%;
	border: 3px solid var(--yp-ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	flex-shrink: 0;
	box-shadow: 3px 3px 0 var(--yp-ink);
}
.yp-testi-author strong {
	display: block;
	font-size: 14.5px;
	font-weight: 900;
	color: var(--yp-ink);
}
.yp-testi-author strong img { width: 18px; height: 13px; border-radius: 2px; object-fit: cover; vertical-align: -1px; margin-left: 4px; }
.yp-testi-author span { font-size: 12px; color: var(--yp-muted); }

/* ───────── FAQ ───────── */
.yp-faq {
	padding: 80px 16px;
	background: #fff;
	border-bottom: 4px solid var(--yp-ink);
}
.yp-faq-inner { max-width: 820px; margin: 0 auto; text-align: center; }

.yp-faq-item {
	background: var(--yp-cream);
	border: 3px solid var(--yp-ink);
	border-radius: 16px;
	margin-bottom: 14px;
	box-shadow: 4px 4px 0 var(--yp-ink);
	text-align: left;
	overflow: hidden;
	transition: all 0.2s ease;
}
.yp-faq-item[open] {
	background: #fff;
	box-shadow: 4px 4px 0 var(--yp-yellow-deep), 4px 4px 0 4px var(--yp-ink);
}
.yp-faq-question {
	display: grid;
	grid-template-columns: 32px 1fr 32px;
	align-items: center;
	gap: 12px;
	padding: 18px 20px;
	font-size: 15.5px;
	font-weight: 800;
	color: var(--yp-ink);
	cursor: pointer;
	user-select: none;
	list-style: none;
}
.yp-faq-question::-webkit-details-marker { display: none; }
.yp-faq-emoji { font-size: 24px; line-height: 1; }
.yp-faq-arrow {
	width: 32px; height: 32px;
	border-radius: 50%;
	background: var(--yp-yellow);
	color: var(--yp-ink);
	border: 2.5px solid var(--yp-ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease, background 0.2s ease;
	font-size: 12px;
}
.yp-faq-item[open] .yp-faq-arrow { background: var(--yp-green-bright); transform: rotate(45deg); }
.yp-faq-body {
	padding: 0 20px 20px 64px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--yp-ink-soft);
	font-weight: 500;
}
.yp-faq-body strong { color: var(--yp-ink); font-weight: 800; }

/* ───────── FINAL CTA — burst star ───────── */
.yp-final {
	position: relative;
	padding: 88px 16px;
	background: linear-gradient(135deg, var(--yp-red) 0%, var(--yp-red-bright) 100%);
	color: #fff;
	text-align: center;
	overflow: hidden;
}
.yp-final-burst {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}
.yp-burst-ray {
	position: absolute;
	width: 4px;
	height: 60vh;
	background: linear-gradient(180deg, rgba(255, 208, 0, 0.18) 0%, transparent 70%);
	transform-origin: center top;
	top: 50%;
	left: 50%;
	margin-left: -2px;
	animation: l6BurstSpin 22s linear infinite;
}
.yp-burst-ray--1  { transform: rotate(0deg); }
.yp-burst-ray--2  { transform: rotate(22.5deg); }
.yp-burst-ray--3  { transform: rotate(45deg); }
.yp-burst-ray--4  { transform: rotate(67.5deg); }
.yp-burst-ray--5  { transform: rotate(90deg); }
.yp-burst-ray--6  { transform: rotate(112.5deg); }
.yp-burst-ray--7  { transform: rotate(135deg); }
.yp-burst-ray--8  { transform: rotate(157.5deg); }
.yp-burst-ray--9  { transform: rotate(180deg); }
.yp-burst-ray--10 { transform: rotate(202.5deg); }
.yp-burst-ray--11 { transform: rotate(225deg); }
.yp-burst-ray--12 { transform: rotate(247.5deg); }
.yp-burst-ray--13 { transform: rotate(270deg); }
.yp-burst-ray--14 { transform: rotate(292.5deg); }
.yp-burst-ray--15 { transform: rotate(315deg); }
.yp-burst-ray--16 { transform: rotate(337.5deg); }
@keyframes ypBurstSpin { to { transform: translate(0, 0) rotate(360deg); } }

.yp-final-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.yp-final-eyebrow {
	display: inline-block;
	background: var(--yp-yellow);
	color: var(--yp-ink);
	border: 3px solid var(--yp-ink);
	border-radius: 999px;
	padding: 7px 16px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 18px;
	transform: rotate(-1.5deg);
	box-shadow: 3px 3px 0 var(--yp-ink);
}
.yp-final-title {
	font-size: clamp(1.8rem, 4.4vw, 3rem);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: 0 0 20px;
	color: #fff;
}
.yp-final-amount {
	display: inline-block;
	font-size: clamp(3.2rem, 11vw, 6rem);
	font-weight: 900;
	color: var(--yp-yellow-bright);
	-webkit-text-stroke: 3px var(--yp-ink);
	text-stroke: 3px var(--yp-ink);
	letter-spacing: -0.03em;
	line-height: 0.9;
	filter: drop-shadow(0 6px 0 var(--yp-ink));
}
.yp-final-tag {
	display: block;
	font-size: clamp(0.95rem, 2vw, 1.2rem);
	color: var(--yp-yellow);
	margin-top: 8px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.yp-final-disclaimer {
	margin: 22px 0 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.85);
	font-style: italic;
}

/* ───────── STICKY BOTTOM ───────── */
.yp-sticky {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 60;
	background: var(--yp-ink);
	color: #fff;
	border-top: 3px solid var(--yp-yellow);
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	transform: translateY(100%);
	opacity: 0;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
}
.yp-sticky.is-shown { transform: translateY(0); opacity: 1; pointer-events: auto; }
.yp-sticky-inner {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.yp-sticky-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.yp-sticky-text strong { font-size: 13.5px; font-weight: 900; line-height: 1.2; color: var(--yp-yellow-bright); }
.yp-sticky-text span { font-size: 12px; color: rgba(255, 255, 255, 0.85); display: inline-flex; align-items: center; gap: 4px; }
.yp-sticky-text span strong, .yp-sticky-text #l6-sticky-countdown { color: #fff; font-family: 'Courier New', monospace; font-weight: 900; }
@media (min-width: 900px) { .yp-sticky { display: none; } }

/* ───────── TOAST ───────── */
.yp-toast {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 55;
	background: #fff;
	border: 3px solid var(--yp-ink);
	border-radius: 16px;
	box-shadow: 5px 5px 0 var(--yp-ink);
	padding: 12px 16px 12px 12px;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 340px;
	opacity: 0;
	transform: translateY(20px) scale(0.95) rotate(-2deg);
	transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
}
.yp-toast.is-shown { opacity: 1; transform: translateY(0) scale(1) rotate(-2deg); }
.yp-toast-emoji {
	font-size: 28px;
	flex-shrink: 0;
	animation: l6ToastBounce 1.4s ease-in-out infinite;
}
@keyframes ypToastBounce {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-3px) rotate(8deg); }
}
.yp-toast-text { font-size: 13px; color: var(--yp-ink-soft); line-height: 1.35; }
.yp-toast-text strong { color: var(--yp-ink); font-weight: 900; }
.yp-toast-amount {
	font-family: 'Courier New', monospace;
	color: var(--yp-green);
	font-weight: 900;
}
.yp-toast-flag {
	display: inline-block;
	width: 16px; height: 11px;
	border-radius: 2px;
	object-fit: cover;
	vertical-align: -1px;
	margin-left: 2px;
}
.yp-toast-time { font-size: 11px; color: var(--yp-muted); margin-top: 2px; }

@media (max-width: 899px) { .yp-toast { bottom: 100px; } }
@media (max-width: 540px) { .yp-toast { left: 12px; right: 12px; max-width: none; } }

/* ───────── FOOTER ───────── */
.yp-footer {
	background: var(--yp-ink);
	color: #94A3B8;
	padding: 32px 16px calc(28px + env(safe-area-inset-bottom));
	text-align: center;
}
.yp-footer-inner { max-width: 980px; margin: 0 auto; }
.yp-footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px 22px;
	font-size: 13px;
	margin-bottom: 14px;
}
.yp-footer-links a { color: #CBD5E1; text-decoration: none; transition: color 0.15s ease; }
.yp-footer-links a:hover { color: var(--yp-yellow); }
.yp-footer-disclaimer { font-size: 10.5px; font-style: italic; color: #64748B; line-height: 1.55; margin: 14px auto 10px; max-width: 760px; }
.yp-footer-copy { font-size: 12px; color: #64748B; margin: 0; }
@media (max-width: 899px) { .yp-footer { padding-bottom: calc(100px + env(safe-area-inset-bottom)); } }

/* ───────── Reduced motion ───────── */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.yp-coin { display: none; }
	.yp-burst-ray { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   Pages légales et articles éditoriaux
   ════════════════════════════════════════════════════════════════ */
.yp-legal-page {
    background: #fff;
    color: #1E293B;
    line-height: 1.7;
}

.yp-legal-hero {
    background: linear-gradient(160deg, #FFFCE6 0%, #FFF7C2 60%, #FFE54F 100%);
    border-bottom: 4px solid var(--yp-ink);
    padding: 48px 20px 64px;
    text-align: center;
}

.yp-legal-hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 900;
    color: var(--yp-ink);
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

.yp-legal-hero .yp-legal-update {
    color: var(--yp-muted);
    font-size: 0.95rem;
}

.yp-legal-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--yp-muted);
    margin-bottom: 18px;
}
.yp-legal-breadcrumb a { color: var(--yp-muted); text-decoration: none; }
.yp-legal-breadcrumb a:hover { color: var(--yp-ink); }

.yp-legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.yp-legal-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yp-ink);
    margin-top: 36px;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
}

.yp-legal-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--yp-ink);
    margin-top: 24px;
    margin-bottom: 10px;
}

.yp-legal-content p { margin-bottom: 14px; color: #334155; }
.yp-legal-content a { color: var(--yp-yellow-deep); text-decoration: underline; }
.yp-legal-content a:hover { color: var(--yp-ink); }

.yp-legal-content ul, .yp-legal-content ol {
    margin: 0 0 14px 20px;
    padding-left: 12px;
}
.yp-legal-content li { margin-bottom: 6px; }

.yp-legal-content .toc {
    background: #FFF7C2;
    border: 2px solid var(--yp-yellow-deep);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0 32px;
}
.yp-legal-content .toc-title {
    font-weight: 800;
    color: var(--yp-ink);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
}
.yp-legal-content .toc ol {
    margin: 0;
    padding-left: 20px;
    columns: 2;
    column-gap: 20px;
}
@media (max-width: 640px) {
    .yp-legal-content .toc ol { columns: 1; }
}
.yp-legal-content .toc li { break-inside: avoid; margin-bottom: 4px; font-size: 0.9rem; }

/* Footer site (commun toutes pages site) */
.yp-footer-site {
    background: var(--yp-ink);
    color: #94A3B8;
    padding: 32px 20px 24px;
    text-align: center;
}
.yp-footer-inner { max-width: 1024px; margin: 0 auto; }
.yp-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 16px;
}
.yp-footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.15s ease;
}
.yp-footer-links a:hover { color: var(--yp-yellow); }
.yp-footer-disclaimer {
    color: #64748B;
    font-size: 11px;
    margin-bottom: 8px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.yp-footer-copy {
    color: #64748B;
    font-size: 12px;
    margin-bottom: 0;
}
