:root {
  --navy: #0b0e1a;
  --navy-mid: #131929;
  --navy-card: #1a2035;
  --navy-hover: #1f2840;
  --pink: #00d4ff;
  --pink-light: #4de8ff;
  --gold: #c8913a;
  --gold-light: #e8b05a;
  --text: #f0f2f8;
  --text-muted: #7b89a8;
  --text-dim: #4a5568;
  --border: rgba(255,255,255,0.07);
  --player-h: 88px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--navy-card); border-radius: 3px; }

/* ── LAYOUT ── */
.app { display: flex; height: 100vh; flex-direction: column; }

.main-content {
  flex: 1;
  display: flex;
  overflow: hidden;
}

/* ── SIDEBAR ── */
.sidebar {
  width: 280px;
  background: #080b14;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 2rem;
  flex-shrink: 0;
}

.sidebar-logo {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 4px;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-shadow:
    0 0  6px rgba(0,212,255,1),
    0 0 14px rgba(0,212,255,0.9),
    0 0 30px rgba(0,212,255,0.6),
    0 0 60px rgba(0,212,255,0.3);
  line-height: 1;
  user-select: none;
}
.sidebar-logo span {
  -webkit-text-stroke: 2px var(--pink);
  text-shadow:
    0 0  6px rgba(255,255,255,1),
    0 0 14px rgba(255,255,255,0.9),
    0 0 30px rgba(255,255,255,0.6),
    0 0 60px rgba(255,255,255,0.3);
}

.album-cover-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a2a5e, #2d1b4e, #1a0e2e);
  display: flex;
  align-items: center;
  justify-content: center;
}
.album-cover-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.album-cover-placeholder .lp {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #c8913a, #e8b05a, #c8913a, #8b5e20, #c8913a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(200,145,58,0.4);
  animation: spin 8s linear infinite;
  animation-play-state: paused;
}
.album-cover-placeholder 
.album-cover-placeholder .lp-inner {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #080b14;
  display: flex; align-items: center; justify-content: center;
}
.album-cover-placeholder .lp-inner::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.album-info { margin-top: 0.5rem; }
.album-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.album-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; }

.badge-reveal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.35);
  color: var(--pink-light); text-shadow: 0 0 8px rgba(0,212,255,0.6);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.sidebar-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.stat { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; }
.stat-icon { color: var(--text-muted); font-size: 1rem; }
.stat-label { color: var(--text-muted); }
.stat-val { margin-left: auto; color: var(--gold-light); font-weight: 600; }

/* ── MAIN PANEL ── */
.panel {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 2.5rem 70px;
}
.lyrics-side {
  width: 0;
  flex-shrink: 0;
  overflow: hidden;
  background: #0f1624;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease;
}
.lyrics-side.open {
  width: 480px;
}
.lyrics-side-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.2rem 1rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.lyrics-side-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
.lyrics-side-artist {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.lyrics-side-body {
  overflow-y: auto;
  padding: 1.2rem;
  line-height: 0.8;
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  white-space: pre-wrap;
}
.lyrics-side-body .section-label {
  font-weight: bold;
}
.lyrics-side-body .chorus {
  color: var(--text);
  font-weight: 500;
}
.lyrics-placeholder {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-dim);
  font-size: 0.82rem;
}
.lyrics-placeholder .icon { font-size: 1.8rem; margin-bottom: 10px; color: var(--gold); }
.lyrics-placeholder strong { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.btn-close-side {
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--text-muted);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.btn-close-side:hover { background: rgba(255,255,255,0.14); color: var(--text); }
.btn-lyrics.active {
  border-color: rgba(0,212,255,0.5);
  color: var(--pink-light);
  background: rgba(0,212,255,0.1);
}
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.panel-title { font-size: 1.5rem; font-weight: 700; }
.panel-title span { color: var(--pink); }
.panel-title .title-neon {
  font-style: italic;
  color: #ffffff;
  -webkit-text-stroke: 1px var(--pink);
  text-shadow:
    0 0  6px rgba(255,255,255,1),
    0 0 14px rgba(255,255,255,0.9),
    0 0 30px rgba(255,255,255,0.6),
    0 0 60px rgba(255,255,255,0.3);
}
.controls-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}
.btn-play-all {
  display: flex; align-items: center; gap: 8px;
  background: var(--pink);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.5px;
}
.btn-play-all:hover { background: #4de8ff; color: #000; transform: scale(1.03); }
.btn-shuffle {
  display: flex; align-items: center; gap: 6px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-shuffle:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

/* ── TRACKLIST ── */
.tracklist-header {
  display: grid;
  grid-template-columns: 40px 1fr 80px auto;
  gap: 12px;
  padding: 0 12px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.track-row {
  display: grid;
  grid-template-columns: 40px 1fr 80px auto;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}
.track-row:hover { background: var(--navy-hover); }
.track-row.active { background: var(--navy-card); }
.track-row.active .track-title { color: var(--pink-light); text-shadow: 0 0 8px rgba(0,212,255,0.6); }

.track-num {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: center;
  position: relative;
}
.track-row:hover .track-num-text,
.track-row.active .track-num-text { display: none; }
.play-icon {
  display: none;
  align-items: center; justify-content: center;
  color: var(--text);
  font-size: 1rem;
}
.track-row:hover .play-icon,
.track-row.active .play-icon { display: flex; }
.track-row.active.is-playing .play-icon::after { content: '⏸'; }
.track-row:not(.is-playing) .play-icon::after { content: '▶'; font-size: 0.8rem; }

.track-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.track-title {
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}
.track-artist { font-size: 0.75rem; color: var(--text-muted); }

.track-duration { font-size: 0.8rem; color: var(--text-muted); text-align: right; }

.btn-lyrics {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  padding: 0;
}
.btn-lyrics:hover {
  border-color: rgba(0,212,255,0.4);
  color: var(--pink-light);
  background: rgba(0,212,255,0.08);
}

/* ── PLAYER BAR ── */
.player-bar {
  height: var(--player-h);
  background: #080b14;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 2rem;
  position: relative;
  z-index: 100;
  flex-shrink: 0;
}

.player-track {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.player-mini-cover {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a2a5e, #2d1b4e);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.cover-img {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  font-size: 1.4rem;
  border-radius: 8px;
}

/* ── Loader spinner ── */
.cover-loader {
  display: none;
  position: absolute; inset: 0;
  background: rgba(11,14,26,0.75);
  align-items: center; justify-content: center;
  border-radius: 8px;
}
.player-mini-cover.loading .cover-loader { display: flex; }
.cover-spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(0,212,255,0.2);
  border-top-color: rgba(0,212,255,1);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Equalizer bars ── */
.cover-bars {
  display: none;
  position: absolute; inset: 0;
  background: rgba(11,14,26,0.55);
  align-items: flex-end; justify-content: center;
  gap: 3px;
  padding-bottom: 10px;
  border-radius: 8px;
}
.player-mini-cover.playing .cover-bars { display: flex; }
.cover-bars span {
  display: block;
  width: 4px;
  border-radius: 2px 2px 0 0;
  background: rgba(0,212,255,0.9);
  animation: bar-bounce 0.9s ease-in-out infinite;
}
.cover-bars span:nth-child(1) { animation-delay: 0.0s; }
.cover-bars span:nth-child(2) { animation-delay: 0.2s; }
.cover-bars span:nth-child(3) { animation-delay: 0.1s; }
.cover-bars span:nth-child(4) { animation-delay: 0.3s; }
@keyframes bar-bounce {
  0%, 100% { height: 5px;  opacity: 0.6; }
  50%       { height: 18px; opacity: 1;   }
}
.player-track-name { font-size: 0.85rem; font-weight: 600; }
.player-track-artist { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.player-controls {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.player-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ctrl-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.15s, transform 0.1s;
  display: flex; align-items: center;
  padding: 4px;
}
.ctrl-btn:hover { color: var(--text); transform: scale(1.1); }
.ctrl-btn.main-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--text);
  color: var(--navy);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.ctrl-btn.main-play:hover { background: var(--pink-light); color: #fff; transform: scale(1.05); }

.progress-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.time-label { font-size: 0.7rem; color: var(--text-muted); min-width: 34px; text-align: center; }
.progress-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.progress-bar-fill {
  height: 100%;
  background: var(--text);
  border-radius: 2px;
  width: 0%;
  transition: width 0.5s linear;
  position: relative;
}
.progress-bar-fill::after {
  content: '';
  position: absolute;
  right: -6px; top: -4px;
  width: 12px; height: 12px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.15s;
}
.progress-bar-track:hover .progress-bar-fill::after { opacity: 1; }
.progress-bar-track:hover .progress-bar-fill { background: var(--pink); }

.player-extra {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.vol-wrap { display: flex; align-items: center; gap: 6px; }
.vol-icon { font-size: 0.9rem; color: var(--text-muted); }
input[type=range].vol-slider {
  -webkit-appearance: none;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.15);
  outline: none;
  cursor: pointer;
}
input[type=range].vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--text);
  cursor: pointer;
}



/* ── TRACK ACTIONS ── */
.track-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  background: transparent;
  flex-shrink: 0;
  transition: all 0.2s;
}
.btn-download:hover {
  border-color: rgba(0,212,255,0.4);
  color: var(--pink-light);
  background: rgba(0,212,255,0.08);
  transform: translateY(1px);
}

/* ── DISCO BADGE ── */
.disco-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(200,145,58,0.15), rgba(232,176,90,0.1));
  border: 1px solid rgba(200,145,58,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 1.5rem;
}
.disco-lp {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #c8913a, #e8b05a, #c8913a, #8b5e20);
  display: flex; align-items: center; justify-content: center;
}
.disco-lp-inner { width: 14px; height: 14px; background: var(--navy); border-radius: 50%; }
.disco-text { font-size: 0.78rem; }
.disco-text strong { display: block; color: var(--gold-light); font-size: 0.82rem; }
.disco-text span { color: var(--text-muted); }

/* ────────────────────────────────────────────
   MOBILE HEADER (hidden on desktop)
──────────────────────────────────────────── */
.mobile-header {
  display: none;
  align-items: center;
  gap: 12px;
  background: #080b14;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  z-index: 50;
}
.mobile-header-cover {
  width: 40px; height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.mobile-header-cover img {
  width: 100%; height: 100%; object-fit: cover;
}
.mobile-header-info { flex: 1; min-width: 0; }
.mobile-header-logo {
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 3px;
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  text-shadow:
    0 0  6px rgba(0,212,255,1),
    0 0 14px rgba(0,212,255,0.9),
    0 0 30px rgba(0,212,255,0.6),
	  0 0 60px rgba(0,212,255,0.3);
  line-height: 1;
  user-select: none;
}
.mobile-header-logo span {
  color: #ffffff;
  -webkit-text-stroke: 1.5px var(--pink);
  text-shadow:
    0 0  6px rgba(255,255,255,1),
    0 0 14px rgba(255,255,255,0.9),
    0 0 30px rgba(255,255,255,0.6),
	  0 0 60px rgba(255,255,255,0.3);
}
.mobile-header-sub { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

/* ────────────────────────────────────────────
   TABLET  ≤ 1024px  — sidebar réduite
──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sidebar { width: 220px; padding: 1.5rem 1rem; gap: 1.5rem; }
  .sidebar-logo { font-size: 2.2rem; }
  .lyrics-side.open { width: 280px; }
}

/* ────────────────────────────────────────────
   MOBILE  ≤ 768px
──────────────────────────────────────────── */
@media (max-width: 768px) {

  /* App layout */
  .app { height: 100dvh; }
  .main-content { flex-direction: row; overflow: hidden; }

  /* Mobile header visible, sidebar masquée */
  .mobile-header { display: flex; }
  .sidebar { display: none; }

  /* Panel pleine largeur */
  .panel {
    padding: 1rem 1rem 70px;
    overflow-y: auto;
  }
  .panel-header { margin-bottom: 1rem; }
  .panel-title { font-size: 1.2rem; }

  /* Disco badge compact */
  .disco-badge { padding: 10px 12px; gap: 8px; margin-bottom: 1rem; }
  .disco-lp { width: 32px; height: 32px; flex-shrink: 0; }
  .disco-lp-inner { width: 11px; height: 11px; }
  .disco-text strong { font-size: 0.75rem; }
  .disco-text span { font-size: 0.7rem; }

  /* Controls bar */
  .controls-bar { margin-bottom: 2.2rem; gap: 8px; }
  .btn-play-all { padding: 8px 16px; font-size: 0.8rem; }
  .btn-shuffle { padding: 7px 12px; font-size: 0.75rem; }

  /* Tracklist : masquer la colonne durée */
  .tracklist-header {
    grid-template-columns: 36px 1fr auto;
  }
  .tracklist-header span:nth-child(3) { display: none; }
  .track-row {
    grid-template-columns: 36px 1fr auto;
    padding: 10px 8px;
    gap: 8px;
  }
  .track-duration { display: none; }
  .btn-lyrics { width: 26px; height: 26px; }
  .btn-download { width: 26px; height: 26px; }

  /* Paroles : panneau plein écran bas (bottom sheet) */
  .lyrics-side {
    position: fixed;
    left: 0; right: 0;
    bottom: 117px;
    width: 100% !important;
    height: 0;
    border-left: none;
    border-top: 1px solid var(--border);
    border-radius: 8px 8px 0 0;
    transition: height 0.3s ease;
    z-index: 150;
  }
  .lyrics-side.open {
    height: 55dvh;
    width: 100% !important;
  }
  .lyrics-side-body { line-height: 0.8; }

  /* Player bar mobile */
  .player-bar {
    height: auto;
    padding: 8px 12px 10px;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }
  .player-track {
    flex: none;
    width: 100%;
    gap: 10px;
  }
  .player-mini-cover { width: 36px; height: 36px; font-size: 1rem; }
  .player-track-name { font-size: 0.8rem; }
  .player-track-artist { font-size: 0.7rem; }
  .player-controls { width: 100%; gap: 6px; }
  .player-btns { gap: 20px; }
  .ctrl-btn { font-size: 1.1rem; }
  .ctrl-btn.main-play { width: 38px; height: 38px; font-size: 1rem; }
  .progress-wrap { gap: 6px; }
  .time-label { font-size: 0.65rem; min-width: 28px; }
  /* Volume masqué sur mobile (utilise le volume physique) */
  .player-extra { display: none; }
}

/* ────────────────────────────────────────────
   TRÈS PETIT  ≤ 380px
──────────────────────────────────────────── */
@media (max-width: 380px) {
  .panel { padding: 0.8rem 0.8rem; }
}


.btn-share {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--text-muted);
  background: transparent; flex-shrink: 0; cursor: pointer;
  transition: all 0.2s; padding: 0;
}
.btn-share:hover {
  border-color: rgba(0,212,255,0.4);
  color: var(--pink-light); background: rgba(0,212,255,0.08);
}
.share-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.7); z-index: 300;
  align-items: center; justify-content: center;
}
.share-overlay.open { display: flex; }
.share-modal {
  background: #1c1f2e; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; width: min(440px, 92vw); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.share-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.3rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.share-modal-header h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.btn-share-close {
  background: rgba(255,255,255,0.07); border: none; color: var(--text-muted);
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; transition: background 0.15s;
}
.btn-share-close:hover { background: rgba(255,255,255,0.14); color: var(--text); }
.share-modal-track { display: flex; align-items: center; gap: 12px; padding: 1rem 1.3rem; }
.share-modal-cover { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.share-modal-cover img { width: 100%; height: 100%; object-fit: cover; }
.share-modal-name { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.share-modal-artist { font-size: 0.78rem; color: var(--text-muted); margin-top: 3px; }
.share-url-row { display: flex; align-items: center; gap: 8px; padding: 0 1.3rem 1rem; }
.share-url-input {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  padding: 9px 12px; color: var(--text-muted); font-size: 0.78rem; outline: none;
}
.btn-copy {
  background: var(--pink); color: #000; border: none;
  padding: 9px 16px; border-radius: 8px; font-size: 0.78rem; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: background 0.2s; flex-shrink: 0;
}
.btn-copy:hover { background: var(--pink-light); }
.btn-copy.copied { background: #2ecc71; color: #fff; }
@media (max-width: 768px) { .btn-share { width: 26px; height: 26px; } }
/* ── À PROPOS ── */
.about-section {
  margin-top: 2.5rem;
  padding-top: 0;
}
.about-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.4rem;
}
.about-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,212,255,0.25), transparent);
}
.about-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-light);
  white-space: nowrap;
  opacity: 0.8;
}
.about-text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
/* ── COPYRIGHT ── */
.copyright {
  margin-top: 2rem;
  padding: 1.2rem 0 0.5rem;
  border-top: 1px solid var(--border);
}
.copyright-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}
.copyright-copy {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
}
.copyright-sep {
  color: var(--text-dim);
  font-size: 0.75rem;
}
.copyright-legal {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.5;
  font-style: italic;
}
