@import url('/player/fonts/fonts.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #000;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

body {
  font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#canvas-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 16 / 9;
  width: min(100vw, calc(100vh * 16 / 9));
  height: min(100vh, calc(100vw * 9 / 16));
  overflow: hidden;
}

#canvas-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* ── Overlay (aligné sur le canvas-container 16:9) ── */
#overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 16 / 9;
  width: min(100vw, calc(100vh * 16 / 9));
  height: min(100vh, calc(100vw * 9 / 16));
  pointer-events: none;
  z-index: 10;
}

.hidden {
  display: none !important;
}

/* ── HP Bar (désactivée) ── */
#hp-bar-container {
  display: none !important;
}
#hp-bar-container-disabled {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: #faf0e6;
  border: 3px solid #000;
  padding: 10px 24px;
  border-radius: 0;
}

#monster-name {
  font-family: 'Orbitron', sans-serif;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#hp-bar {
  width: 300px;
  height: 20px;
  background: rgba(0, 0, 0, 0.1);
  border: 2px solid #000;
  overflow: hidden;
}

#hp-fill {
  height: 100%;
  width: 100%;
  background: #00ff85;
  transition: width 0.5s ease, background 0.3s ease;
}

#hp-fill.yellow {
  background: #f39c12;
}

#hp-fill.red {
  background: #e74c3c;
}

#hp-text {
  font-family: 'Orbitron', sans-serif;
  color: #000;
  font-weight: 600;
  font-size: 0.85rem;
  min-width: 90px;
  text-align: right;
}

/* ── Session Code ── */
#session-code {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-family: 'Orbitron', sans-serif;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  background: transparent;
  border: none;
  padding: 0;
  letter-spacing: 3px;
}

/* ── Victory ── */
#victory-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
}

#victory-overlay h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: #00ff85;
  text-shadow: 0 0 40px #00ff85, 0 4px 0 #000;
  letter-spacing: 10px;
  -webkit-text-stroke: 3px #000;
  animation: victoryPulse 1s ease-in-out infinite alternate;
}

@keyframes victoryPulse {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* ── Monster Intro ── */
#monster-intro-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#monster-intro-card {
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, #faf0e6 0%, #fff5e8 100%);
  border: 4px solid #000;
  padding: 60px 100px 50px;
  max-width: 1200px;
  /* Ombre en couches : rose puis noire (style brand cohérent) */
  box-shadow: 10px 10px 0 #ff1b8d, 18px 18px 0 #000;
  transform: translateY(100vh) scale(0.3);
  opacity: 0;
  animation: introBossIn 0.8s cubic-bezier(0.22, 1.5, 0.32, 1) forwards;
  overflow: visible;
}

/* Bandeau dégradé brand au-dessus du cadre (violet → rose → doré) */
#monster-intro-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 14px;
  background: linear-gradient(90deg, #7c00ff 0%, #ff1b8d 50%, #feca57 100%);
  pointer-events: none;
}

/* Petit accent étoile en haut-droite (touche cartoon) */
#monster-intro-card::after {
  content: '✦';
  position: absolute;
  top: 24px;
  right: 30px;
  font-size: 1.8rem;
  color: #ff1b8d;
  font-weight: 900;
  filter: drop-shadow(2px 2px 0 #000);
}

#monster-intro-card.slide-out {
  animation: introSlideOut 0.4s ease-in forwards;
}

/* ── Lightning bolts (4 coins) — désactivés (style néon cyan plus en phase
   avec la nouvelle identité brand). Le markup HTML reste, ils sont juste
   masqués pour ne pas afficher des halos blancs sur fond beige. ── */
.intro-bolt {
  display: none;
}

.intro-bolt::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polyline points='10,10 45,35 30,45 60,70 45,80 90,95' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/><polyline points='10,10 45,35 30,45 60,70 45,80 90,95' fill='none' stroke='%2300e5ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 18px #00e5ff) drop-shadow(0 0 8px #ffffff);
}

.intro-bolt-tl { top: -140px; left: -140px; animation: introBoltTL 1.2s ease-out 0.1s forwards; }
.intro-bolt-tr { top: -140px; right: -140px; transform: scaleX(-1); animation: introBoltTR 1.2s ease-out 0.2s forwards; }
.intro-bolt-bl { bottom: -140px; left: -140px; transform: scaleY(-1); animation: introBoltBL 1.2s ease-out 0.15s forwards; }
.intro-bolt-br { bottom: -140px; right: -140px; transform: scale(-1, -1); animation: introBoltBR 1.2s ease-out 0.25s forwards; }

#monster-intro-type {
  position: relative;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: #7c00ff;
  border: 3px solid #000;
  display: inline-block;
  padding: 6px 22px;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 24px;
  box-shadow: 4px 4px 0 #000;
}

#monster-intro-type.boss {
  color: #fff;
  background: #ff1b8d;
  font-size: 2.4rem;
  letter-spacing: 10px;
}

#monster-intro-name {
  position: relative;
  font-family: 'Orbitron', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 25px;
  /* Effet "comic book" : ombre rose offset puis noire en couches */
  text-shadow:
    3px 3px 0 #ff1b8d,
    6px 6px 0 #000;
}

#monster-intro-description {
  position: relative;
  font-family: 'League Spartan', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c2c2c;
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.4;
  font-style: italic;
  /* Petite barre rose à gauche (style citation), comme la description profil */
  border-left: 4px solid #ff1b8d;
  padding-left: 20px;
  text-align: left;
  display: inline-block;
}

#monster-intro-hp {
  position: relative;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 3px;
  background: rgba(255, 27, 141, 0.25);
  display: inline-block;
  padding: 12px 32px;
  border: 3px solid #ff1b8d;
  box-shadow: 0 0 24px rgba(255, 27, 141, 0.7), inset 0 0 16px rgba(255, 27, 141, 0.3);
  text-shadow: 0 0 8px rgba(255, 27, 141, 0.9);
}

@keyframes introBossIn {
  0%   { transform: translateY(100vh) scale(0.3); opacity: 0; }
  60%  { transform: translateY(-20px) scale(1.08); opacity: 1; }
  80%  { transform: translateY(5px) scale(0.98); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes introBorderPulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

@keyframes introBoltTL {
  0%   { opacity: 0; transform: translate(-40px, -40px) scale(0.4); }
  20%  { opacity: 1; transform: translate(0, 0) scale(1.2); }
  40%  { opacity: 0.3; }
  60%  { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; }
}
@keyframes introBoltTR {
  0%   { opacity: 0; transform: scaleX(-1) translate(-40px, -40px) scale(0.4); }
  20%  { opacity: 1; transform: scaleX(-1) translate(0, 0) scale(1.2); }
  40%  { opacity: 0.3; }
  60%  { opacity: 1; transform: scaleX(-1) translate(0, 0) scale(1); }
  100% { opacity: 0; }
}
@keyframes introBoltBL {
  0%   { opacity: 0; transform: scaleY(-1) translate(-40px, -40px) scale(0.4); }
  20%  { opacity: 1; transform: scaleY(-1) translate(0, 0) scale(1.2); }
  40%  { opacity: 0.3; }
  60%  { opacity: 1; transform: scaleY(-1) translate(0, 0) scale(1); }
  100% { opacity: 0; }
}
@keyframes introBoltBR {
  0%   { opacity: 0; transform: scale(-1, -1) translate(-40px, -40px) scale(0.4); }
  20%  { opacity: 1; transform: scale(-1, -1) translate(0, 0) scale(1.2); }
  40%  { opacity: 0.3; }
  60%  { opacity: 1; transform: scale(-1, -1) translate(0, 0) scale(1); }
  100% { opacity: 0; }
}

@keyframes introSlideOut {
  from { transform: translateY(0) scale(1); opacity: 1; }
  to { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

/* ── Question Display ── */
#question-overlay {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

#question-card {
  background: linear-gradient(180deg, #faf0e6 0%, #fff5e8 100%);
  border: 4px solid #000;
  padding: 44px 60px 36px;
  max-width: 1200px;
  text-align: center;
  position: relative;
  /* Ombres en couches (rose puis noir) pour donner du peps */
  box-shadow: 8px 8px 0 #ff1b8d, 14px 14px 0 #000;
  animation: questionFadeIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Bandeau dégradé brand au-dessus du cadre */
#question-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background: linear-gradient(90deg, #7c00ff 0%, #ff1b8d 50%, #feca57 100%);
}

/* Petits accents en coin (touche cartoon) */
#question-card::after {
  content: '✦';
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.4rem;
  color: #ff1b8d;
  font-weight: 900;
  filter: drop-shadow(2px 2px 0 #000);
}

#question-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.question-icon {
  font-size: 2rem;
}

#question-counter {
  font-family: 'Orbitron', sans-serif;
  background: #667eea;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 8px 24px;
  border: 2px solid #000;
}

#question-text {
  font-family: 'League Spartan', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  letter-spacing: 0.3px;
  /* Très léger ghost rose pour réchauffer le texte sans nuire à la lisibilité */
  text-shadow: 1px 1px 0 rgba(255, 27, 141, 0.12);
}

/* 👑 Timer BIG BOSS en bas de l'arène */
#boss-debate-timer {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #faf0e6;
  border: 4px solid #000;
  padding: 14px 40px;
  text-align: center;
  pointer-events: none;
  min-width: 320px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
#boss-debate-phase {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #667eea;
  padding: 4px 18px;
  display: inline-block;
  margin-bottom: 6px;
  letter-spacing: 2px;
}
#boss-debate-time {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.8rem;
  font-weight: 900;
  color: #000;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
#boss-debate-sub {
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Phase vote : couleurs urgentes */
#boss-debate-timer.voting #boss-debate-phase {
  background: #e74c3c;
  animation: bossBlink 0.6s ease-in-out infinite alternate;
}
#boss-debate-timer.voting #boss-debate-time {
  color: #e74c3c;
}
@keyframes bossBlink {
  from { opacity: 1; }
  to   { opacity: 0.6; }
}
/* Dernière ligne droite */
#boss-debate-timer.urgent #boss-debate-time {
  animation: bossUrgentPulse 0.5s ease-in-out infinite alternate;
}
@keyframes bossUrgentPulse {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

@keyframes questionFadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ── Controls ── */
#start-panel,
#continue-panel,
#boss-ending-panel {
  position: fixed;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  pointer-events: all;
}

#boss-ending-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.ctrl-start-btn {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  padding: 24px 60px;
  border: 4px solid #000;
  background: #00ff85;
  color: #000;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: ctrlPulse 2s ease-in-out infinite;
}

.ctrl-start-btn:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
}

.ctrl-start-btn:active {
  transform: scale(0.97);
}

.ctrl-next-btn {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  padding: 20px 50px;
  border: 4px solid #000;
  background: #667eea;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: ctrlPulse 2s ease-in-out infinite;
}

.ctrl-next-btn:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
}

.ctrl-next-btn:active {
  transform: scale(0.97);
}

.ctrl-home-btn {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  padding: 16px 40px;
  border: 4px solid #000;
  background: #e74c3c;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ctrl-home-btn:hover {
  filter: brightness(1.15);
  transform: scale(1.03);
}

.ctrl-home-btn:active {
  transform: scale(0.97);
}

/* Overlay de confirmation "retour accueil" */
#home-confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

#home-confirm-card {
  background: #1a1a2e;
  border: 5px solid #e74c3c;
  padding: 50px 60px;
  text-align: center;
  max-width: 700px;
  box-shadow: 0 0 80px rgba(231, 76, 60, 0.5);
}

#home-confirm-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #e74c3c;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

#home-confirm-msg {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 36px;
}

#home-confirm-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@keyframes ctrlPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 133, 0.4); }
  50% { box-shadow: 0 0 30px 10px rgba(0, 255, 133, 0.2); }
}

/* ── QR Code ── */
#qr-panel {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #faf0e6;
  border: 4px solid #000;
  padding: 16px;
  text-align: center;
}

#qr-code-image {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#qr-code-image img,
#qr-code-image svg {
  width: 100%;
  height: 100%;
}

#qr-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* ── Debate Results ── */
#debate-results-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5; /* Au-dessus de #monster-intro-overlay (position:absolute sans z-index) */
  /* Réserve 280px en bas (= 180px du continue-panel + 100px de marge) pour
     que le card ne déborde jamais sur le bouton CONTINUER. */
  padding: 60px 20px 280px;
  box-sizing: border-box;
}

#debate-results-card {
  background: #faf0e6;
  border: 4px solid #000;
  padding: 36px 56px 32px;
  max-width: 1100px;
  width: 75%;
  /* Hauteur cappée à l'espace dispo (laissé par le padding de l'overlay).
     Le contenu interne scroll si la liste de barres est trop longue. */
  max-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: questionFadeIn 0.4s ease-out;
}

/* Le header, la question et la suggestion gardent leur hauteur naturelle ;
   seul le container des barres prend l'espace flex-restant et scrolle. */
#debate-results-header,
#debate-results-question,
#debate-results-suggestion {
  flex-shrink: 0;
}
#debate-results-bars {
  flex: 1 1 auto;
  min-height: 0;             /* indispensable pour qu'overflow s'applique en flex */
  overflow-y: auto;
  padding-right: 6px;        /* espace pour la scrollbar */
  -webkit-overflow-scrolling: touch;
}
/* Scrollbar discrète façon arena */
#debate-results-bars::-webkit-scrollbar { width: 8px; }
#debate-results-bars::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
#debate-results-bars::-webkit-scrollbar-thumb { background: #000; border-radius: 4px; }

#debate-results-suggestion {
  margin-top: 28px;
  padding: 22px 28px;
  background: #23c4f7;
  color: #000;
  border: 4px solid #000;
  border-radius: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: 'League Spartan', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.35;
  animation: questionFadeIn 0.5s ease-out;
}

#debate-results-suggestion .suggestion-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

#debate-results-suggestion.hidden { display: none; }

#debate-results-header {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 12px;
}

#debate-results-question {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
}

.debate-bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.debate-bar-label {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  min-width: 120px;
  text-align: right;
}

.debate-bar-track {
  flex: 1;
  height: 36px;
  background: rgba(0, 0, 0, 0.08);
  border: 2px solid #000;
  overflow: hidden;
}

.debate-bar-fill {
  height: 100%;
  width: 0;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.debate-bar-pct {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  min-width: 55px;
}

/* ── GM Controls ── */
#gm-controls {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 40;
  pointer-events: all;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

#gm-toggle {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 8px 14px;
  border: 3px solid #000;
  background: #faf0e6;
  color: #000;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#gm-toggle:hover {
  background: #000;
  color: #faf0e6;
}

#gm-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#gm-panel button {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 10px 20px;
  border: 3px solid #000;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#gm-pause {
  background: #f39c12;
  color: #000;
}

#gm-resume {
  background: #00ff85;
  color: #000;
}

#gm-next-monster {
  background: #667eea;
  color: #fff;
}

#gm-panel button:hover {
  filter: brightness(1.15);
}

/* ── Pause Overlay ── */
#pause-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

#pause-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: #faf0e6;
  text-transform: uppercase;
  letter-spacing: 15px;
  -webkit-text-stroke: 4px #000;
  animation: pausePulse 2s ease-in-out infinite alternate;
}

@keyframes pausePulse {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* ── FPS Counter ── */
#fps-counter {
  position: absolute;
  top: 15px;
  left: 15px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  background: #faf0e6;
  border: 2px solid #000;
  padding: 4px 10px;
  letter-spacing: 1px;
  opacity: 0.7;
}

/* ── Debug ── */
#debug-info {
  position: fixed;
  bottom: 5px;
  left: 5px;
  color: rgba(0, 0, 0, 0.3);
  font-family: monospace;
  font-size: 0.7rem;
  z-index: 20;
  display: flex;
  gap: 10px;
}
