/* ============================================================
   YouCare Game — Home page
   Page-specific CSS. Overrides et extensions du design-system.css.
   Charge après design-system.css pour que la cascade prime.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  font-family: var(--yc-font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--yc-white-soft);
  background: var(--yc-bg-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(255, 77, 204, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 75% 65%, rgba(77, 208, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(124, 77, 255, 0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: -2;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000, transparent 80%);
}
img, svg { max-width: 100%; display: block; }
button, input { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible {
  outline: 2px solid var(--yc-violet-light);
  outline-offset: 3px;
  border-radius: 4px;
}

.yc-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .yc-container { padding: 0 20px; }
}

/* Bouton fantôme spécifique home */
.yc-btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  min-height: 48px;
  transition: all 180ms ease;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  font-family: var(--yc-font-sans);
  white-space: nowrap;
  text-decoration: none;
}
.yc-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--yc-violet-light);
}

/* Header (.yc-header, .yc-nav, .yc-header-right, .yc-lang-switcher, .yc-lang-btn)
   défini dans shared/css/design-system.css — source unique pour toutes les pages. */

/* Bouton "Jouer maintenant" (hero + featured) → composant partagé
   .yc-play-btn dans design-system.css. */

/* Hero */
.v2-hero {
  padding: 60px 0 80px;
  position: relative;
}
.v2-hero-inner {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.v2-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px 6px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 13px;
  color: var(--yc-white-soft);
  margin-bottom: 32px;
  font-weight: 500;
}
.v2-chip .badge {
  background: linear-gradient(90deg, var(--yc-pink), var(--yc-violet-light));
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.v2-hero h1 {
  font-family: var(--yc-font-display);
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.92;
  font-weight: 900;
  color: #fff;
  margin: 0 0 28px;
  letter-spacing: -0.04em;
}
.v2-hero h1 .line { display: block; margin-bottom: 10px; }
.v2-hero h1 .line.sub { font-size: 0.65em; line-height: 1.2; letter-spacing: 0; }
.v2-hero h1 .glow {
  background: linear-gradient(90deg, #ff4dcc 0%, #7c4dff 40%, #4dd0ff 80%, #5eff9f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.v2-hero p.lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--yc-white-dim);
  max-width: 600px;
  margin: 0 auto 40px;
}
.v2-hero-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.v2-ticker {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 56px;
  font-size: 13px;
  color: var(--yc-white-dim);
  flex-wrap: wrap;
}
.v2-ticker .item { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 18px; }
.v2-ticker .item .emo {
  font-size: 22px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255, 77, 204, 0.35));
}
.v2-ticker .item strong { color: #fff; font-weight: 700; font-family: var(--yc-font-mono); }
.v2-ticker .divider { width: 4px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 50%; }

/* ============================================================
   Featured card — design inspiré de cato-intro (écran de lancement CosmoCat).
   Grammaire : carte violette gradient + hero étoilé gauche (orbit ring +
   mascotte flottante + chip partenaire bottom-right) + contenu droit
   (meta row monochrome + titre gradient + mécanique d'impact 2 étapes + CTA).
   ============================================================ */
.v2-featured { padding: 32px 0 24px; }
.v2-featured-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(45, 27, 94, 0.85) 0%, rgba(26, 16, 51, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 460px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(124, 77, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* -------- Zone art (gauche) : hero étoilé + orbit + mascotte -------- */
.v2-featured-art {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1a0a3d 0%, #3d0a5e 50%, #0a0418 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.v2-featured-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 184, 77, 0.22), transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(77, 208, 255, 0.18), transparent 55%);
}
.v2-featured-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, #fff 1px, transparent 1px),
    radial-gradient(1px 1px at 60% 20%, #fff 1px, transparent 1px),
    radial-gradient(1.5px 1.5px at 80% 60%, #fff 1px, transparent 1px),
    radial-gradient(1px 1px at 40% 80%, #fff 1px, transparent 1px),
    radial-gradient(1px 1px at 90% 40%, #fff 1px, transparent 1px),
    radial-gradient(1px 1px at 10% 50%, #fff 1px, transparent 1px),
    radial-gradient(1px 1px at 50% 85%, #fff 1px, transparent 1px);
  background-size: 320px 220px;
  opacity: 0.75;
}
.v2-featured-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  z-index: 1;
}
.v2-featured-orbit::before,
.v2-featured-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
}
.v2-featured-orbit::before {
  width: 10px; height: 10px;
  top: -5px; left: 50%;
  background: var(--yc-amber);
  color: var(--yc-amber);
}
.v2-featured-orbit::after {
  width: 8px; height: 8px;
  bottom: 10%; right: 0;
  background: var(--yc-cyan);
  color: var(--yc-cyan);
}
.v2-featured-mascot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(255, 77, 204, 0.4));
  animation: v2-featured-float 3s ease-in-out infinite;
}
@keyframes v2-featured-float {
  0%, 100% { transform: translate(-50%, -50%) rotate(-4deg); }
  50%      { transform: translate(-50%, -58%) rotate(4deg); }
}
/* Chip partenaire de la featured card : positionnement local uniquement,
   style chip fourni par .yc-partner (design-system.css). */
.v2-featured-partner {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
}

/* -------- Zone contenu (droite) -------- */
.v2-featured-content {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.v2-featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.v2-featured-tag {
  font-family: var(--yc-font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yc-violet-light);
  font-weight: 700;
}
.v2-featured-tag--cause { color: var(--yc-pink); }
.v2-featured-sep {
  width: 4px; height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}
.v2-featured-difficulty {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.v2-featured-pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yc-neon);
  box-shadow: 0 0 6px var(--yc-neon);
}
.v2-featured-pip.off {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}
.v2-featured-title {
  font-family: var(--yc-font-display);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 6px 0 14px;
  background: linear-gradient(135deg, #fff 0%, var(--yc-violet-light) 60%, var(--yc-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.v2-featured-tagline {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 24px;
  font-weight: 500;
  max-width: 460px;
}

/* Mécanique d'impact : composant partagé .yc-impact (design-system.css).
   Override local : margin-bottom 28px pour la respiration avant les CTAs. */
.v2-featured-impact {
  margin-bottom: 28px;
}

/* CTA : Jouer (gradient pink/violet + shine) + Voir la cause ghost. */
.v2-featured-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
}
/* Bouton "Jouer" featured card → composant partagé .yc-play-btn. */

/* Stats communautaires sous les CTA : composant partagé .yc-stats
   (design-system.css), peuplé par js/home.js via YCStats.update().
   Override local : la v2-featured-content exige plus d'air au-dessus
   des stats (18px au lieu des 10px du composant). Sélecteur contextuel
   pour rester spécifique à cet emplacement, aucune modif du composant. */
.v2-featured-content .yc-stats {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .v2-featured-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .v2-featured-art {
    aspect-ratio: 16 / 10;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .v2-featured-content { padding: 36px 28px; }
  .v2-featured-title { font-size: clamp(40px, 10vw, 56px); }
}

/* Games grid */
.v2-games { padding: 72px 0; }
.v2-games-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}
.v2-games-head h2 {
  font-family: var(--yc-font-display);
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.v2-games-head h2 .count {
  font-size: 0.5em;
  color: var(--yc-violet-light);
  font-family: var(--yc-font-mono);
  font-weight: 500;
  margin-left: 8px;
  letter-spacing: 0;
}
.v2-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .v2-games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .v2-games-grid { grid-template-columns: 1fr; } }

/* Modern Game Boy pixel tile */
.v2-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 5/6;
  display: flex;
  flex-direction: column;
  padding: 0;
  color: #fff;
  transition: transform 240ms ease, box-shadow 240ms ease;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, #2a1950 0%, #1a0f38 100%);
  box-shadow:
    0 24px 48px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);
  text-decoration: none;
}
.v2-tile:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 60px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.12);
}
.v2-tile:hover .gb-screen .pixel-art { animation-play-state: running; }

.v2-tile .gb-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 10px;
}
.v2-tile .tile-partner {
  font-family: var(--yc-font-display);
  font-weight: 800;
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}
.v2-tile .gb-leds {
  display: flex;
  gap: 6px;
  align-items: center;
}
.v2-tile .gb-led {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.4);
}
.v2-tile .gb-led.on {
  background: var(--yc-neon);
  box-shadow: 0 0 6px var(--yc-neon), inset 0 1px 1px rgba(255,255,255,0.4);
}
.v2-tile .gb-led.red.on { background: var(--yc-pink); box-shadow: 0 0 6px var(--yc-pink); }
.v2-tile .gb-led.amber.on { background: var(--yc-amber); box-shadow: 0 0 6px var(--yc-amber); }

.v2-tile .gb-screen {
  position: relative;
  margin: 12px 14px 10px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  box-shadow:
    inset 0 0 0 2px rgba(0,0,0,0.5),
    inset 0 2px 6px rgba(0,0,0,0.55),
    0 1px 0 rgba(255,255,255,0.06);
}
.v2-tile.paw .gb-screen { background: #2a1205; }
.v2-tile.forest .gb-screen { background: #051a0e; }
.v2-tile.biodiv .gb-screen { background: #051626; }
.v2-tile.food .gb-screen { background: #2a1c05; }

.v2-tile .gb-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.15) 0 1px, transparent 1px 3px);
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: multiply;
}
.v2-tile .gb-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.08), transparent 50%);
  pointer-events: none;
  z-index: 2;
}

.v2-tile .pixel-art {
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  animation: gbIdle 1.8s steps(2, end) infinite;
  animation-play-state: paused;
}
@keyframes gbIdle {
  0%, 50% { transform: translateY(0); }
  51%, 100% { transform: translateY(-2px); }
}

.v2-tile .gb-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 10px;
  font-family: var(--yc-font-mono);
  font-size: 10px;
  color: var(--yc-white-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.v2-tile .gb-label .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yc-neon);
  box-shadow: 0 0 6px var(--yc-neon);
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}
.v2-tile.soon .gb-label .dot { background: var(--yc-amber); box-shadow: 0 0 6px var(--yc-amber); }

/* ============================================================
   Tiles "locked" : jeux pas encore lancés. Pixel-art mystère
   (coin/glitch/key/hourglass), titre "???" + cadenas, dot LED
   désaturée qui clignote, animation flottante. Le tableau est
   ajouté en complément (pas en remplacement) des règles
   .v2-tile.paw|forest|biodiv|food existantes : le `gb-screen`
   et le titre `h3` viennent de plus haut, les overrides ci-dessous
   ne s'appliquent qu'aux jeux dont le SVG porte `.locked-art`.
   ============================================================ */
.v2-tile .pixel-art.locked-art {
  animation: lockFloat 2.6s ease-in-out infinite;
}
.v2-tile .pixel-art.proposal-key {
  animation: lockFloat 3.2s ease-in-out infinite, keySpin 6s ease-in-out infinite;
  transform-origin: 50% 50%;
}
.v2-tile .pixel-art.proposal-glitch {
  animation: lockFloat 2.6s ease-in-out infinite, glitchShift 1.4s steps(2) infinite;
}
@keyframes lockFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3%); }
}
@keyframes keySpin {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50%      { transform: rotate(4deg) translateY(-3%); }
}
@keyframes glitchShift {
  0%, 100% { transform: translateX(0); }
  33%      { transform: translateX(-1.5%); }
  66%      { transform: translateX(1.5%); }
}

/* Dot LED désaturée + clignotement lent quand tile en mode locked.
   Placée après .v2-tile.soon pour gagner sur égalité de spécificité
   (les 4 tiles sont toutes "locked" en phase démo). */
.v2-tile.paw .gb-label .dot,
.v2-tile.forest .gb-label .dot,
.v2-tile.biodiv .gb-label .dot,
.v2-tile.food .gb-label .dot {
  background: #6b6b80;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
  animation: lockBlink 1.8s ease-in-out infinite;
}
@keyframes lockBlink {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

.v2-tile .locked-tag {
  font-size: 0.7em;
  vertical-align: middle;
  margin-left: 6px;
  opacity: 0.85;
  filter: grayscale(0.2);
}
.v2-tile.paw .gb-body h3,
.v2-tile.forest .gb-body h3,
.v2-tile.biodiv .gb-body h3,
.v2-tile.food   .gb-body h3 {
  letter-spacing: 0.04em;
}

/* Scanline screen overlay légèrement adoucie sur les tiles locked
   (cohérence avec l'effet "TV cassée" / mystère). */
.v2-tile.paw .gb-screen::after,
.v2-tile.forest .gb-screen::after,
.v2-tile.biodiv .gb-screen::after,
.v2-tile.food   .gb-screen::after {
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  .v2-tile .pixel-art.locked-art,
  .v2-tile .pixel-art.proposal-key,
  .v2-tile .pixel-art.proposal-glitch,
  .v2-tile.paw .gb-label .dot,
  .v2-tile.forest .gb-label .dot,
  .v2-tile.biodiv .gb-label .dot,
  .v2-tile.food .gb-label .dot {
    animation: none !important;
  }
}

.v2-tile .gb-body {
  padding: 2px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.v2-tile .tile-cause {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yc-white-dim);
  margin: 0;
}
.v2-tile h3 {
  font-family: var(--yc-font-display);
  font-size: 26px;
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.v2-tile .gb-controls {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.v2-tile .gb-dpad {
  position: relative;
  width: 28px;
  height: 28px;
}
.v2-tile .gb-dpad::before, .v2-tile .gb-dpad::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}
.v2-tile .gb-dpad::before {
  top: 0; bottom: 0; left: 10px; right: 10px;
}
.v2-tile .gb-dpad::after {
  left: 0; right: 0; top: 10px; bottom: 10px;
}
.v2-tile .gb-ab {
  display: flex;
  gap: 6px;
}
.v2-tile .gb-ab span {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--yc-pink);
  box-shadow: 0 2px 0 #8a1866, inset 0 1px 0 rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--yc-font-display);
  font-weight: 900;
  font-size: 10px;
  color: #fff;
}
.v2-tile .gb-ab span.b { background: var(--yc-violet); box-shadow: 0 2px 0 #4a2a9e, inset 0 1px 0 rgba(255,255,255,0.25); }

.v2-tile .gb-plays {
  font-family: var(--yc-font-mono);
  font-size: 11px;
  color: var(--yc-white-dim);
}
.v2-tile .gb-plays strong { color: #fff; font-weight: 700; }

/* Partners */
.v2-partners { padding: 40px 0 80px; }
.v2-partners-wrap {
  background: linear-gradient(135deg, rgba(255, 77, 204, 0.1), rgba(124, 77, 255, 0.06));
  border: 1px solid rgba(255, 77, 204, 0.2);
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.v2-partners-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 10%, rgba(255, 77, 204, 0.2), transparent 50%);
  pointer-events: none;
}
.v2-partners-wrap h2 {
  font-family: var(--yc-font-display);
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 16px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.03em;
  position: relative;
  line-height: 1.25;
}
.v2-partners-eyebrow {
  font-family: var(--yc-font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yc-pink);
  margin-bottom: 12px;
  display: block;
}
.v2-partners-wrap p {
  font-size: 16px;
  color: var(--yc-white-dim);
  margin: 0 0 28px;
  position: relative;
}
.v2-partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  margin-bottom: 28px;
}
.v2-partner-tags .tag {
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--yc-font-display);
  font-weight: 700;
  color: #fff;
}
.v2-partner-tags .tag.placeholder {
  background: transparent;
  border-style: dashed;
  color: rgba(255,255,255,0.35);
  font-family: var(--yc-font-mono);
  font-weight: 500;
  font-size: 12px;
}
.v2-partner-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 360px;
  justify-self: center;
  width: 100%;
}
@media (max-width: 860px) {
  .v2-partners-wrap { grid-template-columns: 1fr; padding: 36px 28px; }
}

/* Footer : styles déplacés dans shared/css/design-system.css (composant
   partagé, source unique). Markup injecté par shared/js/yc-footer.js. */

/* Respect reduced motion (animations de tuiles, hover). Le bouton
   .yc-play-btn gère son propre reduced-motion côté design-system. */
@media (prefers-reduced-motion: reduce) {
  .v2-tile, .yc-btn--ghost { transition: none; }
  .v2-tile:hover { transform: none; }
  .v2-tile .pixel-art { animation: none !important; }
}
