/* ============================================================
   planchette.css — extrait de styles.css le 2026-05-07
   Phase 3 (extraction CSS module-par-module).
   317 règles, ~1723 lignes.
   Cut & paste pur — ordre source strict (même @media wrapper si répété).
   ============================================================ */

#planchetteView.active {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
}

.field-block {
  margin-bottom: 16px;
  border-radius: 16px;
  padding: 10px 12px 12px;
  position: relative;
  background: var(--surface-soft);
  border: 1px solid var(--surface-border);
  box-shadow: var(--surface-shadow);
}

.field-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(230, 210, 130, 0.14),
    transparent,
    rgba(120, 180, 255, 0.06)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.45;
  pointer-events: none;
}

.planchette-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  background-color: #000;
  overflow: hidden;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

@media (max-width: 1023px) {
  .planchette-container {
      background-image: url('labo/images/ouija_mobile.webp');
      background-size: contain;
      background-position: center center;
      background-color: #000;
      padding-top: 20px;
    }

}

.planchette-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(180,140,55,0.28);
  pointer-events: none;
  z-index: 9999;
  transition: border-color 1.4s ease, box-shadow 1.4s ease, opacity 1.8s ease;
}

.planchette-container.planchette-state-canalisation::after {
  border-color: rgba(212,175,55,0.42);
}

.planchette-container.planchette-state-revelation::after {
  border-color: rgba(140,65,235,0.62);
  box-shadow: inset 0 0 40px rgba(120,50,225,0.06);
}

.planchette-container.planchette-state-ended {
  background: transparent;
  transition: background 2s ease;
}

.planchette-container.planchette-state-ended::after {
  opacity: 0;
}

.planchette-container.planchette-state-ended .planchette-stars,
.planchette-container.planchette-state-ended .planchette-particles,
.planchette-container.planchette-state-ended .planchette-vignette,
.planchette-container.planchette-state-ended .planchette-rune-grid,
.planchette-container.planchette-state-ended .planchette-bg-pattern {
  opacity: 0;
  transition: opacity 2s ease;
}

.planchette-container.planchette-state-ended .planchette-corner {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.planchette-container.planchette-state-ended .planchette-overlay {
  background: radial-gradient(circle at center, #0f1a33 0%, #020617 55%, #000 100%);
  backdrop-filter: none;
}

.planchette-rune-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.022;
  background-image:
    repeating-linear-gradient(0deg, rgba(212,175,55,0.6) 0px, transparent 1px, transparent 44px),
    repeating-linear-gradient(90deg, rgba(212,175,55,0.6) 0px, transparent 1px, transparent 44px);
  background-size: 44px 44px;
}

.planchette-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.planchette-bg-pattern::before {
  content: '';
  position: absolute;
  width: 70vw; height: 70vw;
  top: -10vw; left: -15vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,40,160,0.10) 0%, transparent 70%);
  animation: coldMist 20s ease-in-out infinite alternate;
}

.planchette-bg-pattern::after {
  content: '';
  position: absolute;
  width: 55vw; height: 55vw;
  bottom: -5vw; right: -10vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,30,100,0.08) 0%, transparent 70%);
  animation: coldMist 28s ease-in-out infinite alternate-reverse;
}

.planchette-bg-loop-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.8s ease;
  background: #000;
}

.planchette-container.planchette-state-ended .planchette-bg-loop-video {
  opacity: 0;
}

.planchette-end-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 1023px) {
  .planchette-end-video {
      object-fit: contain;
      background: #000;
    }

}

.planchette-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(2,1,8,0.55) 100%);
  opacity: 0.4;
  transition: opacity 2.5s ease;
}

.planchette-state-canalisation .planchette-vignette {
  opacity: 0.55;
}

.planchette-state-revelation .planchette-vignette {
  opacity: 0.6;
  background: radial-gradient(ellipse at center, transparent 15%, rgba(4,0,15,0.70) 100%);
}

.planchette-stars,
.planchette-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.planchette-board {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.planchette-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  opacity: 0.50;
  transition: opacity 1.4s ease, border-color 1.4s ease;
}

.planchette-state-canalisation .planchette-corner,
.planchette-state-revelation .planchette-corner { opacity: 0.85; }

.planchette-corner-tl { top: 18px; left: 18px; border-top: 1px solid #c9a040; border-left: 1px solid #c9a040; }

.planchette-corner-tr { top: 18px; right: 18px; border-top: 1px solid #c9a040; border-right: 1px solid #c9a040; }

.planchette-corner-bl { bottom: 18px; left: 18px; border-bottom: 1px solid #c9a040; border-left: 1px solid #c9a040; }

.planchette-corner-br { bottom: 18px; right: 18px; border-bottom: 1px solid #c9a040; border-right: 1px solid #c9a040; }

.planchette-state-revelation .planchette-corner-tl,
.planchette-state-revelation .planchette-corner-tr,
.planchette-state-revelation .planchette-corner-bl,
.planchette-state-revelation .planchette-corner-br {
  border-color: rgba(165,100,245,0.90);
}

.planchette-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr minmax(0, 28vh) auto;
  align-items: start;
  justify-items: center;
  padding: 3vh 1.5rem 3vh;
  max-width: 580px;
  width: 100%;
  height: 100%;
}

.planchette-header {
  text-align: center;
}

.planchette-instruction {
  text-align: center;
  transition: opacity 0.8s ease;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.78rem, 1.6vh, 0.95rem);
  font-style: italic;
  color: rgba(180,160,220,0.65);
  letter-spacing: 0.05em;
  margin-top: auto;
  padding-top: clamp(0.4rem, 1vh, 0.8rem);
  min-height: 1.2rem;
}

.planchette-header .planchette-title {
  margin-bottom: 0.5rem;
}

.planchette-header .planchette-lore {
  opacity: 0.8;
  font-size: 0.95rem;
}

.planchette-title {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: clamp(0.95rem, 2.2vh, 1.4rem);
  font-weight: 400;
  color: #c8a84a;
  margin: 0 0 0.4rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  text-shadow:
    0 0 25px rgba(212,175,55,0.45),
    0 0 70px rgba(212,175,55,0.12);
}

.planchette-lore {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.75rem, 1.7vh, 1rem);
  color: rgba(195,185,220,0.62);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
  letter-spacing: 0.04em;
  max-width: 400px;
}

.planchette-consigne,
.planchette-consigne-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.6rem;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 3px;
  background: rgba(8,6,18,0.55);
  backdrop-filter: blur(6px);
}

.planchette-consigne {
  margin-bottom: 0.3rem;
}

.planchette-consigne-result {
  background: rgba(25,15,50,0.65);
  border-color: rgba(140,80,220,0.22);
}

.planchette-consigne-icon {
  font-size: 1.4rem;
  color: #d4af37;
  animation: iconPulse 3s ease-in-out infinite;
}

.planchette-consigne-result .planchette-consigne-icon {
  font-size: 1.5rem;
}

.planchette-consigne-text p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  color: rgba(200,188,225,0.80);
  margin: 0;
  text-align: center;
}

.planchette-consigne-text strong {
  color: #d4af37;
}

.planchette-status {
  min-height: 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.8rem, 1.6vh, 1rem);
  color: rgba(190,170,225,0.55);
  text-align: center;
  letter-spacing: 0.06em;
  transition: color 0.5s ease;
}

.planchette-status.active {
  color: #d4af37;
  text-shadow: 0 0 18px rgba(212,175,55,0.55);
}

.planchette-status.warning { color: #c9a227; }

.planchette-status.revelation {
  color: #c0a0f0;
  font-style: italic;
  text-shadow: 0 0 25px rgba(160,100,240,0.45);
}

.planchette-status.note { font-style: italic; color: #94a3b8; font-size: 0.9rem; }

.planchette-status em { opacity: 0.7; font-size: 0.9em; }

.planchette-note { display: block; text-align: center; opacity: 0.7; }

.planchette-circle-container {
  position: relative;
  width: min(230px, 29vh);
  height: min(230px, 29vh);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 0;
  flex-shrink: 0;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.planchette-circle-rings {
  position: absolute;
  inset: -38px;
  pointer-events: none;
}

.planchette-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.06);
  transition: border-color 1.5s ease, box-shadow 1.5s ease;
}

.planchette-ring-1 {
  inset: 0;
  border-style: dashed;
  animation: ringRotate 24s linear infinite;
}

.planchette-ring-2 {
  inset: 12px;
  animation: ringRotate 38s linear infinite reverse;
}

.planchette-ring-3 {
  inset: 24px;
  border-style: dotted;
  animation: ringRotate 30s linear infinite;
}

.planchette-state-canalisation .planchette-ring-1 {
  border-color: rgba(212,175,55,0.38);
  box-shadow: 0 0 10px rgba(212,175,55,0.12);
}

.planchette-state-canalisation .planchette-ring-2 {
  border-color: rgba(160,80,240,0.32);
  box-shadow: 0 0 15px rgba(140,60,220,0.14);
}

.planchette-state-canalisation .planchette-ring-3 {
  border-color: rgba(212,175,55,0.18);
}

.planchette-state-revelation .planchette-ring-1 {
  border-color: rgba(160,80,240,0.55);
  box-shadow: 0 0 18px rgba(130,50,220,0.30);
}

.planchette-state-revelation .planchette-ring-2 {
  border-color: rgba(212,175,55,0.22);
}

.planchette-circle {
  position: relative;
  width: min(276px, 34vh);
  height: min(276px, 34vh);
  border-radius: 50%;
  cursor: crosshair;
  transition: transform 0.4s ease;
  --pulse-duration: 2s;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
}

.planchette-circle:hover::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  box-shadow: 0 0 18px 4px rgba(210,165,80,0.18), 0 0 38px 10px rgba(210,165,80,0.08);
  animation: planchetteHoverPulse 2s ease-in-out infinite;
  pointer-events: none;
}

.planchette-sigil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: filter 1.2s ease;
  pointer-events: none;
}

.planchette-circle.active .planchette-sigil,
.planchette-state-canalisation .planchette-sigil {
  filter: drop-shadow(0 0 10px rgba(130,70,220,0.7)) drop-shadow(0 0 22px rgba(100,50,200,0.4));
  animation: sigilPulse var(--pulse-duration) ease-in-out infinite;
}

.planchette-circle.revealing .planchette-sigil,
.planchette-state-revelation .planchette-sigil {
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.6)) drop-shadow(0 0 18px rgba(160,120,30,0.4));
}

.planchette-circle-glow {
  position: absolute;
  inset: -38px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130,70,220,0.22) 0%, rgba(212,175,55,0.06) 42%, transparent 68%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.planchette-circle.active .planchette-circle-glow,
.planchette-state-canalisation .planchette-circle-glow {
  opacity: 0.4;
}

.planchette-circle.active {
  animation: circlePulse var(--pulse-duration) ease-in-out infinite;
}

.planchette-circle.active .planchette-circle-inner {
  border-color: rgba(170,110,255,0.72);
  box-shadow:
    inset 0 0 45px rgba(0,0,0,0.65),
    inset 0 0 90px rgba(130,70,230,0.22),
    inset 0 2px 4px rgba(255,255,255,0.05),
    0 0 55px rgba(130,70,230,0.32),
    0 0 110px rgba(212,175,55,0.08);
}

.planchette-circle.active .planchette-circle-glow {
  opacity: 0.95;
  animation: planchetteGlowPulse var(--pulse-duration) ease-in-out infinite;
}

.planchette-circle.active .planchette-mist-1 {
  animation-duration: 8s;
}

.planchette-circle.active .planchette-runes {
  border-color: rgba(212,175,55,0.22);
  animation-duration: 28s;
}

.planchette-circle.revealing .planchette-circle-inner {
  border-color: rgba(130,60,230,0.55);
  box-shadow:
    inset 0 0 70px rgba(70,15,130,0.45),
    0 0 45px rgba(90,30,180,0.22);
}

.planchette-circle.revealing .planchette-mist-1 {
  animation-duration: 5s;
}

.planchette-circle.revealing .planchette-circle-glow {
  opacity: 0.55;
  background: radial-gradient(circle, rgba(130,55,230,0.42) 0%, transparent 68%);
}

.planchette-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 50%;
}

.planchette-wave {
  position: absolute;
  width: 276px;
  height: 276px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(1);
  border-radius: 50%;
  border: 1px solid rgba(130,70,230,0.5);
  animation: waveExpand 2.2s ease-out forwards;
}

.planchette-message-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: clamp(40px, 6vh, 60px);
  overflow: hidden;
}

.planchette-message {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0.15em 0.4em;
  text-align: center;
  line-height: 1.5;
  width: 100%;
  overflow: hidden;
}

.planchette-word {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: clamp(1.3rem, 3vh, 1.9rem);
  font-weight: 400;
  color: #ead8a2;
  letter-spacing: 0.08em;
  display: inline-block;
  margin: 0 0.28em;
  animation: wordFloat 6s ease-in-out infinite;
}

.planchette-word:nth-child(1)  { animation-delay: 0s; }

.planchette-word:nth-child(2)  { animation-delay: 0.5s; }

.planchette-word:nth-child(3)  { animation-delay: 1.0s; }

.planchette-word:nth-child(4)  { animation-delay: 1.5s; }

.planchette-word:nth-child(5)  { animation-delay: 2.0s; }

.planchette-word:nth-child(6)  { animation-delay: 2.5s; }

.planchette-word:nth-child(7)  { animation-delay: 3.0s; }

.planchette-word:nth-child(8)  { animation-delay: 0.3s; }

.planchette-word:nth-child(9)  { animation-delay: 0.8s; }

.planchette-word:nth-child(10) { animation-delay: 1.3s; }

.planchette-word:nth-child(11) { animation-delay: 1.8s; }

.planchette-word:nth-child(12) { animation-delay: 2.3s; }

.planchette-word.noisy {
  opacity: 0.33;
  filter: blur(0.8px);
}

.planchette-word.noisy .planchette-letter {
  color: #3a3060;
  text-shadow: 0 0 8px rgba(70,50,120,0.2);
}

.planchette-word.strikethrough {
  text-decoration: line-through;
  text-decoration-color: rgba(90,65,140,0.5);
  opacity: 0.38;
}

.planchette-word.strikethrough .planchette-letter {
  color: #3a3060;
  text-shadow: none !important;
}

.planchette-word-ephemeral {
  display: inline-block;
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: clamp(1.35rem, 3.2vh, 2.1rem);
  font-weight: 400;
  color: #f0e0a0;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 30px rgba(212,175,55,0.9),
    0 0 65px rgba(212,175,55,0.45);
  /* animation handled by JS transitions */
}

.planchette-letter,
.planchette-voice-letter {
  display: inline-block;
  transition: opacity 0.15s ease-out;
}

.planchette-separator {
  display: inline-block;
}

.planchette-actions,
.planchette-overlay-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0.45;
  transition: opacity 0.4s ease;
  margin-top: 0.5em;
}

.planchette-overlay-actions:hover {
  opacity: 1;
}

.planchette-vision-section {
  text-align: center;
  margin: 0.5em 0;
}

.planchette-btn-vision {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 4px;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: rgba(212,175,55,0.82);
  cursor: pointer;
  padding: 0.7em 1.4em;
  transition: color 0.3s ease, border-color 0.3s ease, text-shadow 0.3s ease;
  text-transform: uppercase;
}

.planchette-btn-vision:hover:not(:disabled) {
  color: rgba(212,175,55,1);
  border-color: rgba(212,175,55,0.7);
  text-shadow: 0 0 18px rgba(212,175,55,0.4);
}

.planchette-btn-vision:disabled {
  color: rgba(212,175,55,0.5);
  border-color: rgba(212,175,55,0.2);
  cursor: default;
  animation: visionPulse 1.8s ease-in-out infinite;
}

.planchette-vision-modal {
  position: fixed;
  inset: 0;
  z-index: 199999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  padding-top: calc(env(safe-area-inset-top, 0px) + 60px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.planchette-vision-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.planchette-vision-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: calc(env(safe-area-inset-top, 0px) + 0.7rem) 0.9rem 0.8rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0) 100%);
  z-index: 2;
}

.planchette-vision-action-btn {
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.6em 1em;
  cursor: pointer;
  border-radius: 4px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s, opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
  min-height: 42px;
}

.planchette-vision-action-btn:hover,
.planchette-vision-action-btn:active {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: rgba(20,10,40,0.85);
}

.planchette-vision-action-btn:disabled {
  opacity: 0.55;
  cursor: default;
}

.planchette-vision-btn-back {
  border-color: rgba(212,175,55,0.5);
  color: rgba(235,220,185,0.95);
}

.planchette-vision-btn-report {
  border-color: rgba(160,120,220,0.5);
}

@media (max-width: 480px) {
  .planchette-vision-action-btn {
      font-size: 0.64rem;
      padding: 0.55em 0.75em;
      letter-spacing: 0.08em;
    }

  .planchette-vision-topbar { gap: 0.4rem; padding-left: 0.6rem; padding-right: 0.6rem; }

}

}

/* Vision inline dans l'overlay après retour */
.planchette-vision-inline {
  opacity: 0;
  transition: opacity 1.4s ease;
  margin-top: 1.6em;
  text-align: center;
}

.planchette-vision-inline-label {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  color: rgba(212,175,55,0.4);
  text-transform: uppercase;
  margin-bottom: 0.9em;
}

.planchette-vision-inline-img {
  width: 100%;
  max-width: 400px;
  border-radius: 3px;
  opacity: 0.85;
  display: block;
  margin: 0 auto;
}

.planchette-actions {
  display: none;
  margin-top: 0.5rem;
}

.planchette-btn {
  font-family: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  padding: 0.7rem 1.7rem;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.22);
  color: rgba(195,175,240,0.65);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.planchette-btn:hover {
  border-color: #d4af37;
  color: #d4af37;
  box-shadow: 0 0 22px rgba(212,175,55,0.14), inset 0 0 18px rgba(212,175,55,0.04);
}



.planchette-btn-quit:hover {
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.65);
}

.planchette-results {
  margin-top: 0.5em;
}

.planchette-voices {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
}

.planchette-voice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: linear-gradient(135deg, rgba(12,8,25,0.92) 0%, rgba(8,5,16,0.96) 100%);
  border-left: 2px solid rgba(212,175,55,0.28);
  border-top: 1px solid rgba(212,175,55,0.04);
  border-radius: 0 5px 5px 0;
  position: relative;
  animation: voiceAppear 0.7s ease-out forwards;
}

.planchette-voice::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.55), transparent);
}

.planchette-voice-name {
  display: inline-block;
  font-size: 0.65em;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
  color: rgba(212,175,55,0.55);
  text-transform: uppercase;
  margin-bottom: 0.3em;
}

.planchette-voice-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  opacity: 0.80;
}

.planchette-voice-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: rgba(218,205,240,0.90);
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.planchette-voice-claire {
  border-left-color: rgba(212,175,55,0.42);
}

.planchette-voice-murmure {
  border-left-color: rgba(140,90,210,0.32);
  opacity: 0.87;
}

.planchette-voice-murmure .planchette-voice-text {
  font-style: italic;
  color: rgba(175,155,220,0.82);
}

.planchette-voice-fragment {
  opacity: 0.70;
  border-left-style: dashed;
  border-left-color: rgba(90,70,155,0.30);
}

.planchette-voice-fragment .planchette-voice-text {
  font-style: italic;
  letter-spacing: 0.08em;
  color: rgba(155,135,200,0.75);
}

.planchette-personality-protectrice { border-left-color: #4a90d9; }

.planchette-personality-protectrice .planchette-voice-name { color: #4a90d9; }

.planchette-personality-detresse { border-left-color: #9b59b6; }

.planchette-personality-detresse .planchette-voice-name { color: #9b59b6; }

.planchette-personality-accusatrice { border-left-color: #c0392b; }

.planchette-personality-accusatrice .planchette-voice-name { color: #c0392b; }

.planchette-personality-residuelle { border-left-color: rgba(212, 175, 55, 0.4); }

.planchette-personality-residuelle .planchette-voice-name { color: rgba(212, 175, 55, 0.7); }

.planchette-personality-rituelle { border-left-color: #8e44ad; }

.planchette-personality-rituelle .planchette-voice-name { color: #8e44ad; }

.planchette-medium {
  display: none;
  margin-top: 1em;
}

.planchette-medium-container,
/* Section voix + disclaimer groupés */
.planchette-overlay-voices-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.planchette-overlay-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(140,80,200,0.25) 30%, rgba(212,175,55,0.18) 50%, rgba(140,80,200,0.25) 70%, transparent);
  margin: 0.4rem 0;
}

.planchette-overlay-medium {
  background: rgba(12,16,36,0.80);
  border-radius: 14px;
  border: 1px solid rgba(230,210,130,0.16);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.44),
    inset 0 0 0 1px rgba(255,255,255,0.02);
  padding: 1.5em 1.6em;
  position: relative;
}

.planchette-overlay-medium-title {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  color: rgba(212,175,55,0.72);
  text-align: center;
  margin-bottom: 1.1em;
}

.planchette-medium-text,
.planchette-overlay-medium-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  line-height: 1.88;
  color: rgba(220,210,245,0.95);
  text-align: left;
}

.planchette-medium-text p,
.planchette-overlay-medium-text p {
  margin: 0 0 1rem;
}

.planchette-medium-text p:last-child,
.planchette-overlay-medium-text p:last-child {
  margin-bottom: 0;
}

.planchette-signes-recus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.planchette-signes-label {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: rgba(140, 110, 190, 0.75);
  text-transform: uppercase;
}

.planchette-signes-origine {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.72rem;
  color: rgba(180,160,220,0.65);
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 0.7rem;
}

.planchette-signes-mots {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: clamp(0.7rem, 1.8vw, 0.88rem);
  letter-spacing: 0.16em;
  color: rgba(180, 160, 220, 0.85);
  text-align: center;
  line-height: 2;
  word-spacing: 0.4em;
}

.planchette-phrase-centrale {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.65rem, 4.5vw, 2.3rem);
  font-style: italic;
  color: rgba(230, 215, 180, 0.97);
  text-align: center;
  line-height: 1.5;
  padding: 1.2rem 0.5rem 0.8rem;
  letter-spacing: 0.01em;
  text-shadow:
    0 0 30px rgba(212,175,55,0.32),
    0 0 60px rgba(180,140,40,0.14);
  color: rgba(235,220,185,0.95);
}

.planchette-lecture-wrapper {
  margin-top: 0.6rem;
  padding: 1.4rem 0 0.5rem;
  position: relative;
}

.planchette-lecture-wrapper::before {
  content: '── ✦ ──';
  display: block;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: rgba(160,120,220,0.65);
  letter-spacing: 0.25em;
  margin-bottom: 1.1rem;
}

.planchette-lecture-label {
  display: none;
}

.planchette-lecture-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.95;
  color: rgba(195,183,225,0.95);
  text-align: center;
}

@media (max-width: 768px) {
  
  .planchette-lecture-text {
      font-size: 0.9rem;
    }

}

.planchette-word-keyword {
  color: #ead898;
  font-weight: 500;
  text-shadow: 0 0 14px rgba(212,175,55,0.32);
}

.planchette-word-passerelle {
  font-style: italic;
  color: rgba(155,135,200,0.82);
  opacity: 0.85;
}

.planchette-legend {
  margin-top: 1rem;
  text-align: center;
}

.planchette-legend-text {
  font-size: 0.8rem;
  color: rgba(90,80,125,0.70);
  font-style: italic;
}

.planchette-legend-text em {
  font-style: italic;
  color: rgba(130,110,175,0.75);
}

.planchette-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(100,55,180,0.14) 0%, transparent 58%),
    rgba(5,3,18,0.78);
  backdrop-filter: blur(22px) brightness(0.42);
  -webkit-backdrop-filter: blur(22px) brightness(0.42);
  z-index: 99999;
  color: rgba(218,205,242,0.9);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 2s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2em;
}

.planchette-overlay::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, transparent 18%, transparent 80%, rgba(0,0,0,0.30) 100%);
  pointer-events: none;
  z-index: 0;
}

.planchette-overlay::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C%2Ffilter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'%2F%3E%3C%2Fsvg%3E");
  background-size: 256px 256px;
  background-repeat: repeat;
  mix-blend-mode: screen;
}

.planchette-phrase-centrale {
  font-size: clamp(1.5rem, 4.5vw, 1.95rem) !important;
  padding: 1.2rem 0.5rem 0.8rem !important;
  animation: phraseLueur 9s ease-in-out infinite;
}

@media (max-width: 768px) {
  .planchette-phrase-centrale {
      font-size: clamp(1.2rem, 4.5vw, 1.45rem) !important;
      padding: 1.4rem 0.3rem 0.8rem !important;
    }

}

.planchette-lecture-wrapper {
  padding: 1rem 0 0.4rem !important;
}

.planchette-lecture-wrapper::before {
  animation: sepPulse 7s ease-in-out infinite;
  color: rgba(212,175,55,0.65) !important;
  font-size: 1rem !important;
  letter-spacing: 0.32em !important;
  margin-bottom: 1.6rem !important;
}

.planchette-signes-recus {
  gap: 0.8rem !important;
  margin-bottom: 1.4rem !important;
  position: relative;
  padding-top: 1.2rem;
}

.planchette-signes-recus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.55), transparent);
  animation: linePulse 5s ease-in-out infinite;
}

.planchette-signes-label {
  font-size: 0.60rem !important;
  letter-spacing: 0.34em !important;
  color: rgba(212,175,55,0.72) !important;
}

.planchette-signes-mots {
  font-size: clamp(0.82rem, 2vw, 1rem) !important;
  letter-spacing: 0.26em !important;
  color: rgba(210,192,248,0.95) !important;
  word-spacing: 0.7em !important;
}

.planchette-vision-inline {
  position: relative;
  margin-top: 1rem !important;
}

.planchette-vision-inline::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; height: 90%;
  border-radius: 4px;
  background: radial-gradient(ellipse at center,
    rgba(140,70,220,0.22) 0%,
    rgba(212,175,55,0.10) 40%,
    transparent 70%);
  animation: auraBreathe 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  filter: blur(22px);
}

.planchette-vision-inline-label {
  letter-spacing: 0.32em !important;
  color: rgba(212,175,55,0.55) !important;
  font-size: 0.60rem !important;
  margin-bottom: 1.2em !important;
}

.planchette-vision-inline-img {
  max-width: 460px !important;
  border-radius: 3px !important;
  border: 1px solid rgba(212,175,55,0.28) !important;
  opacity: 1 !important;
  position: relative;
  z-index: 1;
  animation: visionRespire 11s ease-in-out infinite;
  /* ombre profonde + halo mystique */
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.10),
    0 0 28px rgba(212,175,55,0.22),
    0 0 70px rgba(100,50,200,0.16),
    0 28px 60px rgba(0,0,0,0.70) !important;
}

.planchette-btn-retry {
  border-color: rgba(212,175,55,0.55) !important;
  color: rgba(212,175,55,1) !important;
  font-size: 0.80rem !important;
  letter-spacing: 0.20em !important;
  padding: 0.85rem 2.2rem !important;
  box-shadow: 0 0 22px rgba(212,175,55,0.08), inset 0 0 18px rgba(212,175,55,0.04) !important;
  transition: all 0.4s ease !important;
}

.planchette-btn-retry:hover {
  border-color: rgba(212,175,55,0.95) !important;
  box-shadow: 0 0 38px rgba(212,175,55,0.22), inset 0 0 22px rgba(212,175,55,0.08) !important;
  text-shadow: 0 0 20px rgba(212,175,55,0.5) !important;
}

.planchette-btn-quit {
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.18) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  padding: 0.4rem 0.8rem !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.planchette-btn-quit:hover {
  color: rgba(255,255,255,0.40) !important;
  border-bottom-color: rgba(255,255,255,0.18) !important;
  box-shadow: none !important;
}

.planchette-overlay-content {
  filter: none;
}

.planchette-overlay-content::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(100,50,180,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(60,30,140,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(140,70,200,0.04) 0%, transparent 65%);
  animation: brumeLente 18s ease-in-out infinite;
}

.planchette-lecture-wrapper::after {
  content: '✦';
  display: block;
  text-align: center;
  font-size: 0.55rem;
  color: rgba(212,175,55,0.85);
  margin-top: 1.8rem;
  letter-spacing: 0;
  animation: etoilePulse 4s ease-in-out infinite;
}

.planchette-overlay-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  margin: auto 0;
  padding: 1.6em 0;
}

.planchette-overlay-voices {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.planchette-overlay-voice {
  padding: 1em 1.2em;
  background: rgba(20,14,42,0.72);
  border-left: 2px solid rgba(212,175,55,0.28);
  border-radius: 0 4px 4px 0;
  position: relative;
}

.planchette-overlay-voice::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.5), transparent);
}

.planchette-overlay-voice-name {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.65em;
  letter-spacing: 0.1em;
  color: rgba(212,175,55,0.58);
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

.planchette-overlay-voice-icon {
  margin-right: 0.6em;
  opacity: 0.8;
}

.planchette-overlay-voice-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15em;
  line-height: 1.75;
  color: rgba(218,205,242,0.90);
  letter-spacing: 0.02em;
}

.planchette-overlay-voice.planchette-personality-protectrice { border-left-color: #4a90d9; }

.planchette-overlay-voice.planchette-personality-protectrice .planchette-overlay-voice-name { color: #4a90d9; }

.planchette-overlay-voice.planchette-personality-detresse { border-left-color: #9b59b6; }

.planchette-overlay-voice.planchette-personality-detresse .planchette-overlay-voice-name { color: #9b59b6; }

.planchette-overlay-voice.planchette-personality-accusatrice { border-left-color: #c0392b; }

.planchette-overlay-voice.planchette-personality-accusatrice .planchette-overlay-voice-name { color: #c0392b; }

.planchette-overlay-voice.planchette-personality-residuelle { border-left-color: rgba(212, 175, 55, 0.4); }

.planchette-overlay-voice.planchette-personality-residuelle .planchette-overlay-voice-name { color: rgba(212, 175, 55, 0.7); }

.planchette-overlay-voice.planchette-personality-rituelle { border-left-color: #8e44ad; }

.planchette-overlay-voice.planchette-personality-rituelle .planchette-overlay-voice-name { color: #8e44ad; }

.planchette-overlay-voice.planchette-voice-fragment {
  border-left-style: dashed;
  opacity: 0.8;
}

.planchette-overlay-voice.planchette-voice-fragment .planchette-overlay-voice-text {
  font-style: italic;
  letter-spacing: 0.08em;
}

.planchette-overlay-voice-text strong {
  font-weight: 600;
  color: #d4af37;
}

.planchette-overlay-voice-text em {
  font-style: italic;
  color: rgba(195,175,240,0.65);
}

.planchette-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: rgba(212,175,55,0.7);
  margin-left: 2px;
  vertical-align: middle;
  animation: cursorBlink 0.75s step-end infinite;
}

.planchette-reveal-zone {
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  padding: 0.5rem 0;
}

.planchette-btn-reveal {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: transparent;
  border: 1px solid rgba(140,70,220,0.45);
  color: rgba(180,140,255,0.80);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.4s ease;
  position: relative;
}

.planchette-btn-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(120,50,200,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.planchette-btn-reveal:hover {
  border-color: rgba(160,100,255,0.75);
  color: rgba(210,180,255,0.95);
  box-shadow: 0 0 28px rgba(140,60,220,0.18), inset 0 0 18px rgba(120,50,200,0.06);
}

.planchette-btn-reveal:hover::before { opacity: 1; }

.planchette-overlay-sep {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: rgba(140,100,200,0.45);
  letter-spacing: 0.25em;
  margin-bottom: 1.2em;
}

.planchette-overlay-medium {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.planchette-overlay-disclaimer {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.80rem;
  color: rgba(180,155,100,0.58);
  font-style: italic;
  letter-spacing: 0.03em;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(212,175,55,0.08);
}

.planchette-overlay-disclaimer em {
  font-style: italic;
  color: rgba(210,185,255,0.65);
}

.planchette-state-canalisation .planchette-instruction {
  opacity: 0.22;
}

.planchette-state-ended .planchette-circle {
  opacity: 0.38;
  pointer-events: none;
}

@media (min-width: 601px) and (max-width: 1023px) {
  .planchette-wrapper {
      padding: 3vh 1.5rem 2vh;
    }

  .planchette-title {
      font-size: 1.1rem;
      letter-spacing: 0.22em;
    }

  .planchette-lore {
      font-size: 0.82rem;
      line-height: 1.4;
    }

  .planchette-circle-container {
      width: 293px;
      height: 293px;
    }

  .planchette-circle {
      width: 236px;
      height: 236px;
    }

}

@media (max-width: 600px) {
  .planchette-message-zone {
      min-height: 80px;
    }

  .planchette-word-ephemeral {
      font-size: 1.4em;
    }

  .planchette-medium-container,
    .planchette-overlay-medium {
      padding: 0.8em 1em;
    }

  .planchette-medium-text,
    .planchette-overlay-medium-text {
      font-size: 0.85em;
    }

  .planchette-voice {
      padding: 0.85rem 1rem;
    }

  .planchette-voice-name {
      font-size: 0.6em;
    }

  .planchette-voice-text {
      font-size: 1.1rem;
    }

  .planchette-overlay {
      padding: 1.5em;
    }

  .planchette-overlay-voice {
      padding: 0.8em 1em;
    }

  .planchette-overlay-voice-text {
      font-size: 1.05em;
    }

  .planchette-overlay-actions,
    .planchette-actions {
      flex-direction: column;
      gap: 0.8em;
      width: 100%;
    }

  .planchette-overlay-actions .planchette-btn,
    .planchette-btn {
      width: 100%;
      text-align: center;
    }

}

@media (max-width: 480px) {
  .planchette-wrapper {
      padding: 4vh 1rem 5vh;
      gap: 1.2rem;
    }

  .planchette-title {
      font-size: 1.1rem;
      letter-spacing: 0.25em;
    }

  .planchette-lore {
      font-size: 0.85rem;
    }

  .planchette-circle-container {
      width: 288px;
      height: 288px;
    }

  .planchette-circle {
      width: 230px;
      height: 230px;
    }

  .planchette-word {
      font-size: 1.5rem;
    }

  .planchette-legend-text {
      font-size: 0.75rem;
    }

}

@media (prefers-reduced-motion: reduce) {
  .planchette-circle.active,
    .planchette-ring,
    .planchette-runes,
    .planchette-consigne-icon {
      animation: none;
    }

}

.ph-card {
  position: relative;
  background: linear-gradient(180deg, rgba(28, 18, 48, 0.85) 0%, rgba(15, 12, 28, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.08) inset;
  color: var(--text-soft, #e6e2d8);
  overflow: hidden;
}

.ph-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
  opacity: 0.7;
}

.ph-header { text-align: center; margin-bottom: 18px; }

.ph-header-title {
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #d4af37;
  margin-bottom: 4px;
}

.ph-header-date {
  font-size: 0.92rem;
  color: var(--text-soft, #e6e2d8);
  margin-bottom: 2px;
}

.ph-header-sub {
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(230, 226, 216, 0.55);
}

.ph-aspects-section {
  margin: 16px 0 22px;
  padding: 14px 0 4px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.ph-aspects-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(212, 175, 55, 0.7);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
}

.ph-aspects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ph-aspect-card {
  background: rgba(11, 17, 32, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 12px;
  padding: 12px 8px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

@media (max-width: 720px) {
  .ph-card { padding: 18px 14px; }

  .ph-header-title { font-size: 0.92rem; letter-spacing: 0.08em; word-break: break-word; }

  .ph-aspects-grid { grid-template-columns: 1fr; gap: 6px; }

  .ph-aspect-card {
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-items: center;
      text-align: left;
      gap: 6px;
      padding: 8px 10px;
      min-width: 0;
      overflow: hidden;
    }

  .ph-aspect-card > * { min-width: 0; }

  .ph-aspect-symbol { font-size: 1rem; margin: 0; flex-shrink: 0; min-width: 1.2em; text-align: center; }

  .ph-aspect-symbol.ph-aspect-natal { font-size: 0.85rem; margin: 0; flex-shrink: 0; min-width: 1.6em; text-align: center; }

  .ph-aspect-label { font-size: 0.78rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; flex: 1 1 auto; }

  .ph-aspect-relation { font-size: 0.68rem; margin: 0; flex-shrink: 0; white-space: nowrap; }

  .ph-aspect-symbol.ph-aspect-natal + .ph-aspect-label { display: none; }

  .ph-aspect-exact, .ph-aspect-orb { margin: 0 0 0 auto; font-size: 0.58rem; padding: 2px 5px; flex-shrink: 0; white-space: nowrap; }

}

.ph-aspect-symbol {
  font-size: 1.55rem;
  line-height: 1;
  color: #d4af37;
  font-weight: 500;
}

.ph-aspect-symbol.ph-aspect-natal {
  color: rgba(230, 226, 216, 0.85);
  font-size: 1.3rem;
  margin-top: 2px;
}

.ph-aspect-label {
  font-size: 0.72rem;
  color: rgba(230, 226, 216, 0.78);
  line-height: 1.25;
}

.ph-aspect-relation {
  font-size: 0.7rem;
  color: rgba(212, 175, 55, 0.65);
  font-style: italic;
  margin: 2px 0;
}

.ph-aspect-exact {
  margin-top: 6px;
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
  padding: 2px 8px;
  border-radius: 99px;
  font-weight: 600;
}

.ph-aspect-orb {
  margin-top: 6px;
  font-size: 0.7rem;
  color: rgba(230, 226, 216, 0.5);
}

.ph-text-section { margin-top: 4px; }

.ph-intro {
  font-size: 0.97rem;
  line-height: 1.62;
  color: var(--text-soft, #e6e2d8);
  margin: 0 0 16px;
  text-align: left;
}

@media (min-width: 720px) {
  .ph-intro { text-align: justify; }

}

.ph-bullets { display: flex; flex-direction: column; gap: 14px; }

.ph-bullet { padding: 8px 0; }

.ph-bullet-title {
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.ph-bullet-advice {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-soft, #e6e2d8);
}

.ph-closing {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  font-style: italic;
  color: rgba(230, 226, 216, 0.7);
  font-size: 0.9rem;
  text-align: center;
}

.ph-card-teaser .ph-teaser-title {
  text-align: center;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #d4af37;
}

.ph-card-teaser .ph-teaser-sub {
  text-align: center;
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(230, 226, 216, 0.55);
  margin-bottom: 18px;
}

.ph-teaser-blur {
  position: relative;
  padding: 12px 16px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(230, 226, 216, 0.7);
  filter: blur(2px);
  user-select: none;
  pointer-events: none;
  height: 60px;
  overflow: hidden;
  text-align: center;
}

.ph-teaser-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 12, 28, 0.95) 100%);
}

.ph-teaser-cta-box {
  margin-top: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ph-teaser-lock {
  font-size: 0.88rem;
  color: rgba(230, 226, 216, 0.85);
  line-height: 1.5;
  max-width: 360px;
}

.ph-cta-btn, .ph-teaser-cta-btn {
  background: linear-gradient(135deg, #d4af37 0%, #f5d77a 100%);
  color: #1a1330;
  border: none;
  border-radius: 12px;
  padding: 13px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  width: 100%;
  max-width: 380px;
  margin: 12px auto 0;
  display: block;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
}

.ph-cta-btn:hover, .ph-teaser-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35);
}

.ph-cta-btn:active, .ph-teaser-cta-btn:active { transform: translateY(0); }

.ph-cta-btn-small {
  max-width: 200px;
  padding: 9px 16px;
  font-size: 0.85rem;
}

.ph-cta-label { display: block; }

.ph-cta-cost {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(26, 19, 48, 0.65);
  margin-top: 4px;
}

.ph-cta-hint {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(230, 226, 216, 0.45);
  margin-top: 10px;
  font-style: italic;
}

.ph-profile-select-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  justify-content: center;
}

.ph-profile-select-label {
  font-size: 0.85rem;
  color: rgba(230, 226, 216, 0.7);
}

.ph-profile-select {
  background: rgba(11, 17, 32, 0.85);
  color: var(--text-soft, #e6e2d8);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.9rem;
  cursor: pointer;
}

.ph-card-loading {
  text-align: center;
  padding: 40px 18px;
}

.ph-loading-spin {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-top-color: #d4af37;
  border-radius: 50%;
  animation: ph-spin 0.9s linear infinite;
}

.ph-loading-text {
  color: rgba(230, 226, 216, 0.75);
  font-size: 0.92rem;
  font-style: italic;
}

.ph-share-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.ph-share-actions:empty { display: none; }

.ph-share-actions .ph-tts-anchor { margin: 0; display: inline-flex; }

.ph-share-actions .ph-tts-anchor .divinia-tts-wrap { margin: 0; }

.ph-share-actions .ph-tts-anchor .divinia-tts-btn {
  background: linear-gradient(180deg, #3d2a5e, #251640);
  color: #f5e9d4;
  border: 1px solid rgba(201, 169, 110, 0.55);
  padding: 12px 22px;
  border-radius: 24px;
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  min-height: 44px;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}

.ph-share-actions .ph-tts-anchor .divinia-tts-btn:hover:not(:disabled) {
  background: linear-gradient(180deg, #4a3470, #2e1a4f);
  transform: translateY(-1px);
}

.ph-share-actions .ph-tts-anchor .divinia-tts-btn.playing {
  background: linear-gradient(180deg, #5b3f8a, #3a2360);
  border-color: rgba(220, 190, 120, 0.7);
}

.ph-share-actions .ph-tts-anchor .divinia-tts-progress {
  display: none !important;
}

.ph-card-error { text-align: center; }

.ph-error-msg {
  color: rgba(230, 226, 216, 0.85);
  font-size: 0.92rem;
  margin-bottom: 12px;
}


/* ============================================================
   ÉCRITURE DE L'AU-DELÀ — polish premium (cohérent tarot/astro)
   2026-05-17
   On respecte l'atmosphère cinématique : on ne touche PAS au fond,
   on harmonise juste boutons, image générée et accents typographiques.
   ============================================================ */

/* === Titre : ajout ornement ◆ === */
#planchetteView .planchette-title::before,
#planchetteView .planchette-title::after {
  content: "◆";
  display: inline-block;
  color: #d4af37;
  font-size: 0.5em;
  vertical-align: middle;
  margin: 0 0.6em;
  opacity: 0.75;
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
}

/* === Bouton "Voir la vision du médium" : gradient or === */
#planchetteView .planchette-btn-vision {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.10)) !important;
  border: 1px solid rgba(212, 175, 55, 0.65) !important;
  color: #f0d97a !important;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  font-size: 1rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  padding: 12px 28px !important;
  border-radius: 999px !important;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
#planchetteView .planchette-btn-vision:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.32), rgba(212, 175, 55, 0.16)) !important;
  border-color: #d4af37 !important;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35) !important;
}
#planchetteView .planchette-btn-vision::before {
  content: "◆";
  display: inline-block;
  margin-right: 0.5em;
  font-size: 0.75em;
  opacity: 0.8;
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
  vertical-align: middle;
}

/* === Boutons d'overlay (Nouvelle session / Quitter) === */
#planchetteView .planchette-btn,
#planchetteView .planchette-btn-retry,
#planchetteView .planchette-btn-quit {
  background: transparent !important;
  border: 1px solid rgba(212, 175, 55, 0.55) !important;
  color: #d4af37 !important;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 10px 24px !important;
  border-radius: 999px !important;
}
#planchetteView .planchette-btn:hover,
#planchetteView .planchette-btn-retry:hover,
#planchetteView .planchette-btn-quit:hover {
  background: rgba(212, 175, 55, 0.08) !important;
  border-color: #d4af37 !important;
  color: #f0d97a !important;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25) !important;
}

/* === Vision modal topbar (Retour / Télécharger) === */
.planchette-vision-modal .planchette-vision-action-btn {
  background: transparent !important;
  border: 1px solid rgba(212, 175, 55, 0.55) !important;
  color: #d4af37 !important;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
}
.planchette-vision-modal .planchette-vision-action-btn:hover {
  border-color: #d4af37 !important;
  background: rgba(212, 175, 55, 0.08) !important;
  color: #f0d97a !important;
}

/* === Vision image dans le modal : cadre or visible === */
.planchette-vision-modal .planchette-vision-img {
  border: 2px solid rgba(212, 175, 55, 0.85) !important;
  border-radius: 14px !important;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.15) inset,
    0 0 32px rgba(212, 175, 55, 0.28),
    0 12px 36px rgba(0, 0, 0, 0.7) !important;
}

/* === Image inline (après fermeture modal) : cadre or + équerres === */
.planchette-vision-inline-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 1.8rem auto 0;
  padding: 0;
  border: 2px solid rgba(212, 175, 55, 0.85);
  border-radius: 14px;
  overflow: visible;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.15) inset,
    0 0 32px rgba(212, 175, 55, 0.28),
    0 12px 30px rgba(0, 0, 0, 0.65);
}
.planchette-vision-inline-wrap::before,
.planchette-vision-inline-wrap::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid #d4af37;
  pointer-events: none;
  z-index: 2;
}
.planchette-vision-inline-wrap::before {
  top: -6px; left: -6px; border-right: none; border-bottom: none;
}
.planchette-vision-inline-wrap::after {
  bottom: -6px; right: -6px; border-left: none; border-top: none;
}
.planchette-vision-inline-wrap .planchette-vision-inline-img {
  border-radius: 14px;
  display: block;
  width: 100%;
  margin: 0 !important;
}

/* === Signes retenus : pills or pour cohérence === */
#planchetteOverlay .planchette-signes-mots > * {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
}
#planchetteOverlay .planchette-signes-label {
  color: #d4af37 !important;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  letter-spacing: 0.16em !important;
}
#planchetteOverlay .planchette-signes-origine {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  color: rgba(212, 175, 55, 0.65) !important;
}

/* Lecture du médium */
#planchetteOverlay .planchette-lecture-label {
  color: #d4af37 !important;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  letter-spacing: 0.16em !important;
}
#planchetteOverlay .planchette-lecture-label::before {
  content: "◆";
  display: inline-block;
  margin-right: 0.5em;
  font-size: 0.7em;
  opacity: 0.7;
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
  vertical-align: middle;
}

/* Phrase centrale : drop-cap or sur première lettre */
#planchetteOverlay .planchette-phrase-centrale::first-letter,
#planchetteOverlay .planchette-lecture-text::first-letter {
  /* Discret — on ne casse pas l'élégance italic actuelle */
}

/* Badge arcanes hérite couleur globale */
#planchetteView .planchette-btn-vision .arcane-badge-inline {
  color: unset !important;
}

/* ============================================================
   PLANCHETTE — RÉSULTAT PREMIUM (3 cadres-grimoires)
   2026-05-17 v2
   ============================================================ */

/* === BLOC 1 : SIGNES RETENUS — cadre or + équerres === */
#planchetteOverlay .planchette-signes-recus {
  position: relative !important;
  background: rgba(2, 6, 23, 0.62) !important;
  border: 1px solid rgba(212, 175, 55, 0.38) !important;
  border-radius: 14px !important;
  padding: 26px 30px 22px !important;
  margin: 0 auto 22px !important;
  max-width: 720px !important;
  box-sizing: border-box;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.06) inset,
    0 8px 32px rgba(0, 0, 0, 0.55) !important;
  text-align: center;
}
#planchetteOverlay .planchette-signes-recus::before,
#planchetteOverlay .planchette-signes-recus::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(212, 175, 55, 0.75);
  pointer-events: none;
}
#planchetteOverlay .planchette-signes-recus::before {
  top: 8px; left: 8px; border-right: none; border-bottom: none;
}
#planchetteOverlay .planchette-signes-recus::after {
  bottom: 8px; right: 8px; border-left: none; border-top: none;
}

#planchetteOverlay .planchette-signes-label {
  display: block !important;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  color: #d4af37 !important;
  letter-spacing: 0.22em !important;
  font-size: 0.82rem !important;
  text-transform: uppercase !important;
  margin-bottom: 14px !important;
}
#planchetteOverlay .planchette-signes-label::before,
#planchetteOverlay .planchette-signes-label::after {
  content: "◆";
  display: inline-block;
  margin: 0 0.6em;
  font-size: 0.8em;
  opacity: 0.75;
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
}

#planchetteOverlay .planchette-signes-mots {
  display: inline-flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 0 14px;
}
#planchetteOverlay .planchette-signe-mot {
  background: rgba(2, 6, 23, 0.72) !important;
  border: 1px solid rgba(212, 175, 55, 0.55) !important;
  color: #f0d97a !important;
  border-radius: 999px !important;
  padding: 5px 14px !important;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}
/* Masque les séparateurs " · " que le JS injecte */
#planchetteOverlay .planchette-signes-mots > span:not(.planchette-signe-mot) {
  display: none !important;
}
#planchetteOverlay .planchette-signes-origine {
  display: block !important;
  color: rgba(212, 175, 55, 0.65) !important;
  font-style: italic !important;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.04em !important;
}

/* === BLOC 2 : PHRASE CENTRALE — verdict-style avec guillemets dorés === */
#planchetteOverlay .planchette-phrase-centrale {
  position: relative !important;
  background: rgba(2, 6, 23, 0.68) !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  border-radius: 14px !important;
  padding: 36px 60px 36px !important;
  margin: 0 auto 22px !important;
  max-width: 720px !important;
  box-sizing: border-box;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  font-style: italic !important;
  color: #f0d97a !important;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem) !important;
  line-height: 1.45 !important;
  text-align: center !important;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.32) !important;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.06) inset,
    0 12px 36px rgba(0, 0, 0, 0.55) !important;
}
#planchetteOverlay .planchette-phrase-centrale::before {
  content: "«";
  position: absolute;
  top: 6px;
  left: 22px;
  color: #d4af37;
  font-size: 2.6em;
  line-height: 1;
  opacity: 0.8;
}
#planchetteOverlay .planchette-phrase-centrale::after {
  content: "»";
  position: absolute;
  bottom: -8px;
  right: 22px;
  color: #d4af37;
  font-size: 2.6em;
  line-height: 1;
  opacity: 0.8;
}

/* === BLOC 3 : LECTURE DU MÉDIUM — cadre or + équerres + drop-cap === */

/* Annule l'ancien divider mauve "── ✦ ──" */
#planchetteOverlay .planchette-lecture-wrapper::before {
  content: none !important;
}

#planchetteOverlay .planchette-lecture-wrapper {
  position: relative !important;
  background: rgba(2, 6, 23, 0.62) !important;
  border: 1px solid rgba(212, 175, 55, 0.38) !important;
  border-radius: 14px !important;
  padding: 28px 32px 26px !important;
  margin: 0 auto 22px !important;
  max-width: 720px !important;
  box-sizing: border-box;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.06) inset,
    0 8px 32px rgba(0, 0, 0, 0.55) !important;
}

/* Équerres via 2 backgrounds positionnés (TL + BR) — img/wrapper a déjà ::before */
#planchetteOverlay .planchette-lecture-wrapper {
  /* Équerre top-left + bottom-right */
  background-image:
    linear-gradient(to right, #d4af37 0%, #d4af37 100%),
    linear-gradient(to bottom, #d4af37 0%, #d4af37 100%),
    linear-gradient(to right, #d4af37 0%, #d4af37 100%),
    linear-gradient(to bottom, #d4af37 0%, #d4af37 100%);
  background-position:
    8px 8px,
    8px 8px,
    calc(100% - 22px) calc(100% - 9px),
    calc(100% - 9px) calc(100% - 22px);
  background-size:
    14px 1px,
    1px 14px,
    14px 1px,
    1px 14px;
  background-repeat: no-repeat;
}

#planchetteOverlay .planchette-lecture-label {
  display: block !important;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  color: #d4af37 !important;
  letter-spacing: 0.22em !important;
  font-size: 0.82rem !important;
  text-transform: uppercase !important;
  text-align: center !important;
  margin: 4px 0 18px !important;
}
#planchetteOverlay .planchette-lecture-label::before,
#planchetteOverlay .planchette-lecture-label::after {
  content: "◆";
  display: inline-block;
  margin: 0 0.6em;
  font-size: 0.8em;
  opacity: 0.75;
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
}

#planchetteOverlay .planchette-lecture-text {
  color: rgba(235, 220, 185, 0.92) !important;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  font-size: 1.02rem !important;
  line-height: 1.75 !important;
  text-align: left !important;
}
#planchetteOverlay .planchette-lecture-text::first-letter,
#planchetteOverlay .planchette-lecture-text > p:first-of-type::first-letter {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 2.8em;
  font-weight: 600;
  color: #d4af37;
  float: left;
  line-height: 0.92;
  margin: 6px 10px 0 0;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

/* === Footer respiration === */
#planchetteOverlay .planchette-vision-section {
  margin-top: 24px !important;
}
#planchetteOverlay .planchette-overlay-actions {
  margin-top: 16px !important;
}

/* === Fix : tuer l'ancienne animation pulseLine sur le ::before signes-recus === */
#planchetteOverlay .planchette-signes-recus::before {
  animation: none !important;
  background: transparent !important;
  transform: none !important;
  width: 14px !important;
  height: 14px !important;
}

/* === Respiration uniforme entre cadres + image + bouton === */
#planchetteOverlay .planchette-signes-recus { margin-bottom: 22px !important; }
#planchetteOverlay .planchette-phrase-centrale { margin-bottom: 22px !important; }
#planchetteOverlay .planchette-lecture-wrapper { margin-bottom: 22px !important; }

.planchette-vision-inline-wrap {
  margin: 1.8rem auto 1.4rem !important;
}
.planchette-share-btn-wrap {
  margin-top: 28px !important;
  margin-bottom: 8px !important;
}

#planchetteOverlay .planchette-vision-section {
  margin-top: 28px !important;
  margin-bottom: 18px !important;
}
#planchetteOverlay .planchette-overlay-actions {
  margin-top: 22px !important;
}

/* === Réduire l'espace lecture-wrapper → image inline === */
#planchetteOverlay .planchette-vision-inline-wrap,
.planchette-vision-inline-wrap {
  margin-top: 8px !important;
  margin-bottom: 18px !important;
}

/* === Fix mobile crop : image vision modal + équerres bas (2026-05-18) === */
@media (max-width: 768px) {
  /* Vision modal : laisser respirer le cadre or, ne plus toucher les bords */
  .planchette-vision-modal {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
  }
  .planchette-vision-modal .planchette-vision-img {
    max-width: calc(100% - 4px);
    max-height: calc(100% - 4px);
  }
  /* Équerres du board : remonter et rentrer pour ne plus être crop sur mobile */
  .planchette-corner-tl { top: 14px; left: 14px; }
  .planchette-corner-tr { top: 14px; right: 14px; }
  .planchette-corner-bl { bottom: calc(env(safe-area-inset-bottom, 0px) + 14px); left: 14px; }
  .planchette-corner-br { bottom: calc(env(safe-area-inset-bottom, 0px) + 14px); right: 14px; }
}
