/* Minecraft-style item tooltip ([mc]Name|lore|…[/mc]) — pure CSS hover card */
.mc-item { position: relative; display: inline-block; }
.mc-icon { width: 22px; height: 22px; image-rendering: pixelated; vertical-align: middle; margin-right: 4px; }
.mc-trigger { cursor: help; border-bottom: 1px dotted currentColor; }
.mc-tip {
  display: none; position: absolute; left: 0; bottom: 100%; margin-bottom: 7px; z-index: 9999;
  background: rgba(16, 0, 16, .94);
  border: 2px solid #1b0136;
  box-shadow: 0 0 0 1px #060008, inset 0 0 0 1px #2b0a5e, inset 0 0 0 2px #100020;
  padding: 5px 8px; min-width: 110px; max-width: 340px;
  font-family: 'Minecraft', 'Monocraft', 'Minecraftia', ui-monospace, 'Courier New', monospace;
  font-size: 13px; line-height: 1.4; white-space: nowrap; pointer-events: none;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, .85);
}
.mc-item:hover .mc-tip, .mc-item:focus-within .mc-tip { display: block; }
.mc-tip-name { display: block; color: #fff; margin-bottom: 2px; }
.mc-lore { display: block; color: #AAAAAA; }
