/* Final Game-screen polish overrides. Presentation only; no business logic or API changes. */

/* The hero already communicates the live price. Keep the delta exclusively in the live chart card. */
#priceDelta{
  display:none!important;
}

/* Remove the temporary BaziBit identity badge; keep the existing username row intact. */
.identity-mark{
  display:none!important;
}

/* BTC / USD is the complete market identity; remove the redundant English subtitle. */
.market-symbol div>span{
  display:none!important;
}
.market-symbol strong{
  display:block!important;
  font:700 13px/1 var(--font-display)!important;
  letter-spacing:.035em!important;
  white-space:nowrap;
}
.market-symbol{
  gap:9px!important;
}

/* Make the chart a true bounded grid area so its SVG can never enlarge the card
   or paint outside the available chart region, even on large price moves. */
#liveCard .live-card-body{
  display:grid!important;
  grid-template-rows:16px minmax(0,1fr) 10px!important;
  height:calc(100% - 16px)!important;
  min-height:0!important;
  overflow:hidden!important;
}
#liveCard .live-price-row{
  min-height:0!important;
  height:16px!important;
  overflow:hidden!important;
}
#liveCard .sparkline{
  display:block!important;
  width:100%!important;
  height:100%!important;
  min-height:0!important;
  max-height:100%!important;
  margin:0!important;
  overflow:hidden!important;
  contain:layout paint!important;
}
#liveCard .live-closes-in{
  height:10px!important;
  min-height:10px!important;
  line-height:10px!important;
  overflow:hidden!important;
  white-space:nowrap!important;
}
