/* Beast Tactics mechanics v5 — visible temporary spell attachments. */
.slot{isolation:isolate}
.bt-duration-spell-layer{
  --bt-stack-index:0;
  position:absolute;
  z-index:22;
  right:calc(-7px + var(--bt-stack-index) * 5px);
  bottom:calc(-5px + var(--bt-stack-index) * 4px);
  width:42%;
  height:53%;
  pointer-events:none;
  filter:drop-shadow(0 5px 8px rgba(0,0,0,.55));
  transform:rotate(calc(-4deg + var(--bt-stack-index) * 4deg));
  transform-origin:bottom right;
}
.bt-duration-spell-layer .card{
  width:100%!important;
  height:100%!important;
  min-width:0!important;
  min-height:0!important;
  border-width:1px!important;
  border-radius:7px!important;
  box-shadow:0 0 0 1px rgba(116,219,255,.5),0 0 16px rgba(65,166,255,.35)!important;
}
.bt-duration-spell-layer .card .cost,
.bt-duration-spell-layer .card .stats,
.bt-duration-spell-layer .card .card-info{display:none!important}
.bt-duration-spell-layer .card .art{inset:0!important;border-radius:6px!important}
.bt-duration-spell-layer .card .art img{width:100%!important;height:100%!important;object-fit:cover!important}
.bt-duration-badge{
  position:absolute;
  right:-5px;
  top:-6px;
  z-index:4;
  min-width:18px;
  height:18px;
  padding:0 4px;
  display:grid;
  place-items:center;
  border-radius:999px;
  color:#071425;
  background:#8ee7ff;
  border:1px solid #e8fbff;
  font:900 10px/1 system-ui,sans-serif;
  box-shadow:0 2px 7px rgba(0,0,0,.6);
}

/* v6.15: duration spell visual ownership by unit, lane, or board. */
.board{position:relative}
.bt-duration-lane{
  right:50%;
  bottom:auto;
  top:5px;
  width:34%;
  height:43%;
  transform:translateX(50%) rotate(calc(-2deg + var(--bt-stack-index) * 3deg));
  transform-origin:top center;
}
.bt-duration-board-layer{
  position:absolute;
  z-index:24;
  left:50%;
  transform:translateX(-50%);
  min-width:112px;
  max-width:190px;
  padding:7px 28px 7px 10px;
  border-radius:11px;
  border:1px solid rgba(142,231,255,.62);
  color:#eafaff;
  background:linear-gradient(180deg,rgba(18,37,58,.96),rgba(7,15,27,.96));
  box-shadow:0 8px 18px rgba(0,0,0,.46),0 0 18px rgba(65,166,255,.18);
  font:900 10px/1.15 system-ui,sans-serif;
  letter-spacing:.04em;
  text-align:center;
  text-transform:uppercase;
  pointer-events:none;
}
.bt-duration-board-layer.enemy{top:7px}
.bt-duration-board-layer.player{bottom:7px}
.bt-duration-board-layer b{
  position:absolute;
  right:7px;
  top:50%;
  transform:translateY(-50%);
  min-width:18px;
  height:18px;
  display:grid;
  place-items:center;
  border-radius:999px;
  color:#071425;
  background:#8ee7ff;
  border:1px solid #e8fbff;
  font:1000 10px/1 system-ui,sans-serif;
}
