.interaction-zone:active {
    cursor: grabbing;
}

body.cursor-hidden {
    cursor: none !important;
}

.cursor-hidden .interaction-zone {
    cursor: none !important;
}

.speech-bubble {
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: max-content;
    max-width: 250px;
    transform-origin: bottom left;
    margin-bottom: 10px;
    margin-left: 10px;
    z-index: 20;
    transform: scale(0);
    transform-origin: bottom left;
    pointer-events: none;
    text-align: center;
    color: var(--text-primary);
    text-shadow: 0 2px 4px var(--rgba-black-30);
    padding: 12px 18px;
    border-radius: 18px;
    border-bottom-left-radius: 2px;
    background: var(--bg-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--rgba-white-30);
    border-top: 1px solid var(--rgba-white-50);
    border-bottom: 1px solid var(--rgba-white-10);
    box-shadow: 
        0 8px 32px 0 var(--rgba-black-20),
        inset 0 1px 1px 0 var(--rgba-white-20);
}

.thud-effect {
    position: absolute;
    width: 100px;
    height: 80px;
    pointer-events: none;
    transform: scale(0);
    z-index: 15;
    object-fit: contain;
}