/* 보스 전용 아이템 — 오른쪽 일반 아이템과 마주 보는 작은 왼쪽 선반. */
#boss-items{
  position:absolute;left:8px;top:38%;width:54px;z-index:18;
  display:flex;flex-direction:column;align-items:center;gap:5px;
  padding:6px 2px 7px;border:1px solid rgba(205,255,241,.28);border-radius:18px;
  background:linear-gradient(160deg,rgba(5,83,100,.16),rgba(7,123,133,.10));
  box-shadow:0 3px 10px rgba(3,57,76,.10);
  font-family:var(--font-cute,"Apple SD Gothic Neo",sans-serif);
}
#boss-items[hidden]{display:none}
.boss-items-heading{
  width:48px;color:#fff1b8;font-size:9px;line-height:1.05;text-align:center;
  letter-spacing:-.06em;white-space:nowrap;text-shadow:0 1px 3px #034f60;
}
#boss-items .boss-item{
  appearance:none;-webkit-appearance:none;position:relative;width:50px;height:52px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:0;padding:2px 1px 1px;border:1px solid rgba(170,247,226,.38);border-radius:16px;
  background:linear-gradient(180deg,rgba(230,255,246,.14),rgba(87,199,189,.18));
  color:#fff3c2;box-shadow:0 2px 0 rgba(3,82,99,.18),inset 0 1px 0 rgba(255,255,255,.14);
  font:inherit;cursor:pointer;touch-action:manipulation;
}
#boss-items .boss-item::before{
  content:"";position:absolute;left:5px;right:5px;top:3px;height:12px;
  border-radius:999px;background:linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,0));
  pointer-events:none;
}
#boss-items .boss-item-icon{position:relative;width:30px;height:30px;display:block;z-index:1}
#boss-items .boss-item-icon svg{display:block;width:100%;height:100%;overflow:visible}
#boss-items .boss-item-name{
  position:relative;z-index:1;margin-top:-2px;font-size:11px;font-weight:900;line-height:13px;
  letter-spacing:-.08em;text-shadow:0 1px 3px #034a59;
}
#boss-items .boss-item-count{
  position:absolute;right:-4px;top:-5px;z-index:2;min-width:19px;height:19px;padding:0 4px;
  display:flex;align-items:center;justify-content:center;border:2px solid #fff9e7;border-radius:10px;
  background:linear-gradient(180deg,#ff9d8f,#ed675f);color:#fff;
  box-shadow:0 2px 5px rgba(137,56,49,.34);font-family:system-ui,sans-serif;
  font-size:10px;font-weight:900;line-height:15px;font-variant-numeric:tabular-nums;
}
#boss-items .boss-item:not(:disabled):active{
  transform:translateY(2px);box-shadow:0 1px 0 rgba(3,82,99,.2),inset 0 1px 0 rgba(255,255,255,.2);
}
#boss-items .boss-item:focus-visible{outline:3px solid #ff7f70;outline-offset:2px}
#boss-items .boss-item:disabled{
  cursor:default;opacity:1;filter:none;
  background:linear-gradient(180deg,rgba(220,250,243,.07),rgba(63,157,158,.09));
  border-color:rgba(170,247,226,.22);box-shadow:0 1px 0 rgba(3,82,99,.10);
}
#boss-items .boss-item[data-count="0"] .boss-item-count{
  background:linear-gradient(180deg,#90aeb6,#6d8e98);border-color:#eef7f7;box-shadow:none;
}
#boss-items .boss-item-got{animation:boss-item-acquired .48s cubic-bezier(.2,1.7,.4,1)}
@keyframes boss-item-acquired{
  0%{transform:scale(.78)}
  46%{transform:scale(1.13);box-shadow:0 0 0 7px rgba(255,126,110,.28),0 3px 0 #087d9b,0 8px 15px rgba(7,92,119,.3)}
  100%{transform:none}
}
@media (prefers-reduced-motion:reduce){
  #boss-items .boss-item-got{animation:none}
}
