.listening-capsule {
    position: absolute;
    top: auto;
    bottom: -80px;
    /* Push it well below the Orb */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 60;
    pointer-events: none;
    min-width: 180px;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Pulsing Dot */
.recording-dot {
    width: 10px;
    height: 10px;
    background-color: #ef4444;
    /* Red-500 */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Text Styling */
.capsule-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Hover Effect on Orb (Optional: Scale up) */
.scroll-orb:hover .listening-capsule {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}