:root {
  --bg: #0a0a0a;
  --fg: #e8e8e8;
  --mute: #6a6a72;
  --dim: #3a3a42;
  --accent: #f0f0f0;
  --hl: #b8b8c8;
  --shadow: rgba(255,255,255,0.03);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
}

body {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(11px, 2.2vw, 14px);
  line-height: 1.6;
  padding: 20px 12px 60px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: radial-gradient(ellipse at 50% 0%, #16161a 0%, var(--bg) 80%);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.wrap {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.6);
  padding: 20px 24px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
}

pre {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.6;
  color: inherit;
  white-space: pre-wrap;
  overflow-x: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s ease, color 0.2s ease;
}
a:hover {
  color: var(--hl);
  border-bottom-color: var(--hl);
}

.mute { color: var(--mute); }
.dim  { color: var(--dim); }
.hl   { color: var(--hl); }
.acc  { color: var(--accent); }
.ok   { color: #8bcb9e; }

.banner {
  color: var(--accent);
  font-weight: 300;
  line-height: 1.1;
  margin: 10px 0 6px;
  overflow: hidden;
  opacity: 0.9;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.03);
}

.prompt {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 8px;
  flex-wrap: wrap;
}
.prompt .p {
  color: var(--mute);
  white-space: nowrap;
  font-weight: 400;
}
.prompt input {
  flex: 1;
  min-width: 120px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--fg);
  font: inherit;
  caret-color: var(--accent);
  padding: 4px 0;
  letter-spacing: 0.02em;
}
.prompt input::placeholder {
  color: var(--dim);
  opacity: 0.5;
  font-weight: 300;
}

.cursor {
  display: inline-block;
  width: 0.5em;
  height: 1.1em;
  background: var(--accent);
  vertical-align: -2px;
  margin-left: 2px;
  animation: blink 1.1s steps(1) infinite;
  flex-shrink: 0;
  opacity: 0.8;
}
@keyframes blink {
  50% { opacity: 0; }
}

.section {
  margin: 28px 0;
  padding: 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

::selection {
  background: var(--accent);
  color: #000;
}

.live-dot {
  color: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

.neofetch {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin: 10px 0 22px;
  align-items: start;
}
.neofetch pre {
  margin: 0;
  color: var(--mute);
  font-size: 0.9em;
  line-height: 1.5;
}
.neofetch .logo {
  color: var(--accent);
  opacity: 0.8;
}
.neofetch .info b {
  color: var(--accent);
  font-weight: 500;
}
.neofetch .info .k {
  color: var(--mute);
}
.neofetch .info .v {
  color: var(--hl);
}
.neofetch .info .sep {
  color: var(--dim);
}

.statusbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  margin: 30px 0 20px;
  padding: 10px 4px;
  font-size: 0.7rem;
  color: var(--mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.statusbar span b {
  color: var(--hl);
  font-weight: 500;
}
.statusbar .ok {
  color: #8bcb9e;
}

#fx {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
body > *:not(#fx):not(#vinyl):not(#bgm) {
  position: relative;
  z-index: 1;
}

.tm-back {
  position: fixed;
  top: 16px;
  left: 18px;
  z-index: 20;
  font-size: 0.7rem;
  color: var(--dim);
  letter-spacing: 0.04em;
  opacity: 0.6;
  transition: opacity 0.3s ease, color 0.3s ease;
  border-bottom: none;
}
.tm-back:hover {
  opacity: 1;
  color: var(--mute);
  border-bottom: none;
}

/* ============================================================
   VINYLE – animations minimalistes
   ============================================================ */
#vinyl {
  position: fixed;
  top: 50%;
  right: 80px;
  transform: translateY(-50%) scale(0.85);
  z-index: 5;
  display: none;
  flex-direction: column;
  align-items: center;
  color: var(--mute);
  font-family: "JetBrains Mono", monospace;
  user-select: none;
  text-align: center;
  transform-origin: center center;
}
#vinyl.show {
  display: flex;
}

#vinyl .stage {
  position: relative;
  width: 340px;
  height: 230px;
}
#vinyl .base {
  position: absolute;
  inset: 0;
  font-size: 9px;
  line-height: 1.2;
  color: var(--dim);
  white-space: pre;
  margin: 0;
  opacity: 0.8;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.02);
}
#vinyl .arm {
  position: absolute;
  top: -8px;
  right: -4px;
  font-size: 9px;
  color: var(--mute);
  white-space: pre;
  margin: 0;
  transform-origin: 90% 10%;
  transform: rotate(-30deg);
  transition: transform 0.9s cubic-bezier(0.34, 1.2, 0.64, 1), color 0.6s ease;
}
#vinyl.playing .arm {
  transform: rotate(-8deg);
  color: var(--hl);
}

#vinyl .note-container {
  position: fixed;
  pointer-events: none;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
}

.note {
  position: absolute;
  pointer-events: none;
  font-family: "JetBrains Mono", monospace;
  color: var(--accent);
  opacity: 0;
  animation: floatNote 2.8s ease-out forwards;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.06));
}
@keyframes floatNote {
  0%   { opacity: 0; transform: translate(0, 0) rotate(0deg) scale(0.6); }
  20%  { opacity: 0.7; }
  100% { opacity: 0; transform: translate(var(--dx), -90px) rotate(var(--rot)) scale(1.2); }
}

/* CONTROLES STABLES */
/* ============================================================
   CONTROLES — bloc FIXE (ne bouge plus en largeur)
   ============================================================ */
#vinyl .controls-ascii {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.03em;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  width: 300px;              /* largeur fixe pour éviter les variations */
  justify-content: center;   /* centre les éléments */
  flex-wrap: nowrap;         /* empêche le retour à la ligne */
}

#vinyl .controls-ascii .ctrl {
  display: inline-block;
  cursor: pointer;
  color: var(--mute);
  transition: color 0.25s ease, transform 0.15s ease, text-shadow 0.25s ease;
  padding: 2px 6px;
  font-weight: 400;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  flex-shrink: 0;            /* empêche les boutons de rétrécir */
}

#vinyl .controls-ascii .ctrl:hover {
  color: var(--accent);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
}
#vinyl .controls-ascii .ctrl:active {
  transform: scale(0.96);
}

#vinyl .controls-ascii .state-text {
  font-size: 11px;
  color: var(--dim);
  margin-left: 6px;
  font-weight: 300;
  flex-shrink: 1;            /* permet au label de rétrécir si besoin */
  min-width: 0;              /* autorise le rétrécissement */
}

#vinyl .controls-ascii .state-text #trackLabel {
  color: var(--hl);
  width: 140px;              /* largeur fixe pour le titre */
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.02em;
}
#vinyl #stateLabel {
  color: var(--mute);
  transition: color 0.4s ease;
}
#vinyl.playing #stateLabel {
  color: var(--accent);
}

/* ============================================================
   FOOTER – ASCII art ajouté en CSS (sans toucher au HTML)
   ============================================================ */
.wrap > pre.mute:last-of-type {
  position: relative;
  white-space: pre-wrap;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.wrap > pre.mute:last-of-type::after {
  content: "\A\A⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣟⢯⣛⡿⣽⣻⠭⣍⡉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠈⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⣍⢻⣭⢏⢿⣻⣟⡿⣿⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿\A⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⣿⣾⡽⣫⢾⣽⡳⣏⡗⢦⠐⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠌⠒⡌⡲⢽⡺⣜⣳⢯⣟⣯⣿⣻⣾⣯⣿⡿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿\A⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⣯⡿⣷⢯⡿⡵⣿⣞⢷⡻⣜⢢⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢀⠁⡒⠭⣞⡷⣌⢯⣟⡾⣽⣞⣯⣷⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿\A⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣟⣿⣟⣿⡽⣿⢯⣽⣿⣻⢮⣽⣞⠤⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠂⣍⢚⡼⣿⣘⢾⣟⣾⢳⣟⣯⣿⣽⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿\A⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣾⢿⣾⢯⣿⣿⢳⣾⣟⣧⠿⣼⢿⠒⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⡁⠦⣩⢶⣿⡧⢞⣿⣞⣯⣿⢷⣻⣯⣿⣯⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿\A⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡿⣟⣯⣿⢷⣯⢳⣿⣟⡾⣹⢻⡍⢎⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢂⠐⢢⠱⣺⢿⣏⠞⣽⣾⢧⣿⣟⣯⣷⡿⣿⣻⣽⣿⣟⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿\A⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢿⣾⣟⣿⡿⣿⣽⣿⣭⣻⣿⠾⣵⢯⣳⢚⡄⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡀⡘⢤⠛⣜⢯⣿⣊⢿⣿⣛⣾⣿⢯⣿⣽⣿⢿⣟⣯⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣟⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿\A⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢿⣿⣻⣿⣟⣯⣟⡾⣹⣿⣻⢽⢮⡳⣍⢂⠡⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠈⠀⠤⢑⡂⢏⣾⢻⣽⣞⡺⣷⣻⣞⣿⣯⣷⡿⣯⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿\A⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢿⣯⣿⣾⢿⣿⣻⣿⣽⣻⣽⣯⠷⣿⡷⣏⡿⣎⢷⣩⠂⠄⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠠⠐⢈⡐⢢⠘⡼⣸⣿⣿⣧⣛⣿⡷⣯⣿⣾⢷⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿\A⣿⣿⣿⣿⣿⢯⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⣽⣾⣿⣿⣷⣿⣿⣿⣻⣷⢿⣯⣿⢞⣽⣿⡽⣭⢷⡹⣎⡇⢎⠐⠀⠈⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⠀⠂⠄⡂⢥⢋⡖⣟⣿⣞⣧⣻⢾⣟⣷⣻⣿⣿⣻⣿⣽⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿\A⣿⣿⣿⣿⣿⣿⣷⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣻⣽⣻⣾⣷⢿⣿⣿⣟⣿⣿⣻⣽⣾⣿⣯⣿⣻⣯⠾⣽⣯⢿⡵⣏⣷⡹⡜⢂⠈⠄⠡⠀⠀⡀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠡⢀⠡⢊⡐⡌⢦⣙⣾⣳⢞⣿⡵⣻⣿⢯⣷⣿⣟⣿⣽⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿\A⣿⣿⣿⣿⣿⣿⣾⣿⣿⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣟⣷⣿⣿⣿⣷⣿⣻⣾⣿⣿⣟⣯⣿⡷⣿⣯⢻⣿⣯⢿⣹⢾⣱⢻⡜⢠⠊⠀⡂⠀⠀⠄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡐⢀⠂⡐⢢⠐⡜⢢⢭⣿⡾⣿⣿⡷⣭⣿⣿⣳⣿⣿⣻⣿⢿⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿\A⣿⣿⣟⣿⣯⣿⣿⣻⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⣽⣟⣯⣿⢿⣿⣿⣿⣿⣿⢿⣿⣿⣻⢷⣟⣯⣷⣻⣿⢣⣿⣿⣭⢯⡗⣏⡞⡱⢌⠂⠄⠡⡀⠠⠀⠂⠄⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠐⡀⢂⠰⢁⠢⡑⣌⢓⣮⣿⣿⣽⣿⣗⢧⣿⣷⢿⣾⣿⣟⣿⣿⡿⣿⣿⣿⣿⣿⣿⣿⣿⣻⣿⣿⣽⣿⣿⣽⣿⣯⣿⣾⣿⡿⣿⣿⣿⣿⣿⡿⣿⣿⣿⣿⣿\A⣿⣿⣿⣯⣿⣿⣽⣿⣻⣽⡿⣯⣷⣿⣿⣷⣿⣿⣿⢿⡽⣞⢿⣫⢿⣿⢿⣾⣿⣟⣾⢿⣯⣟⡾⣷⣯⡷⣏⣾⣷⢯⣷⣹⢮⡽⣹⢌⡘⠠⢁⠄⠂⢈⠠⠈⠀⢂⠀⠐⠀⠁⠐⠀⠀⠀⠀⠡⢀⢂⠢⠁⢆⠱⣠⢋⡜⢆⢳⢺⢿⣿⣫⢾⣿⣿⡷⣿⣻⣿⣾⣿⣿⣿⣾⣿⡿⣿⣿⣿⣿⣿⣿⣿⢿⣿⡿⣿⣿⢿⣿⣻⣿⣿⣿⣿⣿⣿⣿⣿⢿⣾⡿⣿\A⣿⣿⣾⣿⢿⣿⣽⣷⣿⣳⡿⣽⣳⣯⢿⣽⣻⣿⣽⣯⢷⣫⢞⣱⡟⣾⢿⣳⣿⣯⣟⣿⣞⣿⣿⣷⣿⡻⣵⣿⣯⣟⣞⣧⠿⣼⣽⠢⢌⠰⢨⠐⠠⠌⠠⠌⡠⢀⠂⡁⠈⡀⠁⠀⠀⠀⠀⢂⠐⡂⠌⠱⣈⠒⢤⢋⡜⡌⢦⡏⣞⣿⡵⣫⣿⣾⣿⣟⣿⡷⣿⣿⣾⣿⣿⢿⣿⣿⣿⣻⣿⣟⣯⣿⣿⣿⣿⣿⣿⣿⡿⣿⣿⣽⣾⣿⣿⣿⣷⡿⣿⣻⣿⢿\A⣿⣿⣳⣿⣿⢿⣻⣿⣷⣿⡽⣷⣻⣞⡿⣾⣽⣟⣿⣾⢯⣟⣾⣳⢿⡽⣯⢿⣽⣯⣿⣾⣻⢿⣾⣻⣿⣳⣻⣿⣞⣧⡟⣞⣯⣗⣯⠓⠬⢐⢡⠊⠄⡊⠡⠐⡐⡀⢂⠐⡠⢀⠁⠈⠀⠀⠀⠄⠃⡌⠌⡑⠤⡉⠢⠜⡰⣼⡟⣾⣟⣿⡷⣣⣿⣿⣿⣾⣿⣿⣿⠿⠿⠿⠛⠛⠛⠛⠛⠛⠛⠛⠛⠿⠿⠿⠿⢿⣾⣿⣿⣿⣽⣟⣯⣿⣿⣟⣿⡿⣟⣿⣽⣿\A⣿⣷⣿⣻⣾⢿⣟⣿⣾⡿⣽⣿⣳⣿⣻⡿⣽⣾⣿⣾⡿⠿⠽⠿⠟⠛⠛⠛⠚⠛⠛⠛⠛⠛⠛⠻⠮⣟⣯⣿⣞⣧⢿⣽⣲⣿⣯⡙⠬⣈⠲⠈⠤⠡⡑⠌⠠⡐⠂⡌⠀⠆⡈⠐⠀⡀⢈⠐⡡⠘⠤⡁⢇⡰⢁⠆⣹⢵⣛⣿⣽⣺⣿⢵⣻⢿⣿⠟⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠤⠤⠀⢉⠉⠙⠛⠛⠚⠿⠿⢿⣿⣿⣽⢾⣻\A⣿⣷⢿⣯⡿⣟⣯⣿⣳⣿⣯⣷⡿⠽⠷⠛⠋⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⢈⠛⢿⣯⡛⡼⢣⠟⡇⢎⠅⢢⠹⠐⠨⡑⠰⣈⠡⢂⠡⠠⡁⠆⡘⠀⠄⠀⠀⡘⣀⢃⠒⣅⠢⠒⡌⢜⡱⢮⣽⣟⡶⣽⣻⡎⣽⡟⠠⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢈⠙⠓⠿\A⣿⢯⣿⣷⣿⡽⠿⠻⠋⠉⠁⠄⠀⠐⠂⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠀⢻⣿⣍⢧⣛⡍⣂⠎⡰⠃⠌⢰⢉⠱⡠⢑⡈⢂⠅⠂⡅⢂⠡⠀⠀⠁⡰⢀⠊⣅⠂⢇⡙⡐⢆⢸⣡⢿⣎⢷⣹⢯⣽⠟⠠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\A⠾⠚⠉⠉⠀⠀⠀⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠻⣿⣾⣱⠞⡰⣈⠖⡍⡈⠄⢊⠤⠑⡂⢌⠢⠌⡡⢐⠂⠄⠁⠀⢁⠐⣂⠣⢄⡋⠴⡑⢬⢂⡇⢮⣓⢮⡻⣜⣿⠏⡰⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀\A⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠻⣿⣏⢶⢡⢋⡔⡣⠑⢄⠎⢠⢂⡑⠌⡂⢄⠃⡌⠰⠀⠂⠀⠈⡔⡉⢆⡸⠡⢆⡓⢬⡚⡵⣊⠿⣜⣣⣿⠟⢠⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠑⢄⠀⠀⠀⠀⠀⠀⠀⠀\A⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⠄⠀⠀⠀⠀⠀⠀⣠⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⣾⣆⠣⡜⡡⢈⠒⠌⡄⠂⡌⢂⠁⢢⠐⡀⠃⠌⠀⡀⠁⡄⡑⢂⢆⡙⢤⢊⠦⣙⠶⣭⢻⣴⣿⠋⡰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⠐⢄⡀⠀⢄⠀⠀⠈⠳⣄⠀⠀⠀⢄⡀⠢⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀\A⠀⠀⠀⠀⠀⠀⠀⠀⠈⢀⡴⠀⠀⠀⣠⠴⠊⠀⠀⠀⠀⠀⠀⠀⠀⣀⠄⢀⡴⠊⢀⡀⠀⠀⠀⠀⢀⡢⠀⠀⠀⠀⠀⠀⠉⠀⠻⣷⡱⣸⠁⠆⣘⠐⡂⠡⠐⢈⠀⣀⡤⠴⠦⣤⣀⠀⠀⠈⠃⠌⠄⣊⠰⢃⢎⣵⣫⠼⣻⡟⢁⠌⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⢄⠀⠀⠀⠓⣄⠐⢌⢂⢄⠙⢆⡀⠀⠈⠳⣄⠀⡀⠙⢶⣄⡉⠂⠀⠀⠀⠀⠀⠀⠀⠀\A⠀⠀⠀⠀⠀⠀⢀⡠⡶⠋⠀⢀⡴⠊⣡⡶⠃⠀⢀⡤⠊⡔⠊⣠⠊⡁⣠⡿⠀⡴⠋⠀⢀⡀⢀⡞⠁⠀⠀⢀⡠⠄⠀⠀⠀⠀⠀⠈⠻⣾⡨⠑⡌⢆⡁⠆⠁⡴⠊⡍⡀⣶⠀⢧⠉⢦⡀⠀⠀⠂⠰⡀⠇⣹⡼⠋⣀⡽⠋⠐⠁⠀⠀⠀⠢⣈⡉⠓⠦⣄⠀⠀⠈⢍⠒⣄⠀⠀⠳⢄⡁⠑⣄⢀⠑⢦⡈⠢⣌⠳⣞⠦⡀⣈⠙⠷⣢⣄⠀⠀⠄⡀⠀⠀\A⠀⠀⠀⠀⠀⠀⢉⡴⢠⠞⢀⣫⣴⡿⠋⣠⣢⡴⠋⣠⠞⣠⠞⣁⣴⠟⠁⣠⡞⠁⠀⣰⡿⡅⠀⠀⣀⢀⡞⠁⡠⠔⠲⠤⣄⠀⠀⠀⠀⠈⠻⣆⢍⠢⠌⠀⢸⢧⢸⢃⣰⡏⣲⣸⢶⠀⢳⡀⠀⠐⢀⠁⠰⠸⢃⡴⠋⠀⠀⠀⢀⡀⣈⠉⠁⠂⢬⡁⠀⠨⣑⡦⣀⠈⣳⡈⣆⠐⡄⠀⠙⢦⣈⢢⠙⢦⡙⢳⣌⠓⣄⠙⠻⢴⠛⠶⢬⡙⠳⠀⠀⠁⠱⡀\A⢀⠀⠀⢀⣠⣶⠟⠀⢡⣶⠟⣋⠁⣠⣾⠟⢁⣴⢞⡵⠞⣡⢖⡟⢁⣴⢛⡟⢀⡴⣽⢯⠟⠀⣠⣾⡿⠘⠁⣠⠔⠁⣀⡤⠦⠉⠁⠀⠀⠀⠀⠈⠛⢷⣄⣀⠈⣏⣸⣸⢯⡿⠏⠻⣼⡇⠀⠀⢀⠴⠈⠉⣩⠝⠋⠀⠀⢀⡀⠀⠀⢀⠉⠉⠑⢦⡀⠙⠦⣄⠘⢽⣌⢳⡘⢶⡈⠆⠹⣆⠀⠀⢻⣧⣇⠀⡝⢦⡘⢄⠀⣀⠀⡈⠓⠀⢀⠈⡑⢠⠉⠒⡠⢁\A⠀⢀⣰⡿⠟⡁⠤⣴⡿⠴⣊⣴⢿⡏⢑⣴⣿⣽⠋⣥⢞⣵⠋⣴⣿⢇⡞⣠⡟⡴⢋⣿⢃⣾⢹⣿⠇⢰⡞⠁⣠⡞⠁⢀⣠⡤⣤⣄⡴⠖⠰⢄⠐⠀⠈⠛⠦⣨⡿⠛⠁⠀⠀⠀⠈⠉⠉⠒⠮⣤⠴⠊⡁⠀⠀⠀⠀⣀⡉⠓⠒⠬⠉⠱⢄⢀⠙⠲⢦⡈⣳⣄⣿⡆⢻⡎⢿⣆⢀⠘⣦⢀⠀⠹⣾⣅⡀⢦⠳⡄⠣⡈⠗⢦⣆⠃⠠⠴⣈⠄⠂⠴⢠⠉\A⠦⣟⡩⢖⣣⣱⣾⢟⣵⢿⣻⣾⠟⣼⣿⣿⠛⣥⣿⢃⣾⢓⣾⣿⠏⠏⣴⢟⣠⣴⣿⠇⣾⣿⡞⣏⡖⢸⡷⢋⣥⢴⢶⣋⠴⠋⢀⣀⣤⠒⠂⠀⠀⠀⠀⠑⠢⠌⡀⠒⠤⠀⠀⠀⠀⢀⡠⠒⠉⠠⠄⠉⠀⣀⡀⠀⠀⠀⠉⠓⠲⠦⠤⠀⢠⣛⠺⢶⣦⣙⡮⣧⢐⠻⡄⢳⡈⣚⣎⢆⠘⣿⡿⣦⠙⣦⡽⠶⣤⡙⠒⢷⡐⣆⡙⢦⡓⠰⢈⠌⢂⠡⠂⠝\A⣳⢲⡙⣮⢓⡞⣽⣫⣟⣿⣿⠿⢿⣿⡿⣣⣿⣿⣥⣿⣥⡾⢣⠏⡄⣾⡟⢨⡿⢹⡟⣸⡟⠉⠆⢿⠇⢸⣞⣉⡍⢏⣊⡴⠚⠋⠉⠠⢤⣀⣠⠤⠖⠊⢹⠀⡀⠀⠀⠁⠢⣠⠕⢦⠐⣂⠀⠀⠁⠀⣠⠀⢀⣀⣈⡙⠓⠦⠤⢀⣀⣄⣠⡴⢇⡸⣌⠱⢾⣭⣿⣦⢋⢖⣻⡼⣇⣾⠿⣎⠇⠹⣷⠩⡷⡘⢷⡳⢄⢏⠻⣤⢛⡶⣅⡚⢬⢡⢊⢌⠣⢆⠩⠌\A⢦⢣⡹⣔⢣⡜⠤⢓⠬⢢⠄⡉⠎⢊⡴⠋⣄⣉⣳⠯⠿⡈⠏⡾⢹⣿⢡⡟⢥⣿⢡⡟⢠⠀⠁⠈⠀⣀⠀⠑⢦⢯⡉⠀⣁⣀⠖⠚⠉⠀⠀⢐⣒⢉⢹⠀⠦⠶⡒⠆⠀⠪⠅⠘⡆⠀⠉⠐⠲⡄⣷⠤⠤⣽⣤⠭⠭⡧⠖⣤⣈⢩⠑⢎⠦⡑⣏⠐⡹⣦⡈⠛⠺⢶⣰⣻⣹⣦⡙⡽⣮⠐⣻⡗⡸⢹⣆⠻⣎⡌⢳⢢⢍⠶⣩⠜⡢⢉⠎⢊⠱⢊⠲⡉\A⣎⢧⡳⣌⠷⣜⣣⢏⠾⣡⢏⡱⢌⠻⣰⢿⡙⣦⠟⣿⢲⡵⣾⢫⣽⢧⣾⠍⣾⡏⣾⠇⠈⠗⠲⠴⠀⠃⠉⠐⠚⠛⣉⣭⡥⠤⠶⠶⠞⠛⠉⠍⣠⠀⢸⠀⠀⢰⡇⠀⠀⡀⠀⠰⣧⠀⠀⠀⠀⡇⡟⠀⢂⠤⣀⡀⠤⡄⢠⢀⠘⠓⠻⢌⡖⣡⢳⠀⠀⢏⡱⣌⠀⠀⠹⣎⣧⠟⠓⠓⡘⢳⡘⢧⠁⢣⠙⢷⡙⣮⡑⣎⢬⢓⡬⢣⡑⢣⠜⡠⢊⠤⢡⠄\A⣎⢧⡱⣎⣖⣣⡓⢮⠓⡥⢎⠰⣬⡿⣋⢧⣙⣿⣜⣫⣣⣳⡿⣹⡟⣾⡧⣩⣿⣸⣿⣇⠀⠀⠀⠀⡀⠀⣠⡴⢺⣟⠫⠭⠄⣅⣃⢡⡘⠈⣠⡶⠆⣰⣿⠀⠀⣾⡵⡇⠀⠑⠀⠂⠙⠘⢆⠀⣠⢻⡗⠄⢂⠵⣨⢙⡐⢦⣅⡊⢐⡡⢒⣈⠹⣖⣻⠃⡍⠲⠴⣹⡆⠀⡀⠈⢷⣪⢑⠣⡌⢥⣳⡜⣦⠄⣎⠢⢽⣌⢷⡌⢦⡩⣜⡱⢌⣣⠚⡥⣉⠦⡑⢂\A⣞⡧⠟⠜⠊⢁⡙⣦⢻⡕⢪⣾⡟⣶⡹⣞⡽⣾⣿⣷⣿⡧⣽⣿⣽⣷⣻⢿⣧⣿⣟⢻⣆⠑⢤⠀⣴⣿⣯⡀⠀⢛⣦⡂⠄⠀⡈⣉⣅⡴⠛⡅⣀⣭⣬⠀⠀⣷⢅⢳⠀⠀⠀⠀⠀⡀⠘⢀⣿⠈⣇⣶⣈⠾⣴⣋⣾⣷⢞⣻⣦⣒⣱⢎⡳⣍⠻⣿⣟⣿⣷⣥⣿⡄⠸⣁⢺⣟⣿⣷⣿⣶⣵⣻⡼⣟⡴⣫⢶⣹⣮⢿⣶⣱⣎⣜⡣⣖⡹⣔⡡⢖⡩⢂\A⡯⢱⡲⣒⠶⣶⣬⣼⣣⣾⢿⣳⢟⡶⣻⢵⡻⣵⣫⢖⡳⢮⣵⣿⣿⡌⠽⠿⢿⠯⣮⣤⣭⡷⠀⠸⠷⣿⡟⠘⣤⡘⠿⡟⣤⠆⠀⠀⡀⠰⣿⣿⣿⣿⡟⠀⢾⣿⡶⣿⠃⠀⠀⢠⡇⠁⠀⡼⣿⠀⣻⣾⢿⣾⣧⣟⣾⣿⣿⣷⣻⣿⣻⣿⣶⣾⣷⣶⡙⣿⣿⡟⣹⣿⣶⣄⣾⣿⣮⣳⢟⣳⣿⣿⣿⣿⣿⣿⣿⣷⣿⣿⣻⣷⣯⣟⡵⣫⢗⡮⣵⢫⠼⣡\A⠡⠷⡙⢧⠻⠴⡩⠞⡵⣯⣷⣫⣞⣳⣛⡮⢷⡹⣎⣯⣝⣳⣺⣻⠒⡜⢩⠶⠋⠘⢧⣿⡷⠒⠂⠀⠀⠀⠉⠓⢦⣰⡟⠋⠁⢠⣾⣿⣧⢦⣘⣛⠛⡿⠀⠁⢸⠙⣿⠃⠀⠀⠀⣾⣧⠀⠀⠵⢵⠴⢀⠙⠛⠻⣿⡟⠾⢿⣿⣿⣿⣿⣷⣭⣹⣿⡜⣻⠡⠸⣿⠧⢽⣿⡇⣼⡆⢹⣷⣽⣾⣧⣿⣾⣿⣿⣷⣿⣿⡿⠟⠿⠿⠿⣟⠳⡙⢧⠫⠞⠲⠍⡚⠅\A⠀⠂⠄⠀⠁⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠈⠉⠁⠀⠉⠉⠉⠈⠀⠀⠀⠀⠀⠀⠀⠀⠉⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠣⡀⠉⠙⢳⠇⠀⢀⠏⡰⠁⠀⠀⠘⠊⠁⠠⠐⠀⠐⡦⡴⠖⣷⡀⢀⠛⠀⠐⠀⡉⠛⠛⠋⠉⠈⠉⠉⠑⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠁⠘⠁⠂⠀⠀";
  white-space: pre-wrap;
  display: block;
  color: var(--mute);
  font-size: 6px;            /* très petit pour ne pas envahir */
  line-height: 1.15;
  margin-top: 12px;
  opacity: 0.7;
  max-width: 100%;
  overflow-x: auto;          /* scroll horizontal si trop large */
}

/* Responsive footer */
@media (max-width: 480px) {
  .wrap > pre.mute:last-of-type::after {
    font-size: 4px;
    line-height: 1.1;
    margin-top: 8px;
  }
}

/* ============================================================
   RESPONSIVE GLOBAL
   ============================================================ */
@media (max-width: 1100px) {
  #vinyl {
    display: none !important;
  }
  .wrap.show {
    transform: none !important;
  }
  #boot {
    transform: none !important;
  }
}

@media (min-width: 1101px) {
  .wrap.show {
    margin-left: auto;
    margin-right: auto;
    transform: translateX(-90px);
  }
  #boot {
    transform: translateX(-90px);
  }
}

@media (max-width: 1100px) {
  .prompt input {
    font-size: 16px !important;
  }
}

#boot {
  max-width: 780px;
  margin: 0 auto 24px;
  font-family: inherit;
  font-size: clamp(11px, 2vw, 14px);
  line-height: 1.6;
  color: var(--fg);
}
#boot pre {
  white-space: pre-wrap;
  margin: 0;
}
#boot .cur {
  display: inline-block;
  width: 0.5em;
  height: 1.1em;
  background: var(--accent);
  vertical-align: -2px;
  margin-left: 2px;
  animation: blink 1.1s steps(1) infinite;
}

.wrap {
  display: none;
}
.wrap.show {
  display: block;
}

@media (max-width: 480px) {
  body {
    padding: 12px 8px 40px;
    font-size: 10px;
  }
  .wrap {
    padding: 14px 12px 20px;
  }
  .prompt {
    gap: 4px;
  }
  .prompt input {
    min-width: 80px;
    font-size: 14px !important;
  }
  .neofetch {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .statusbar {
    font-size: 0.55rem;
    gap: 4px 10px;
    padding: 6px 2px;
  }
  .tm-back {
    top: 8px;
    left: 8px;
    font-size: 0.6rem;
  }
  .banner {
    font-size: 0.75em;
  }
  .section pre {
    font-size: 0.85em;
  }
  .controls-ascii {
    font-size: 12px !important;
    gap: 4px !important;
    padding: 2px 8px !important;
  }
  .controls-ascii .state-text #trackLabel {
    max-width: 100px !important;
  }
}

@media (max-width: 480px) {
  /* ... vos styles existants ... */

  /* Boutons du vinyle (si jamais réactivé) */
  #vinyl .controls-ascii .ctrl {
    padding: 6px 10px !important;
    font-size: 16px !important;
  }
  #vinyl .controls-ascii .state-text {
    font-size: 12px !important;
  }
  #vinyl .controls-ascii .state-text #trackLabel {
    width: 100px !important;
    max-width: 100px !important;
  }

  /* Footer ASCII plus discret sur mobile */
  .wrap > pre.mute:last-of-type::after {
    font-size: 3px !important;
    line-height: 1 !important;
    margin-top: 6px !important;
    opacity: 0.5 !important;
  }

  /* Prompt plus lisible */
  .prompt .p {
    font-size: 14px !important;
  }
  .prompt input {
    font-size: 14px !important;
    min-width: 60px !important;
  }

  /* Statusbar plus aéré */
  .statusbar {
    font-size: 0.5rem !important;
    gap: 4px 6px !important;
    padding: 4px 2px !important;
  }
}