.live-interactions {
    margin: 16px 0;   
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.05);
}

.live-session-title {
    font-size: 14px;
    margin-bottom: 10px;
    color: #e8d8c9;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.live-reactions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.live-reaction-btn {
    background: rgba(255,255,255,0.06);
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.live-reaction-btn:hover {
    background: rgba(168, 85, 247, 0.4);
    transform: scale(1.08);
}

.live-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(30, 20, 15, 0.95);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 9999;
}

.live-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.live-reaction-btn span {
    color: #ffffff;
    font-weight: 600;
}

.live-reaction-btn.pulse {
    box-shadow: 0 0 14px rgba(168, 85, 247, 0.7);
    transform: scale(1.12);
}

.live-reaction-btn.used {
    background: rgba(168, 85, 247, 0.25);
    border: 1px solid rgba(168, 85, 247, 0.6);
    opacity: 0.8;
}

.floating-plus {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.4s ease;
    pointer-events: none;
    text-shadow: 0 0 18px rgba(168, 85, 247, 1);
}