/* ============================================================
    VOID // ACCESSORY_UNIT: LIKE_COUNTER
   ============================================================ */

/* サークルの下に浮かぶカウンター */
.like-counter {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--accent);
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 10px;
    border: 1px solid rgba(0, 242, 255, 0.4);
    white-space: nowrap;
    pointer-events: none;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
    border-radius: 2px; /* VOIDらしく少し角を立たせるぜ */
}

/* 音声再生中の脈動オーラ */
.bubble.playing-voice {
    box-shadow: 0 0 50px var(--accent), inset 0 0 30px var(--accent) !important;
    border-color: #fff !important;
    transition: 0.3s;
}


.unit-p { font-size: 0.5rem; margin-left: 2px; opacity: 0.7; }

/* 🚀 GANTZ_TRANSFER: 転送の瞬間の視覚効果 */
.bubble.transferring {
    /* 🚀 固定の -50% ではなく、JSから渡された変数分だけブッ飛ぶぜ！ */
    transform: translate(var(--target-x), var(--target-y)) scale(8) !important;
    opacity: 0 !important;
    box-shadow: 0 0 150px 50px #fff !important;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1) !important;
}
    
    /* ⚡ 転送速度：0.6秒のドラマだぜ */
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
    z-index: 10000;
}